diff --git a/.github/workflows/go123.yml b/.github/workflows/go123.yml new file mode 100644 index 00000000..1278a3a6 --- /dev/null +++ b/.github/workflows/go123.yml @@ -0,0 +1,110 @@ +name: Go1.23 + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + + macos: + name: Test Go1.23 for macOS + runs-on: macos-13 + steps: + + - name: Set up Go 1.23 + uses: actions/setup-go@v2 + with: + go-version: 1.23.x + + - name: Check out code into the Go module directory + uses: actions/checkout@v2 + + - name: Get dependencies + run: | + go get -v -t -d ./... + + - name: Build + run: go build -ldflags="-checklinkname=0" -v . + + - name: Install igop + run: (cd ./igop && go install -ldflags="-checklinkname=0" -v) + + - name: Go Test + run: GOARCH=amd64 go test -ldflags="-checklinkname=0" -race -v . + + - name: Test $GOROOT/test + run: GOARCH=amd64 go run ./cmd/igoptest + + linux: + name: Test Go1.23 for Linux + runs-on: ubuntu-latest + steps: + + - name: Set up Go 1.23 + uses: actions/setup-go@v2 + with: + go-version: 1.23.x + + - name: Check out code into the Go module directory + uses: actions/checkout@v2 + + - name: Get dependencies + run: | + go get -v -t -d ./... + + - name: Build + run: go build -ldflags="-checklinkname=0" -v . + + - name: Install igop + run: (cd ./igop && go install -ldflags="-checklinkname=0" -v) + + - name: Go Test amd64 + run: GOARCH=amd64 go test -ldflags="-checklinkname=0" -race -v . + + - name: Test $GOROOT/test + run: GOARCH=amd64 go run ./cmd/igoptest + + windows: + name: Test Go1.23 for Windows + runs-on: windows-latest + steps: + + - name: Set up Go 1.23 + uses: actions/setup-go@v2 + with: + go-version: 1.23.x + + - name: Check out code into the Go module directory + uses: actions/checkout@v2 + + - name: Get dependencies + run: | + go get -v -t -d ./... + + - name: Build + run: go build -ldflags="-checklinkname=0" -v . + + - name: Install igop + run: (cd ./igop && go install -ldflags="-checklinkname=0" -v) + + - name: Go Test amd64 + run: | + set GOARCH=amd64 + go test -ldflags="-checklinkname=0" -v . + + - name: Test $GOROOT/test amd64 + run: | + set GOARCH=amd64 + go run ./cmd/igoptest + + - name: Go Test 386 + run: | + set GOARCH=386 + go test -ldflags="-checklinkname=0" -v . + + - name: Go $GOROOT/test 386 + run: | + set GOARCH=386 + go run ./cmd/igoptest diff --git a/README.md b/README.md index 48db7ea4..c9fd11df 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,13 @@ [![Go1.20](https://github.com/goplus/igop/workflows/Go1.20/badge.svg)](https://github.com/goplus/igop/actions/workflows/go120.yml) [![Go1.21](https://github.com/goplus/igop/workflows/Go1.21/badge.svg)](https://github.com/goplus/igop/actions/workflows/go121.yml) [![Go1.22](https://github.com/goplus/igop/workflows/Go1.22/badge.svg)](https://github.com/goplus/igop/actions/workflows/go122.yml) +[![Go1.23](https://github.com/goplus/igop/workflows/Go1.23/badge.svg)](https://github.com/goplus/igop/actions/workflows/go123.yml) [![Go Reference](https://pkg.go.dev/badge/github.com/goplus/igop.svg)](https://pkg.go.dev/github.com/goplus/igop) ### Go Version -- Go1.18 ~ Go1.22 +- Go1.18 ~ Go1.23 - macOS Linux Windows WebAssembly GopherJS and more. ### ABI @@ -26,10 +27,11 @@ support ABI0 and ABIInternal - Go1.20: amd64 arm64 ppc64/ppc64le riscv64 - Go1.21: amd64 arm64 ppc64/ppc64le riscv64 - Go1.22: amd64 arm64 ppc64/ppc64le riscv64 + - Go1.23: amd64 arm64 ppc64/ppc64le riscv64 ### Generics -- support generics (Go1.18 ~ Go1.22) +- support generics (Go1.18 ~ Go1.23) - support [Go1.20 nested type-parameterized declarations](https://github.com/golang/go/blob/master/test/typeparam/nested.go) on Go1.18/Go1.19 (Experimental) ### runtime.GC @@ -40,16 +42,15 @@ experimental support runtime.GC and runtime.SetFinalizer ### install igop command line -Go version < 1.17: +Go version <= 1.22: ```shell -go get -u github.com/goplus/igop/cmd/igop +go install github.com/goplus/igop/cmd/igop@latest ``` -Go version >= 1.17: - -```shell -go install github.com/goplus/igop/cmd/igop@latest +Go version == 1.23 +``` +go install -ldflags="-checklinkname=0" github.com/goplus/igop/igop@v0.23.1 ``` ### igop command diff --git a/builtin.go b/builtin.go index 0f206562..8ff73dd7 100644 --- a/builtin.go +++ b/builtin.go @@ -32,7 +32,7 @@ import ( // callBuiltin interprets a call to builtin fn with arguments args, // returning its result. -func (inter *Interp) callBuiltin(caller *frame, fn *ssa.Builtin, args []value, ssaArgs []ssa.Value) value { +func (inter *Interp) callBuiltin(fr *frame, fn *ssa.Builtin, args []value, ssaArgs []ssa.Value) value { switch fnName := fn.Name(); fnName { case "append": if len(args) == 1 { @@ -47,7 +47,7 @@ func (inter *Interp) callBuiltin(caller *frame, fn *ssa.Builtin, args []value, s i0 := v0.Len() i1 := v1.Len() if i0+i1 < i0 { - panic(runtimeError(errAppendOutOfRange)) + panic(fr.runtimeError(fn, errAppendOutOfRange)) } return reflect.AppendSlice(v0, v1).Interface() @@ -127,14 +127,14 @@ func (inter *Interp) callBuiltin(caller *frame, fn *ssa.Builtin, args []value, s case "panic": // ssa.Panic handles most cases; this is only for "go // panic" or "defer panic". - var err error = PanicError{stack: debugStack(caller), Value: args[0]} + var err error = PanicError{stack: debugStack(fr), Value: args[0]} if inter.ctx.panicFunc != nil { - err = inter.ctx.handlePanic(caller, fn, err) + err = inter.ctx.handlePanic(fr, fn, err) } panic(err) case "recover": - return doRecover(caller) + return doRecover(fr) case "ssa:wrapnilchk": recv := args[0] @@ -147,7 +147,7 @@ func (inter *Interp) callBuiltin(caller *frame, fn *ssa.Builtin, args []value, s } else { info = recvType } - panic(plainError(fmt.Sprintf("value method %s.%s called using nil *%s pointer", + panic(fr.plainError(fn, fmt.Sprintf("value method %s.%s called using nil *%s pointer", recvType, methodName, info))) } return recv @@ -166,11 +166,11 @@ func (inter *Interp) callBuiltin(caller *frame, fn *ssa.Builtin, args []value, s if length == 0 { return reflect.New(reflect.SliceOf(etyp)).Elem().Interface() } - panic(runtimeError("unsafe.Slice: ptr is nil and len is not zero")) + panic(fr.runtimeError(fn, "unsafe.Slice: ptr is nil and len is not zero")) } mem, overflow := mulUintptr(etyp.Size(), uintptr(length)) if overflow || mem > -uintptr(ptr.Pointer()) { - panic(runtimeError("unsafe.Slice: len out of range")) + panic(fr.runtimeError(fn, "unsafe.Slice: len out of range")) } typ := reflect.ArrayOf(length, etyp) v := reflect.NewAt(typ, unsafe.Pointer(ptr.Pointer())) @@ -210,11 +210,11 @@ func (inter *Interp) callBuiltin(caller *frame, fn *ssa.Builtin, args []value, s if length == 0 { return "" } - panic(runtimeError("unsafe.String: ptr is nil and len is not zero")) + panic(fr.runtimeError(fn, "unsafe.String: ptr is nil and len is not zero")) } mem, overflow := mulUintptr(1, uintptr(length)) if overflow || mem > -uintptr(unsafe.Pointer(ptr)) { - panic(runtimeError("unsafe.String: len out of range")) + panic(fr.runtimeError(fn, "unsafe.String: len out of range")) } sh := reflect.StringHeader{Data: uintptr(unsafe.Pointer(ptr)), Len: length} return *(*string)(unsafe.Pointer(&sh)) @@ -235,7 +235,7 @@ func (inter *Interp) callBuiltin(caller *frame, fn *ssa.Builtin, args []value, s // callBuiltinDiscardsResult interprets a call to builtin fn with arguments args, // discards its result. -func (inter *Interp) callBuiltinDiscardsResult(caller *frame, fn *ssa.Builtin, args []value, ssaArgs []ssa.Value) { +func (inter *Interp) callBuiltinDiscardsResult(fr *frame, fn *ssa.Builtin, args []value, ssaArgs []ssa.Value) { switch fnName := fn.Name(); fnName { case "append": panic("discards result of " + fnName) @@ -288,14 +288,14 @@ func (inter *Interp) callBuiltinDiscardsResult(caller *frame, fn *ssa.Builtin, a case "panic": // ssa.Panic handles most cases; this is only for "go // panic" or "defer panic". - var err error = PanicError{stack: debugStack(caller), Value: args[0]} + var err error = PanicError{stack: debugStack(fr), Value: args[0]} if inter.ctx.panicFunc != nil { - err = inter.ctx.handlePanic(caller, fn, err) + err = inter.ctx.handlePanic(fr, fn, err) } panic(err) case "recover": - doRecover(caller) + doRecover(fr) case "ssa:wrapnilchk": recv := args[0] @@ -308,7 +308,7 @@ func (inter *Interp) callBuiltinDiscardsResult(caller *frame, fn *ssa.Builtin, a } else { info = recvType } - panic(plainError(fmt.Sprintf("value method %s.%s called using nil *%s pointer", + panic(fr.plainError(fn, fmt.Sprintf("value method %s.%s called using nil *%s pointer", recvType, methodName, info))) } @@ -356,7 +356,7 @@ func (interp *Interp) makeBuiltinByStack(fn *ssa.Builtin, ssaArgs []ssa.Value, i i0 := v0.Len() i1 := v1.Len() if i0+i1 < i0 { - panic(runtimeError(errAppendOutOfRange)) + panic(fr.runtimeError(fn, errAppendOutOfRange)) } fr.setReg(ir, reflect.AppendSlice(v0, v1).Interface()) } @@ -492,7 +492,7 @@ func (interp *Interp) makeBuiltinByStack(fn *ssa.Builtin, ssaArgs []ssa.Value, i } else { info = recvType } - panic(plainError(fmt.Sprintf("value method %s.%s called using nil *%s pointer", + panic(fr.plainError(fn, fmt.Sprintf("value method %s.%s called using nil *%s pointer", recvType, methodName, info))) } fr.setReg(ir, recv) @@ -520,11 +520,11 @@ func (interp *Interp) makeBuiltinByStack(fn *ssa.Builtin, ssaArgs []ssa.Value, i fr.setReg(ir, reflect.New(reflect.SliceOf(etyp)).Elem().Interface()) return } - panic(runtimeError("unsafe.Slice: ptr is nil and len is not zero")) + panic(fr.runtimeError(fn, "unsafe.Slice: ptr is nil and len is not zero")) } mem, overflow := mulUintptr(etyp.Size(), uintptr(length)) if overflow || mem > -uintptr(ptr.Pointer()) { - panic(runtimeError("unsafe.Slice: len out of range")) + panic(fr.runtimeError(fn, "unsafe.Slice: len out of range")) } typ := reflect.ArrayOf(length, etyp) v := reflect.NewAt(typ, unsafe.Pointer(ptr.Pointer())) @@ -570,11 +570,11 @@ func (interp *Interp) makeBuiltinByStack(fn *ssa.Builtin, ssaArgs []ssa.Value, i fr.setReg(ir, "") return } - panic(runtimeError("unsafe.String: ptr is nil and len is not zero")) + panic(fr.runtimeError(fn, "unsafe.String: ptr is nil and len is not zero")) } mem, overflow := mulUintptr(1, uintptr(length)) if overflow || mem > -uintptr(unsafe.Pointer(ptr)) { - panic(runtimeError("unsafe.String: len out of range")) + panic(fr.runtimeError(fn, "unsafe.String: len out of range")) } sh := reflect.StringHeader{Data: uintptr(unsafe.Pointer(ptr)), Len: length} fr.setReg(ir, *(*string)(unsafe.Pointer(&sh))) @@ -603,7 +603,7 @@ func (interp *Interp) makeBuiltinByStack(fn *ssa.Builtin, ssaArgs []ssa.Value, i } case "Offsetof": // instance of generic function return func(fr *frame) { - offset, err := builtinOffsetof(fr.pfn, fr.ipc-1) + offset, err := builtinOffsetof(fr, fn, fr.ipc-1) if err != nil { panic(err) } @@ -693,27 +693,28 @@ func mulUintptr(a, b uintptr) (uintptr, bool) { return a * b, overflow } -func builtinOffsetof(pfn *function, pc int) (int64, error) { +func builtinOffsetof(fr *frame, fn *ssa.Builtin, pc int) (int64, error) { + pfn := fr.pfn pos := pfn.ssaInstrs[pc].Pos() paths, info, ok := pathEnclosingInterval(pfn.Interp.ctx, pos) if !ok { - return -1, plainError("unsafe.Offsetof not found code") + return -1, fr.plainError(fn, "unsafe.Offsetof not found code") } call, ok := paths[0].(*ast.CallExpr) if !ok { - return -1, plainError("unsafe.Offsetof not found call") + return -1, fr.plainError(fn, "unsafe.Offsetof not found call") } selx, ok := call.Args[0].(*ast.SelectorExpr) if !ok { - return -1, plainError("unsafe.Offsetof not found selector expr") + return -1, fr.plainError(fn, "unsafe.Offsetof not found selector expr") } sel, _ := info.Selections[selx] if sel == nil { - return -1, plainError("unsafe.Offsetof not found selector type") + return -1, fr.plainError(fn, "unsafe.Offsetof not found selector type") } instrs, found := foundFieldAddr(pfn, pc) if !found || len(sel.Index()) > len(instrs) { - return -1, plainError("unsafe.Offsetof not found FieldAddr instr") + return -1, fr.plainError(fn, "unsafe.Offsetof not found FieldAddr instr") } instr := instrs[len(sel.Index())-1] return selOffsetof(pfn.Interp.ctx.sizes, instr.X.Type().Underlying().(*types.Pointer).Elem().Underlying().(*types.Struct), sel.Index(), selx.Sel.Name) diff --git a/cmd/igop/gop_support.go b/cmd/igop/exec/gop_support.go similarity index 93% rename from cmd/igop/gop_support.go rename to cmd/igop/exec/gop_support.go index 7160d0c7..f4cd3d27 100644 --- a/cmd/igop/gop_support.go +++ b/cmd/igop/exec/gop_support.go @@ -1,7 +1,7 @@ //go:build go1.18 // +build go1.18 -package main +package exec import ( "go/ast" @@ -14,7 +14,7 @@ import ( _ "unsafe" "github.com/goplus/igop" - _ "github.com/goplus/igop/cmd/igop/pkg/github.com/modern-go/reflect2" + _ "github.com/goplus/igop/cmd/igop/exec/pkg/github.com/modern-go/reflect2" ) //go:generate go run ../qexp -outdir pkg github.com/modern-go/reflect2 diff --git a/cmd/igop/exec/main.go b/cmd/igop/exec/main.go new file mode 100644 index 00000000..2e81211b --- /dev/null +++ b/cmd/igop/exec/main.go @@ -0,0 +1,99 @@ +/* + Copyright 2021 The GoPlus Authors (goplus.org) + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + +package exec + +import ( + "flag" + "fmt" + "os" + "strings" + + "github.com/goplus/igop/cmd/internal/base" + "github.com/goplus/igop/cmd/internal/build" + "github.com/goplus/igop/cmd/internal/export" + "github.com/goplus/igop/cmd/internal/help" + "github.com/goplus/igop/cmd/internal/repl" + "github.com/goplus/igop/cmd/internal/run" + "github.com/goplus/igop/cmd/internal/test" + "github.com/goplus/igop/cmd/internal/version" + + _ "github.com/goplus/igop/pkg" + _ "github.com/goplus/reflectx/icall/icall8192" +) + +func mainUsage() { + help.PrintUsage(os.Stderr, base.Igop) + os.Exit(2) +} + +func init() { + base.Usage = mainUsage + base.Igop.Commands = []*base.Command{ + run.Cmd, + build.Cmd, + test.Cmd, + repl.Cmd, + version.Cmd, + export.Cmd, + } +} + +func Main() { + flag.Parse() + args := flag.Args() + if len(args) < 1 { + //base.Usage() + args = []string{"repl"} + } + + base.CmdName = args[0] // for error messages + if args[0] == "help" { + help.Help(os.Stderr, args[1:]) + return + } + +BigCmdLoop: + for bigCmd := base.Igop; ; { + for _, cmd := range bigCmd.Commands { + if cmd.Name() != args[0] { + continue + } + args = args[1:] + if len(cmd.Commands) > 0 { + bigCmd = cmd + if len(args) == 0 { + help.PrintUsage(os.Stderr, bigCmd) + os.Exit(2) + } + if args[0] == "help" { + help.Help(os.Stderr, append(strings.Split(base.CmdName, " "), args[1:]...)) + return + } + base.CmdName += " " + args[0] + continue BigCmdLoop + } + if !cmd.Runnable() { + continue + } + cmd.Run(cmd, args) + return + } + helpArg := "" + if i := strings.LastIndex(base.CmdName, " "); i >= 0 { + helpArg = " " + base.CmdName[:i] + } + fmt.Fprintf(os.Stderr, "igop %s: unknown command\nRun 'igop help%s' for usage.\n", base.CmdName, helpArg) + os.Exit(2) + } +} diff --git a/cmd/igop/pkg/github.com/modern-go/reflect2/export.go b/cmd/igop/exec/pkg/github.com/modern-go/reflect2/export.go similarity index 100% rename from cmd/igop/pkg/github.com/modern-go/reflect2/export.go rename to cmd/igop/exec/pkg/github.com/modern-go/reflect2/export.go diff --git a/cmd/igop/main.go b/cmd/igop/main.go index 5591cb42..f35826f6 100644 --- a/cmd/igop/main.go +++ b/cmd/igop/main.go @@ -1,5 +1,5 @@ /* - Copyright 2021 The GoPlus Authors (goplus.org) + Copyright 2025 The GoPlus Authors (goplus.org) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -13,88 +13,8 @@ package main -import ( - "flag" - "fmt" - "os" - "strings" - - "github.com/goplus/igop/cmd/internal/version" - - "github.com/goplus/igop/cmd/internal/base" - "github.com/goplus/igop/cmd/internal/build" - "github.com/goplus/igop/cmd/internal/export" - "github.com/goplus/igop/cmd/internal/help" - "github.com/goplus/igop/cmd/internal/repl" - "github.com/goplus/igop/cmd/internal/run" - "github.com/goplus/igop/cmd/internal/test" - - _ "github.com/goplus/igop/pkg" - _ "github.com/goplus/reflectx/icall/icall8192" -) - -func mainUsage() { - help.PrintUsage(os.Stderr, base.Igop) - os.Exit(2) -} - -func init() { - base.Usage = mainUsage - base.Igop.Commands = []*base.Command{ - run.Cmd, - build.Cmd, - test.Cmd, - repl.Cmd, - version.Cmd, - export.Cmd, - } -} +import "github.com/goplus/igop/cmd/igop/exec" func main() { - flag.Parse() - args := flag.Args() - if len(args) < 1 { - //base.Usage() - args = []string{"repl"} - } - - base.CmdName = args[0] // for error messages - if args[0] == "help" { - help.Help(os.Stderr, args[1:]) - return - } - -BigCmdLoop: - for bigCmd := base.Igop; ; { - for _, cmd := range bigCmd.Commands { - if cmd.Name() != args[0] { - continue - } - args = args[1:] - if len(cmd.Commands) > 0 { - bigCmd = cmd - if len(args) == 0 { - help.PrintUsage(os.Stderr, bigCmd) - os.Exit(2) - } - if args[0] == "help" { - help.Help(os.Stderr, append(strings.Split(base.CmdName, " "), args[1:]...)) - return - } - base.CmdName += " " + args[0] - continue BigCmdLoop - } - if !cmd.Runnable() { - continue - } - cmd.Run(cmd, args) - return - } - helpArg := "" - if i := strings.LastIndex(base.CmdName, " "); i >= 0 { - helpArg = " " + base.CmdName[:i] - } - fmt.Fprintf(os.Stderr, "igop %s: unknown command\nRun 'igop help%s' for usage.\n", base.CmdName, helpArg) - os.Exit(2) - } + exec.Main() } diff --git a/cmd/igoptest/main.go b/cmd/igoptest/main.go index 279f6c31..a653e20c 100644 --- a/cmd/igoptest/main.go +++ b/cmd/igoptest/main.go @@ -58,10 +58,9 @@ func init() { // const ulp = (1.0 + (2.0 / 3.0)) - (5.0 / 3.0) // Go 1.14 1.15 1.16 ulp = 1.4916681462400413e-154 // Go 1.17 1.18 ulp = 0 - ver := runtime.Version()[:6] switch ver { - case "go1.17", "go1.18", "go1.19", "go1.20", "go1.21", "go1.22": + case "go1.17", "go1.18", "go1.19", "go1.20", "go1.21", "go1.22", "go1.23": // gorootTestSkips["fixedbugs/issue45045.go"] = "runtime.SetFinalizer" // gorootTestSkips["fixedbugs/issue46725.go"] = "runtime.SetFinalizer" gorootTestSkips["abi/fibish.go"] = "slow, 34s" @@ -81,15 +80,14 @@ func init() { gorootTestSkips["fixedbugs/issue42076.go"] = "skip cgo" gorootTestSkips["fixedbugs/issue46903.go"] = "skip cgo" gorootTestSkips["fixedbugs/issue51733.go"] = "skip cgo" + //go1.21 + gorootTestSkips["fixedbugs/issue19658.go"] = "skip command" // gorootTestSkips["fixedbugs/issue57823.go"] = "GC" if ver == "go1.18" { gorootTestSkips["typeparam/cons.go"] = "skip golang.org/x/tools v0.7.0 on go1.18" gorootTestSkips["typeparam/list2.go"] = "skip golang.org/x/tools v0.7.0 on go1.18" } - if ver == "go1.21" || ver == "go1.22" { - gorootTestSkips["fixedbugs/issue19658.go"] = "skip command" - } - if ver == "go1.22" { + if ver == "go1.22" || ver == "go1.23" { gorootTestSkips["fixedbugs/bug369.go"] = "skip command" gorootTestSkips["fixedbugs/issue10607.go"] = "skip command" gorootTestSkips["fixedbugs/issue21317.go"] = "skip command" @@ -118,7 +116,7 @@ func init() { gorootTestSkips["fixedbugs/issue15002.go"] = "skip windows" gorootTestSkips["fixedbugs/issue5493.go"] = "skip windows" gorootTestSkips["fixedbugs/issue5963.go"] = "skip windows" - if ver == "go1.22" { + if ver == "go1.22" || ver == "go1.23" { gorootTestSkips["recover4.go"] = "skip windows" gorootTestSkips["sigchld.go"] = "skip windows" } @@ -135,17 +133,17 @@ func init() { } var ( - goCmd string - gossaCmd string + cmdGo string + cmdIgop string ) func init() { var err error - gossaCmd, err = exec.LookPath("igop") + cmdIgop, err = exec.LookPath("igop") if err != nil { panic(fmt.Sprintf("not found igop: %v", err)) } - goCmd, err = exec.LookPath("go") + cmdGo, err = exec.LookPath("go") if err != nil { panic(fmt.Sprintf("not found go: %v", err)) } @@ -154,7 +152,7 @@ func init() { func runCommand(input string, chkout bool) bool { fmt.Println("Input:", input) start := time.Now() - cmd := exec.Command(gossaCmd, "run", "-exp-gc", input) + cmd := exec.Command(cmdIgop, "run", "-exp-gc", input) data, err := cmd.CombinedOutput() if len(data) > 0 { fmt.Println(string(data)) @@ -245,7 +243,7 @@ func getGorootTestRuns() (dir string, run []runfile, runoutput []string) { } func execRunoutput(input string) (string, error) { - cmd := exec.Command(goCmd, "run", input) + cmd := exec.Command(cmdGo, "run", input) data, err := cmd.CombinedOutput() if err != nil { return "", err diff --git a/context.go b/context.go index 33c41068..e0d18d27 100644 --- a/context.go +++ b/context.go @@ -100,7 +100,7 @@ func (ctx *Context) lookupPath(path string) (dir string, found bool) { dir, found = ctx.Lookup(ctx.root, path) } if !found { - bp, err := build.Import(path, ctx.root, build.FindOnly) + bp, err := ctx.BuildContext.Import(path, ctx.root, build.FindOnly) if err == nil && bp.ImportPath == path { return bp.Dir, true } @@ -135,7 +135,7 @@ func (sp *SourcePackage) Load() (err error) { if sp.Context.Mode&EnableNoStrict != 0 { conf.Error = func(e error) { if te, ok := e.(types.Error); ok { - if strings.HasSuffix(te.Msg, errDeclaredNotUsed) || strings.HasSuffix(te.Msg, errImportedNotUsed) { + if hasTypesNotUsedError(te.Msg) { println(fmt.Sprintf("igop warning: %v", e)) return } @@ -237,7 +237,7 @@ type PanicInfo struct { funcInstr *Frame fset *token.FileSet - Error error // PanicError + Error error // PanicError / FatalError / PlainError / RuntimeError } func (i *PanicInfo) Position() token.Position { @@ -469,6 +469,18 @@ func (ctx *Context) loadTestPackage(bp *build.Package, path string, dir string) }, nil } +func (ctx *Context) openFile(path string) (io.ReadCloser, error) { + if fn := ctx.BuildContext.OpenFile; fn != nil { + return fn(path) + } + + f, err := os.Open(path) + if err != nil { + return nil, err // nil interface + } + return f, nil +} + func (ctx *Context) parseGoFiles(dir string, filenames []string) ([]*ast.File, error) { files := make([]*ast.File, len(filenames)) errors := make([]error, len(filenames)) @@ -478,7 +490,13 @@ func (ctx *Context) parseGoFiles(dir string, filenames []string) ([]*ast.File, e for i, filename := range filenames { go func(i int, filepath string) { defer wg.Done() - files[i], errors[i] = parser.ParseFile(ctx.FileSet, filepath, nil, parser.ParseComments) + r, err := ctx.openFile(filepath) + if err != nil { + errors[i] = err + } else { + files[i], errors[i] = parser.ParseFile(ctx.FileSet, filepath, r, parser.ParseComments) + r.Close() + } }(i, filepath.Join(dir, filename)) } wg.Wait() diff --git a/errors.go b/errors.go index 194cc5b2..72e97428 100644 --- a/errors.go +++ b/errors.go @@ -17,6 +17,7 @@ package igop import ( + "bytes" "errors" "fmt" ) @@ -36,18 +37,55 @@ func (r ExitError) Error() string { return fmt.Sprintf("exit %v", int(r)) } -type plainError string +type PlainError string -func (e plainError) RuntimeError() {} +func (e PlainError) RuntimeError() {} -func (e plainError) Error() string { +func (e PlainError) Error() string { return string(e) } -type runtimeError string +type RuntimeError string -func (e runtimeError) RuntimeError() {} +func (e RuntimeError) RuntimeError() {} -func (e runtimeError) Error() string { +func (e RuntimeError) Error() string { return "runtime error: " + string(e) } + +// If the target program panics, the interpreter panics with this type. +type PanicError struct { + stack []byte + Value value +} + +func (p PanicError) Error() string { + var buf bytes.Buffer + writeany(&buf, p.Value) + return buf.String() +} + +func (p PanicError) Stack() []byte { + return p.stack +} + +// run func fatal error +type FatalError struct { + stack []byte + Value value +} + +func (p FatalError) Error() string { + var buf bytes.Buffer + writeany(&buf, p.Value) + return buf.String() +} + +func (p FatalError) Stack() []byte { + return p.stack +} + +// If the target program calls exit, the interpreter panics with this type. +type exitPanic int + +type goexitPanic int diff --git a/errstring.go b/errstring.go index 83857768..509a5634 100644 --- a/errstring.go +++ b/errstring.go @@ -19,9 +19,22 @@ package igop +import "strings" + const ( errDeclaredNotUsed = "declared but not used" errImportedNotUsed = "imported but not used" errAppendOutOfRange = "growslice: cap out of range" errSliceToArrayPointer = "cannot convert slice with length %v to pointer to array with length %v" ) + +func hasTypesNotUsedError(msg string) bool { + return strings.HasSuffix(msg, errDeclaredNotUsed) || strings.HasSuffix(msg, errImportedNotUsed) +} + +func isTypesDeclaredNotUsed(msg string) (string, bool) { + if strings.HasSuffix(msg, errDeclaredNotUsed) { + return msg[0 : len(msg)-len(errDeclaredNotUsed)-1], true + } + return "", false +} diff --git a/errstring_go120.go b/errstring_go120.go index 556e2c6e..33ff5a75 100644 --- a/errstring_go120.go +++ b/errstring_go120.go @@ -1,5 +1,5 @@ -//go:build go1.20 -// +build go1.20 +//go:build go1.20 && !go1.23 +// +build go1.20,!go1.23 /* * Copyright (c) 2022 The GoPlus Authors (goplus.org). All rights reserved. @@ -19,9 +19,22 @@ package igop +import "strings" + const ( errDeclaredNotUsed = "declared and not used" errImportedNotUsed = "imported and not used" errAppendOutOfRange = "len out of range" errSliceToArrayPointer = "cannot convert slice with length %v to array or pointer to array with length %v" ) + +func hasTypesNotUsedError(msg string) bool { + return strings.HasSuffix(msg, errDeclaredNotUsed) || strings.HasSuffix(msg, errImportedNotUsed) +} + +func isTypesDeclaredNotUsed(msg string) (string, bool) { + if strings.HasSuffix(msg, errDeclaredNotUsed) { + return msg[0 : len(msg)-len(errDeclaredNotUsed)-1], true + } + return "", false +} diff --git a/errstring_go123.go b/errstring_go123.go new file mode 100644 index 00000000..125f89d5 --- /dev/null +++ b/errstring_go123.go @@ -0,0 +1,40 @@ +//go:build go1.23 +// +build go1.23 + +/* + * Copyright (c) 2025 The GoPlus Authors (goplus.org). All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package igop + +import "strings" + +const ( + errDeclaredNotUsed = "declared and not used" + errImportedNotUsed = "imported and not used" + errAppendOutOfRange = "len out of range" + errSliceToArrayPointer = "cannot convert slice with length %v to array or pointer to array with length %v" +) + +func hasTypesNotUsedError(msg string) bool { + return strings.HasPrefix(msg, errDeclaredNotUsed+":") || strings.HasSuffix(msg, errImportedNotUsed) +} + +func isTypesDeclaredNotUsed(msg string) (string, bool) { + if strings.HasPrefix(msg, errDeclaredNotUsed+":") { + return msg[len(errDeclaredNotUsed)+2:], true + } + return "", false +} diff --git a/go.mod b/go.mod index 7c02bdc0..c266b13a 100644 --- a/go.mod +++ b/go.mod @@ -4,17 +4,17 @@ go 1.16 require ( github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 - github.com/goplus/gogen v1.15.2 - github.com/goplus/gop v1.2.6 - github.com/goplus/mod v0.13.10 - github.com/goplus/reflectx v1.2.2 + github.com/goplus/gogen v1.16.6 + github.com/goplus/gop v1.2.0-pre.1.0.20250205022253-3d37fda99e10 + github.com/goplus/mod v0.13.16 + github.com/goplus/reflectx v1.3.1 github.com/modern-go/reflect2 v1.0.2 github.com/peterh/liner v1.2.2 - github.com/qiniu/x v1.13.10 + github.com/qiniu/x v1.13.11 github.com/visualfc/funcval v0.1.4 github.com/visualfc/gid v0.2.0 github.com/visualfc/goembed v0.3.2 github.com/visualfc/xtype v0.2.0 - golang.org/x/mod v0.17.0 + golang.org/x/mod v0.20.0 golang.org/x/tools v0.19.0 ) diff --git a/go.sum b/go.sum index 597999e4..d43ee4a5 100644 --- a/go.sum +++ b/go.sum @@ -1,37 +1,37 @@ github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM= -github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/fsnotify/fsnotify v1.8.0/go.mod h1:8jBTzvmWwFyi3Pb8djgCCO5IBqzKJ/Jwo8TRcHyHii0= github.com/gopherjs/gopherjs v0.0.0-20180708170036-38b413be4187/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 h1:l5lAOZEym3oK3SQ2HBHWsJUfbNBiTXJDeW2QDxw9AQ0= github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= -github.com/goplus/c2go v0.7.26/go.mod h1:ePAStubV/ls8mmdPGQo6VfADTVd46rKuBemE4zzBDnA= -github.com/goplus/gogen v1.15.2 h1:Q6XaSx/Zi5tWnjfAziYsQI6Jv6MgODRpFtOYqNkiiqM= -github.com/goplus/gogen v1.15.2/go.mod h1:92qEzVgv7y8JEFICWG9GvYI5IzfEkxYdsA1DbmnTkqk= -github.com/goplus/gop v1.2.6 h1:kog3c5Js+8EopqmI4+CwueXsqibnBwYVt5q5N7juRVY= -github.com/goplus/gop v1.2.6/go.mod h1:uREWbR1MrFaviZ4Mbx4ZCcAYDoqzO0iv1Qo6Np0Xx4E= -github.com/goplus/mod v0.13.10 h1:5Om6KOvo31daN7N30kWU1vC5zhsJPM+uPbcEN/FnlzE= -github.com/goplus/mod v0.13.10/go.mod h1:HDuPZgpWiaTp3PUolFgsiX+Q77cbUWB/mikVHfYND3c= -github.com/goplus/reflectx v1.2.2 h1:T1p20OIH/HcnAvQQNnDLwl6AZOjU34icsfc6migD6L8= -github.com/goplus/reflectx v1.2.2/go.mod h1:wHOS9ilbB4zrecI0W1dMmkW9JMcpXV7VjALVbNU9xfM= -github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= +github.com/goplus/gogen v1.16.3/go.mod h1:6TQYbabXDF9LCdDkOOzHmfg1R4ENfXQ3XpHa9RhTSD8= +github.com/goplus/gogen v1.16.6 h1:Zwv18HoTbPDk8s2ajxgVeqZE5i4/GMV722KHl6GS8Yk= +github.com/goplus/gogen v1.16.6/go.mod h1:6TQYbabXDF9LCdDkOOzHmfg1R4ENfXQ3XpHa9RhTSD8= +github.com/goplus/gop v1.2.0-pre.1.0.20250205022253-3d37fda99e10 h1:GPcajVBg/FFG+hKhCSUn4cHiu/0g7vjuh5iYK4ERaJE= +github.com/goplus/gop v1.2.0-pre.1.0.20250205022253-3d37fda99e10/go.mod h1:W84eeOJnCfeJzaBXv1hGXOatM9xhbIEER3/TSGetlWg= +github.com/goplus/llgo v0.9.9/go.mod h1:udcq+s6tGOdhJq7I8fXPTv4qT2j17/KrlvtcJrMZAoM= +github.com/goplus/llvm v0.8.0/go.mod h1:PeVK8GgzxwAYCiMiUAJb5wJR6xbhj989tu9oulKLLT4= +github.com/goplus/mod v0.13.13/go.mod h1:invR72Rz2+qpOOsXqxz830MX8/aR2GDR2EAow/WgfHI= +github.com/goplus/mod v0.13.16 h1:tiRk0jszPc66Oh+KBtMZUiTChG9ixzaI4vt7ZZ31HoU= +github.com/goplus/mod v0.13.16/go.mod h1:BsKIBf4PU1am5EgGtA2NV3+/W9cbzWu+9+dwGKj0pgk= +github.com/goplus/reflectx v1.3.1 h1:RsQbgh7kobImsZR57fObKC6/9gRDSH9RYKYebvtG4DI= +github.com/goplus/reflectx v1.3.1/go.mod h1:wHOS9ilbB4zrecI0W1dMmkW9JMcpXV7VjALVbNU9xfM= github.com/mattn/go-runewidth v0.0.3 h1:a+kO+98RDGEfo6asOGMmpodZq4FNtnGP54yps8BzLR4= github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= -github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= github.com/peterh/liner v1.2.2 h1:aJ4AOodmL+JxOZZEL2u9iJf8omNRpqHc/EbrK+3mAXw= github.com/peterh/liner v1.2.2/go.mod h1:xFwJyiKIXJZUKItq5dGHZSTBRAuG/CpeNpWLyiNRNwI= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/qiniu/x v1.13.10 h1:J4Z3XugYzAq85SlyAfqlKVrbf05glMbAOh+QncsDQpE= github.com/qiniu/x v1.13.10/go.mod h1:INZ2TSWSJVWO/RuELQROERcslBwVgFG7MkTfEdaQz9E= +github.com/qiniu/x v1.13.11 h1:zlFLY9zFXOwKEjx0SQXRBunhFjDVpEY+pRGL/4shd5U= +github.com/qiniu/x v1.13.11/go.mod h1:INZ2TSWSJVWO/RuELQROERcslBwVgFG7MkTfEdaQz9E= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA= -github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= @@ -58,8 +58,8 @@ golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.15.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/mod v0.16.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= -golang.org/x/mod v0.17.0 h1:zY54UmvipHiNd+pm+m0x9KhZ9hl1/7QNMyxXbc6ICqA= -golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= +golang.org/x/mod v0.20.0 h1:utOm6MM3R3dnawAiJgn0y+xvuYRsm1RKM/4giyfDgV0= +golang.org/x/mod v0.20.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= @@ -72,21 +72,23 @@ golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= -golang.org/x/sync v0.6.0 h1:5BMeUDZ7vkXGfEr1x9B4bRcTH4lpkTkpdh0T/J+qjbQ= golang.org/x/sync v0.6.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M= +golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211117180635-dee7805ff2e1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws= +golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/telemetry v0.0.0-20240228155512-f48c80bd79b2/go.mod h1:TeRTkGYfJXctD9OcfyVLyj2J3IxLnKwHJR8f4D8a3YE= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= diff --git a/gopbuild/build.go b/gopbuild/build.go index 97649acb..894ebfe5 100644 --- a/gopbuild/build.go +++ b/gopbuild/build.go @@ -19,6 +19,8 @@ package gopbuild //go:generate go run ../cmd/qexp -outdir ../pkg github.com/goplus/gop/builtin //go:generate go run ../cmd/qexp -outdir ../pkg github.com/goplus/gop/builtin/ng //go:generate go run ../cmd/qexp -outdir ../pkg github.com/goplus/gop/builtin/iox +//go:generate go run ../cmd/qexp -outdir ../pkg github.com/goplus/gop/builtin/stringslice +//go:generate go run ../cmd/qexp -outdir ../pkg github.com/qiniu/x/stringutil //go:generate go run ../cmd/qexp -outdir ../pkg github.com/qiniu/x/errors //go:generate go run ../cmd/qexp -outdir ../pkg github.com/qiniu/x/gsh @@ -44,8 +46,10 @@ import ( _ "github.com/goplus/igop/pkg/github.com/goplus/gop/builtin" _ "github.com/goplus/igop/pkg/github.com/goplus/gop/builtin/iox" _ "github.com/goplus/igop/pkg/github.com/goplus/gop/builtin/ng" + _ "github.com/goplus/igop/pkg/github.com/goplus/gop/builtin/stringslice" _ "github.com/goplus/igop/pkg/github.com/qiniu/x/errors" _ "github.com/goplus/igop/pkg/github.com/qiniu/x/gsh" + _ "github.com/goplus/igop/pkg/github.com/qiniu/x/stringutil" _ "github.com/goplus/igop/pkg/io" _ "github.com/goplus/igop/pkg/log" _ "github.com/goplus/igop/pkg/math" diff --git a/gopbuild/build_test.go b/gopbuild/build_test.go index 6026f158..2830f3da 100644 --- a/gopbuild/build_test.go +++ b/gopbuild/build_test.go @@ -531,3 +531,23 @@ func main() { } `) } + +func TestStringSlice(t *testing.T) { + gopClTest(t, ` +println "a".repeat(10) +println "hello".toTitle +`, `package main + +import ( + "fmt" + "strings" +) +//line main.gop:2 +func main() { +//line main.gop:2:1 + fmt.Println(strings.Repeat("a", 10)) +//line main.gop:3:1 + fmt.Println(strings.ToTitle("hello")) +} +`) +} diff --git a/igop/README.md b/igop/README.md new file mode 100644 index 00000000..d4dc0a11 --- /dev/null +++ b/igop/README.md @@ -0,0 +1,23 @@ +### build igop for Go1.23 + +- go.mod use `golang.org/x/tools v0.29.0` for support range func + +- build use `-ldflags="-checklinkname=0"` for support linkname + +### Install igop for Go1.23 +`go install -ldflags="-checklinkname=0" github.com/goplus/igop/igop@v0.23.1` + + +### Local development environment + +go.work +``` +go 1.23 + +use ( + . + ./.. +) +``` + + diff --git a/igop/go.mod b/igop/go.mod new file mode 100644 index 00000000..747cb9c7 --- /dev/null +++ b/igop/go.mod @@ -0,0 +1,25 @@ +module github.com/goplus/igop/igop + +go 1.23 + +require github.com/goplus/igop v0.30.0 + +require ( + github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect + github.com/goplus/gogen v1.16.6 // indirect + github.com/goplus/gop v1.2.0-pre.1.0.20250205022253-3d37fda99e10 // indirect + github.com/goplus/mod v0.13.16 // indirect + github.com/goplus/reflectx v1.3.1 // indirect + github.com/mattn/go-runewidth v0.0.3 // indirect + github.com/modern-go/reflect2 v1.0.2 // indirect + github.com/peterh/liner v1.2.2 // indirect + github.com/qiniu/x v1.13.11 // indirect + github.com/timandy/routine v1.1.4 // indirect + github.com/visualfc/funcval v0.1.4 // indirect + github.com/visualfc/gid v0.2.0 // indirect + github.com/visualfc/goembed v0.3.2 // indirect + github.com/visualfc/xtype v0.2.0 // indirect + golang.org/x/mod v0.22.0 // indirect + golang.org/x/sys v0.29.0 // indirect + golang.org/x/tools v0.29.0 // indirect +) diff --git a/igop/go.sum b/igop/go.sum new file mode 100644 index 00000000..be898304 --- /dev/null +++ b/igop/go.sum @@ -0,0 +1,124 @@ +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/fsnotify/fsnotify v1.8.0/go.mod h1:8jBTzvmWwFyi3Pb8djgCCO5IBqzKJ/Jwo8TRcHyHii0= +github.com/gopherjs/gopherjs v0.0.0-20180708170036-38b413be4187/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= +github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 h1:l5lAOZEym3oK3SQ2HBHWsJUfbNBiTXJDeW2QDxw9AQ0= +github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= +github.com/goplus/gogen v1.16.3/go.mod h1:6TQYbabXDF9LCdDkOOzHmfg1R4ENfXQ3XpHa9RhTSD8= +github.com/goplus/gogen v1.16.6 h1:Zwv18HoTbPDk8s2ajxgVeqZE5i4/GMV722KHl6GS8Yk= +github.com/goplus/gogen v1.16.6/go.mod h1:6TQYbabXDF9LCdDkOOzHmfg1R4ENfXQ3XpHa9RhTSD8= +github.com/goplus/gop v1.2.0-pre.1.0.20250205022253-3d37fda99e10 h1:GPcajVBg/FFG+hKhCSUn4cHiu/0g7vjuh5iYK4ERaJE= +github.com/goplus/gop v1.2.0-pre.1.0.20250205022253-3d37fda99e10/go.mod h1:W84eeOJnCfeJzaBXv1hGXOatM9xhbIEER3/TSGetlWg= +github.com/goplus/igop v0.30.0 h1:fq+SdV56DweUC2XOls02WJL4gu2Wrgf2ZGVB1vwtfJ4= +github.com/goplus/igop v0.30.0/go.mod h1:09vNJFcyeEi9jrh0huQU6SIcGae7L0khraik5tU7SyE= +github.com/goplus/llgo v0.9.9/go.mod h1:udcq+s6tGOdhJq7I8fXPTv4qT2j17/KrlvtcJrMZAoM= +github.com/goplus/llvm v0.8.0/go.mod h1:PeVK8GgzxwAYCiMiUAJb5wJR6xbhj989tu9oulKLLT4= +github.com/goplus/mod v0.13.13/go.mod h1:invR72Rz2+qpOOsXqxz830MX8/aR2GDR2EAow/WgfHI= +github.com/goplus/mod v0.13.16 h1:tiRk0jszPc66Oh+KBtMZUiTChG9ixzaI4vt7ZZ31HoU= +github.com/goplus/mod v0.13.16/go.mod h1:BsKIBf4PU1am5EgGtA2NV3+/W9cbzWu+9+dwGKj0pgk= +github.com/goplus/reflectx v1.3.1 h1:RsQbgh7kobImsZR57fObKC6/9gRDSH9RYKYebvtG4DI= +github.com/goplus/reflectx v1.3.1/go.mod h1:wHOS9ilbB4zrecI0W1dMmkW9JMcpXV7VjALVbNU9xfM= +github.com/mattn/go-runewidth v0.0.3 h1:a+kO+98RDGEfo6asOGMmpodZq4FNtnGP54yps8BzLR4= +github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= +github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= +github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/peterh/liner v1.2.2 h1:aJ4AOodmL+JxOZZEL2u9iJf8omNRpqHc/EbrK+3mAXw= +github.com/peterh/liner v1.2.2/go.mod h1:xFwJyiKIXJZUKItq5dGHZSTBRAuG/CpeNpWLyiNRNwI= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/qiniu/x v1.13.10/go.mod h1:INZ2TSWSJVWO/RuELQROERcslBwVgFG7MkTfEdaQz9E= +github.com/qiniu/x v1.13.11 h1:zlFLY9zFXOwKEjx0SQXRBunhFjDVpEY+pRGL/4shd5U= +github.com/qiniu/x v1.13.11/go.mod h1:INZ2TSWSJVWO/RuELQROERcslBwVgFG7MkTfEdaQz9E= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= +github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA= +github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= +github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= +github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/timandy/routine v1.1.4 h1:L9eAli/ROJcW6LhmwZcusYQcdAqxAXGOQhEXLQSNWOA= +github.com/timandy/routine v1.1.4/go.mod h1:siBcl8iIsGmhLCajRGRcy7Y7FVcicNXkr97JODdt9fc= +github.com/visualfc/funcval v0.1.4 h1:lAI88zQYfRzmC7mKF4+swXeCZvb8wb1f3lMSDRAY2mQ= +github.com/visualfc/funcval v0.1.4/go.mod h1:3Izv+irhArmrTvy+lmL6pIq16gSOzx73CIka51J9eR0= +github.com/visualfc/gid v0.2.0 h1:afcecoaa0GejCYlDBCUQZn4VUB3RsTXhxawNg7rAEto= +github.com/visualfc/gid v0.2.0/go.mod h1:srMMe/ps7zr2aZ1XP1jzPiaidjiM+w+c6olVnFcNjpw= +github.com/visualfc/goembed v0.3.2 h1:a9m6o9VTzNk3mEF98C8cHp8f8P8BblyjsjajXGfTp8w= +github.com/visualfc/goembed v0.3.2/go.mod h1:jCVCz/yTJGyslo6Hta+pYxWWBuq9ADCcIVZBTQ0/iVI= +github.com/visualfc/xtype v0.2.0 h1:0ESNXyWHtK01kaOzOyqHsR1ZjEPdNu/IWPZkf0VOHl8= +github.com/visualfc/xtype v0.2.0/go.mod h1:183MDtzLqyDkCm5zCH42vJGq/aQE5W25k3Z6UOZxLF0= +github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc= +golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU= +golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= +golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.15.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= +golang.org/x/mod v0.16.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= +golang.org/x/mod v0.20.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= +golang.org/x/mod v0.22.0 h1:D4nJWe9zXqHOmWqj4VMOJhvzj7bEZg4wEYa759z1pH4= +golang.org/x/mod v0.22.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= +golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= +golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= +golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44= +golang.org/x/net v0.22.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= +golang.org/x/sync v0.6.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ= +golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211117180635-dee7805ff2e1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.29.0 h1:TPYlXGxvx1MGTn2GiZDhnjPA9wZzZeGKHHmKhHYvgaU= +golang.org/x/sys v0.29.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/telemetry v0.0.0-20240228155512-f48c80bd79b2/go.mod h1:TeRTkGYfJXctD9OcfyVLyj2J3IxLnKwHJR8f4D8a3YE= +golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= +golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= +golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU= +golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk= +golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= +golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= +golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= +golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= +golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58= +golang.org/x/tools v0.19.0/go.mod h1:qoJWxmGSIBmAeriMx19ogtrEPrGtDbPK634QFIcLAhc= +golang.org/x/tools v0.29.0 h1:Xx0h3TtM9rzQpQuR4dKLrdglAmCEN5Oi+P74JdhdzXE= +golang.org/x/tools v0.29.0/go.mod h1:KMQVMRsVxU6nHCFXrBPhDB8XncLNLM0lIy/F14RP588= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/igop/main.go b/igop/main.go new file mode 100644 index 00000000..702ca036 --- /dev/null +++ b/igop/main.go @@ -0,0 +1,22 @@ +/* + Copyright 2025 The GoPlus Authors (goplus.org) + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + +package main + +import ( + "github.com/goplus/igop/cmd/igop/exec" +) + +func main() { + exec.Main() +} diff --git a/internal/typesutil/alias_go121.go b/internal/typesutil/alias_go121.go new file mode 100644 index 00000000..8c7c153d --- /dev/null +++ b/internal/typesutil/alias_go121.go @@ -0,0 +1,31 @@ +//go:build !go1.22 +// +build !go1.22 + +package typesutil + +import "go/types" + +type Alias struct { +} + +const unsupported = "typesAlias are unsupported at this go version" + +func (t *Alias) Underlying() types.Type { + panic(unsupported) +} + +func (t *Alias) String() string { + panic(unsupported) +} + +func (t *Alias) Obj() *types.TypeName { + panic(unsupported) +} + +func NewAlias(obj *types.TypeName, rhs types.Type) *Alias { + return &Alias{} +} + +func Unalias(t types.Type) types.Type { + return t +} diff --git a/internal/typesutil/alias_go122.go b/internal/typesutil/alias_go122.go new file mode 100644 index 00000000..5fdd4e9d --- /dev/null +++ b/internal/typesutil/alias_go122.go @@ -0,0 +1,16 @@ +//go:build go1.22 +// +build go1.22 + +package typesutil + +import "go/types" + +type Alias = types.Alias + +func NewAlias(obj *types.TypeName, rhs types.Type) *Alias { + return types.NewAlias(obj, rhs) +} + +func Unalias(t types.Type) types.Type { + return types.Unalias(t) +} diff --git a/interp.go b/interp.go index a651529c..c0e6a525 100644 --- a/interp.go +++ b/interp.go @@ -52,7 +52,6 @@ import ( "go/token" "go/types" "reflect" - "runtime" "strings" "sync" "sync/atomic" @@ -480,6 +479,20 @@ func (fr *frame) copyReg(dst register, src register) { fr.stack[dst] = fr.stack[src] } +func (fr *frame) runtimeError(instr funcInstr, text string) error { + if fr.interp.ctx.panicFunc != nil { + return fr.interp.ctx.handlePanic(fr, instr, RuntimeError(text)) + } + return RuntimeError(text) +} + +func (fr *frame) plainError(instr funcInstr, text string) error { + if fr.interp.ctx.panicFunc != nil { + return fr.interp.ctx.handlePanic(fr, instr, PlainError(text)) + } + return PlainError(text) +} + type _panic struct { arg interface{} link *_panic @@ -1277,16 +1290,18 @@ func (i *Interp) RunFunc(name string, args ...Value) (r Value, err error) { i.exitCode = <-i.chexit atomic.StoreInt32(&i.exited, 1) } - case runtime.Error: - err = p case PanicError: err = p default: + // runtimeError / plainError ... pfr := fr for pfr.callee != nil { pfr = pfr.callee } - err = PanicError{stack: debugStack(pfr), Value: p} + err = FatalError{stack: debugStack(pfr), Value: p} + if i.ctx.panicFunc != nil { + i.ctx.handlePanic(fr, i.mainpkg.Func(name), err) + } } }() if fn := i.mainpkg.Func(name); fn != nil { diff --git a/interp_test.go b/interp_test.go index 5e151a39..f75054ce 100644 --- a/interp_test.go +++ b/interp_test.go @@ -19,6 +19,8 @@ import ( "bytes" "context" "fmt" + "io" + "io/fs" "log" "os" "path/filepath" @@ -2685,3 +2687,76 @@ func main() { t.Fatal(err) } } + +// A FileInfo describes a file and is returned by Stat. +type fileInfo struct { + name string + size int64 + mode fs.FileMode + modTime time.Time + isDir bool +} + +func (f fileInfo) Name() string { + return f.name +} +func (f fileInfo) Size() int64 { + return f.size +} +func (f fileInfo) Mode() fs.FileMode { + return f.mode +} +func (f fileInfo) ModTime() time.Time { + return f.modTime +} +func (f fileInfo) IsDir() bool { + return f.isDir +} +func (f fileInfo) Sys() interface{} { + return nil +} + +func TestBuildContext(t *testing.T) { + ctx := igop.NewContext(0) + const pkgDir = "mypkg" + const mypkg = `package mypkg +import "fmt" + +func Demo(n int) { + fmt.Println(n) +} +` + ctx.Lookup = func(root, path string) (dir string, found bool) { + if path == "mypkg" { + return pkgDir, true + } + return + } + ctx.BuildContext.IsDir = func(path string) bool { + if path == pkgDir { + return true + } + return false + } + ctx.BuildContext.ReadDir = func(dir string) ([]fs.FileInfo, error) { + if dir == pkgDir { + return []fs.FileInfo{&fileInfo{name: "mypkg.go", size: int64(len(mypkg)), mode: 0644}}, nil + } + return nil, nil + } + ctx.BuildContext.OpenFile = func(path string) (io.ReadCloser, error) { + var buf bytes.Buffer + buf.WriteString(mypkg) + return io.NopCloser(&buf), nil + } + _, err := ctx.RunFile("main.go", `package main +import "mypkg" + +func main() { + mypkg.Demo(100) +} +`, nil) + if err != nil { + t.Fatal(err) + } +} diff --git a/opblock.go b/opblock.go index dede336f..9e38cac1 100644 --- a/opblock.go +++ b/opblock.go @@ -520,7 +520,7 @@ func makeInstr(interp *Interp, pfn *function, instr ssa.Instruction) func(fr *fr size := fr.reg(is) buffer := asInt(size) if buffer < 0 { - panic(runtimeError("makechan: size out of range")) + panic(fr.runtimeError(instr, "makechan: size out of range")) } fr.setReg(ir, reflect.MakeChan(typ, buffer).Interface()) } @@ -530,7 +530,7 @@ func makeInstr(interp *Interp, pfn *function, instr ssa.Instruction) func(fr *fr size := fr.reg(is) buffer := asInt(size) if buffer < 0 { - panic(runtimeError("makechan: size out of range")) + panic(fr.runtimeError(instr, "makechan: size out of range")) } fr.setReg(ir, reflect.MakeChan(ctyp, buffer).Convert(typ).Interface()) } @@ -556,11 +556,11 @@ func makeInstr(interp *Interp, pfn *function, instr ssa.Instruction) func(fr *fr return func(fr *frame) { Len := asInt(fr.reg(il)) if Len < 0 || Len >= maxMemLen { - panic(runtimeError("makeslice: len out of range")) + panic(fr.runtimeError(instr, "makeslice: len out of range")) } Cap := asInt(fr.reg(ic)) if Cap < 0 || Cap >= maxMemLen { - panic(runtimeError("makeslice: cap out of range")) + panic(fr.runtimeError(instr, "makeslice: cap out of range")) } fr.setReg(ir, reflect.MakeSlice(typ, Len, Cap).Interface()) } @@ -587,7 +587,7 @@ func makeInstr(interp *Interp, pfn *function, instr ssa.Instruction) func(fr *fr return func(fr *frame) { v, err := fieldAddrX(fr.reg(ix), instr.Field) if err != nil { - panic(runtimeError(err.Error())) + panic(fr.runtimeError(instr, err.Error())) } fr.setReg(ir, v) } @@ -597,7 +597,7 @@ func makeInstr(interp *Interp, pfn *function, instr ssa.Instruction) func(fr *fr return func(fr *frame) { v, err := fieldX(fr.reg(ix), instr.Field) if err != nil { - panic(runtimeError(err.Error())) + panic(fr.runtimeError(instr, err.Error())) } fr.setReg(ir, v) } @@ -616,15 +616,15 @@ func makeInstr(interp *Interp, pfn *function, instr ssa.Instruction) func(fr *fr case reflect.Slice: case reflect.Array: case reflect.Invalid: - panic(runtimeError("invalid memory address or nil pointer dereference")) + panic(fr.runtimeError(instr, "invalid memory address or nil pointer dereference")) default: panic(fmt.Sprintf("unexpected x type in IndexAddr: %T", x)) } index := asInt(idx) if index < 0 { - panic(runtimeError(fmt.Sprintf("index out of range [%v]", index))) + panic(fr.runtimeError(instr, fmt.Sprintf("index out of range [%v]", index))) } else if length := v.Len(); index >= length { - panic(runtimeError(fmt.Sprintf("index out of range [%v] with length %v", index, length))) + panic(fr.runtimeError(instr, fmt.Sprintf("index out of range [%v] with length %v", index, length))) } fr.setReg(ir, v.Index(index).Addr().Interface()) } @@ -638,9 +638,9 @@ func makeInstr(interp *Interp, pfn *function, instr ssa.Instruction) func(fr *fr index := asInt(idx) v := reflect.ValueOf(x) if index < 0 { - panic(runtimeError(fmt.Sprintf("index out of range [%v]", index))) + panic(fr.runtimeError(instr, fmt.Sprintf("index out of range [%v]", index))) } else if length := v.Len(); index >= length { - panic(runtimeError(fmt.Sprintf("index out of range [%v] with length %v", index, length))) + panic(fr.runtimeError(instr, fmt.Sprintf("index out of range [%v] with length %v", index, length))) } fr.setReg(ir, v.Index(index).Interface()) } @@ -748,7 +748,7 @@ func makeInstr(interp *Interp, pfn *function, instr ssa.Instruction) func(fr *fr vLen := v.Len() tLen := typ.Elem().Len() if tLen > vLen { - panic(runtimeError(fmt.Sprintf(errSliceToArrayPointer, vLen, tLen))) + panic(fr.runtimeError(instr, fmt.Sprintf(errSliceToArrayPointer, vLen, tLen))) } fr.setReg(ir, v.Convert(typ).Interface()) } @@ -788,12 +788,12 @@ func makeInstr(interp *Interp, pfn *function, instr ssa.Instruction) func(fr *fr ix, kx, vx := pfn.regIndex3(instr.X) if kx.isStatic() { return func(fr *frame) { - fr.setReg(ir, typeAssert(interp, instr, typ, xtyp, vx)) + fr.setReg(ir, typeAssert(fr, instr, typ, xtyp, vx)) } } return func(fr *frame) { v := fr.reg(ix) - fr.setReg(ir, typeAssert(interp, instr, typ, xtyp, v)) + fr.setReg(ir, typeAssert(fr, instr, typ, xtyp, v)) } case *ssa.Extract: if *instr.Referrers() == nil { diff --git a/ops.go b/ops.go index 28df30bd..18d6f898 100644 --- a/ops.go +++ b/ops.go @@ -5,7 +5,6 @@ package igop import ( - "bytes" "fmt" "go/constant" "go/token" @@ -16,27 +15,6 @@ import ( "golang.org/x/tools/go/ssa" ) -// If the target program panics, the interpreter panics with this type. -type PanicError struct { - stack []byte - Value value -} - -func (p PanicError) Error() string { - var buf bytes.Buffer - writeany(&buf, p.Value) - return buf.String() -} - -func (p PanicError) Stack() []byte { - return p.stack -} - -// If the target program calls exit, the interpreter panics with this type. -type exitPanic int - -type goexitPanic int - func xtypeValue(c *ssa.Const, kind types.BasicKind) value { switch kind { case types.Bool, types.UntypedBool: @@ -219,7 +197,7 @@ func asUint64(x value) uint64 { panic(fmt.Sprintf("cannot convert %T to uint64", x)) } } - panic(runtimeError("negative shift amount")) + panic(RuntimeError("negative shift amount")) } // slice returns x[lo:hi:max]. Any of lo, hi and max may be nil. @@ -262,42 +240,42 @@ func slice(fr *frame, instr *ssa.Slice, makesliceCheck bool, ix, ih, il, im regi if makesliceCheck { if hi < 0 { - panic(runtimeError("makeslice: len out of range")) + panic(fr.runtimeError(instr, "makeslice: len out of range")) } else if hi > max { - panic(runtimeError("makeslice: cap out of range")) + panic(fr.runtimeError(instr, "makeslice: cap out of range")) } } else { if slice3 { if max < 0 { - panic(runtimeError(fmt.Sprintf("slice bounds out of range [::%v]", max))) + panic(fr.runtimeError(instr, fmt.Sprintf("slice bounds out of range [::%v]", max))) } else if max > Cap { if kind == reflect.Slice { - panic(runtimeError(fmt.Sprintf("slice bounds out of range [::%v] with capacity %v", max, Cap))) + panic(fr.runtimeError(instr, fmt.Sprintf("slice bounds out of range [::%v] with capacity %v", max, Cap))) } else { - panic(runtimeError(fmt.Sprintf("slice bounds out of range [::%v] with length %v", max, Cap))) + panic(fr.runtimeError(instr, fmt.Sprintf("slice bounds out of range [::%v] with length %v", max, Cap))) } } else if hi < 0 { - panic(runtimeError(fmt.Sprintf("slice bounds out of range [:%v:]", hi))) + panic(fr.runtimeError(instr, fmt.Sprintf("slice bounds out of range [:%v:]", hi))) } else if hi > max { - panic(runtimeError(fmt.Sprintf("slice bounds out of range [:%v:%v]", hi, max))) + panic(fr.runtimeError(instr, fmt.Sprintf("slice bounds out of range [:%v:%v]", hi, max))) } else if lo < 0 { - panic(runtimeError(fmt.Sprintf("slice bounds out of range [%v::]", lo))) + panic(fr.runtimeError(instr, fmt.Sprintf("slice bounds out of range [%v::]", lo))) } else if lo > hi { - panic(runtimeError(fmt.Sprintf("slice bounds out of range [%v:%v:]", lo, hi))) + panic(fr.runtimeError(instr, fmt.Sprintf("slice bounds out of range [%v:%v:]", lo, hi))) } } else { if hi < 0 { - panic(runtimeError(fmt.Sprintf("slice bounds out of range [:%v]", hi))) + panic(fr.runtimeError(instr, fmt.Sprintf("slice bounds out of range [:%v]", hi))) } else if hi > Cap { if kind == reflect.Slice { - panic(runtimeError(fmt.Sprintf("slice bounds out of range [:%v] with capacity %v", hi, Cap))) + panic(fr.runtimeError(instr, fmt.Sprintf("slice bounds out of range [:%v] with capacity %v", hi, Cap))) } else { - panic(runtimeError(fmt.Sprintf("slice bounds out of range [:%v] with length %v", hi, Cap))) + panic(fr.runtimeError(instr, fmt.Sprintf("slice bounds out of range [:%v] with length %v", hi, Cap))) } } else if lo < 0 { - panic(runtimeError(fmt.Sprintf("slice bounds out of range [%v:]", lo))) + panic(fr.runtimeError(instr, fmt.Sprintf("slice bounds out of range [%v:]", lo))) } else if lo > hi { - panic(runtimeError(fmt.Sprintf("slice bounds out of range [%v:%v]", lo, hi))) + panic(fr.runtimeError(instr, fmt.Sprintf("slice bounds out of range [%v:%v]", lo, hi))) } } } @@ -1266,7 +1244,7 @@ func unop(instr *ssa.UnOp, x value) value { case token.MUL: v := reflect.ValueOf(x).Elem() if !v.IsValid() { - panic(runtimeError("invalid memory address or nil pointer dereference")) + panic(RuntimeError("invalid memory address or nil pointer dereference")) } return v.Interface() //return load(deref(instr.X.Type()), x.(*value)) @@ -1331,16 +1309,16 @@ failed: // typeAssert checks whether dynamic type of itf is instr.AssertedType. // It returns the extracted value on success, and panics on failure, // unless instr.CommaOk, in which case it always returns a "value,ok" tuple. -func typeAssert(i *Interp, instr *ssa.TypeAssert, typ reflect.Type, xtyp reflect.Type, iv interface{}) value { +func typeAssert(fr *frame, instr *ssa.TypeAssert, typ reflect.Type, xtyp reflect.Type, iv interface{}) value { var v value var err error if iv == nil { if xtyp == tyErrorInterface { - err = runtimeError("invalid memory address or nil pointer dereference") + err = fr.runtimeError(instr, "invalid memory address or nil pointer dereference") } else if xtyp == typ { - err = plainError(fmt.Sprintf("interface conversion: interface is nil, not %v", typ)) + err = fr.plainError(instr, fmt.Sprintf("interface conversion: interface is nil, not %v", typ)) } else { - err = plainError(fmt.Sprintf("interface conversion: %v is nil, not %v", xtyp, typ)) + err = fr.plainError(instr, fmt.Sprintf("interface conversion: %v is nil, not %v", xtyp, typ)) } // } } else { @@ -1350,22 +1328,22 @@ func typeAssert(i *Interp, instr *ssa.TypeAssert, typ reflect.Type, xtyp reflect v = iv } else { if !rt.AssignableTo(typ) { - err = runtimeError(fmt.Sprintf("interface conversion: %v is %v, not %v", xtyp, rt, typ)) + err = fr.runtimeError(instr, fmt.Sprintf("interface conversion: %v is %v, not %v", xtyp, rt, typ)) if itype, ok := instr.AssertedType.Underlying().(*types.Interface); ok { - if it, ok := i.findType(rt, false); ok { + if it, ok := fr.interp.findType(rt, false); ok { if meth, _ := types.MissingMethod(it, itype, true); meth != nil { - err = runtimeError(fmt.Sprintf("interface conversion: %v is not %v: missing method %s", + err = fr.runtimeError(instr, fmt.Sprintf("interface conversion: %v is not %v: missing method %s", rt, instr.AssertedType, meth.Name())) } } } else if typ.PkgPath() == rt.PkgPath() && typ.Name() == rt.Name() { - t1, ok1 := i.findType(typ, false) - t2, ok2 := i.findType(rt, false) + t1, ok1 := fr.interp.findType(typ, false) + t2, ok2 := fr.interp.findType(rt, false) if ok1 && ok2 { n1, ok1 := t1.(*types.Named) n2, ok2 := t2.(*types.Named) if ok1 && ok2 && n1.Obj().Parent() != n2.Obj().Parent() { - err = runtimeError(fmt.Sprintf("interface conversion: %v is %v, not %v (types from different scopes)", xtyp, rt, typ)) + err = fr.runtimeError(instr, fmt.Sprintf("interface conversion: %v is %v, not %v (types from different scopes)", xtyp, rt, typ)) } } } diff --git a/pkg/_go123/iter/iter.go b/pkg/_go123/iter/iter.go new file mode 100644 index 00000000..18b63c9a --- /dev/null +++ b/pkg/_go123/iter/iter.go @@ -0,0 +1,454 @@ +// Copyright 2023 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +Package iter provides basic definitions and operations related to +iterators over sequences. + +# Iterators + +An iterator is a function that passes successive elements of a +sequence to a callback function, conventionally named yield. +The function stops either when the sequence is finished or +when yield returns false, indicating to stop the iteration early. +This package defines [Seq] and [Seq2] +(pronounced like seek—the first syllable of sequence) +as shorthands for iterators that pass 1 or 2 values per sequence element +to yield: + + type ( + Seq[V any] func(yield func(V) bool) + Seq2[K, V any] func(yield func(K, V) bool) + ) + +Seq2 represents a sequence of paired values, conventionally key-value +or index-value pairs. + +Yield returns true if the iterator should continue with the next +element in the sequence, false if it should stop. + +Iterator functions are most often called by a range loop, as in: + + func PrintAll[V any](seq iter.Seq[V]) { + for v := range seq { + fmt.Println(v) + } + } + +# Naming Conventions + +Iterator functions and methods are named for the sequence being walked: + + // All returns an iterator over all elements in s. + func (s *Set[V]) All() iter.Seq[V] + +The iterator method on a collection type is conventionally named All, +because it iterates a sequence of all the values in the collection. + +For a type containing multiple possible sequences, the iterator's name +can indicate which sequence is being provided: + + // Cities returns an iterator over the major cities in the country. + func (c *Country) Cities() iter.Seq[*City] + + // Languages returns an iterator over the official spoken languages of the country. + func (c *Country) Languages() iter.Seq[string] + +If an iterator requires additional configuration, the constructor function +can take additional configuration arguments: + + // Scan returns an iterator over key-value pairs with min ≤ key ≤ max. + func (m *Map[K, V]) Scan(min, max K) iter.Seq2[K, V] + + // Split returns an iterator over the (possibly-empty) substrings of s + // separated by sep. + func Split(s, sep string) iter.Seq[string] + +When there are multiple possible iteration orders, the method name may +indicate that order: + + // All returns an iterator over the list from head to tail. + func (l *List[V]) All() iter.Seq[V] + + // Backward returns an iterator over the list from tail to head. + func (l *List[V]) Backward() iter.Seq[V] + + // Preorder returns an iterator over all nodes of the syntax tree + // beneath (and including) the specified root, in depth-first preorder, + // visiting a parent node before its children. + func Preorder(root Node) iter.Seq[Node] + +# Single-Use Iterators + +Most iterators provide the ability to walk an entire sequence: +when called, the iterator does any setup necessary to start the +sequence, then calls yield on successive elements of the sequence, +and then cleans up before returning. Calling the iterator again +walks the sequence again. + +Some iterators break that convention, providing the ability to walk a +sequence only once. These “single-use iterators” typically report values +from a data stream that cannot be rewound to start over. +Calling the iterator again after stopping early may continue the +stream, but calling it again after the sequence is finished will yield +no values at all. Doc comments for functions or methods that return +single-use iterators should document this fact: + + // Lines returns an iterator over lines read from r. + // It returns a single-use iterator. + func (r *Reader) Lines() iter.Seq[string] + +# Pulling Values + +Functions and methods that accept or return iterators +should use the standard [Seq] or [Seq2] types, to ensure +compatibility with range loops and other iterator adapters. +The standard iterators can be thought of as “push iterators”, which +push values to the yield function. + +Sometimes a range loop is not the most natural way to consume values +of the sequence. In this case, [Pull] converts a standard push iterator +to a “pull iterator”, which can be called to pull one value at a time +from the sequence. [Pull] starts an iterator and returns a pair +of functions—next and stop—which return the next value from the iterator +and stop it, respectively. + +For example: + + // Pairs returns an iterator over successive pairs of values from seq. + func Pairs[V any](seq iter.Seq[V]) iter.Seq2[V, V] { + return func(yield func(V, V) bool) { + next, stop := iter.Pull(seq) + defer stop() + for { + v1, ok1 := next() + if !ok1 { + return + } + v2, ok2 := next() + // If ok2 is false, v2 should be the + // zero value; yield one last pair. + if !yield(v1, v2) { + return + } + if !ok2 { + return + } + } + } + } + +If clients do not consume the sequence to completion, they must call stop, +which allows the iterator function to finish and return. As shown in +the example, the conventional way to ensure this is to use defer. + +# Standard Library Usage + +A few packages in the standard library provide iterator-based APIs, +most notably the [maps] and [slices] packages. +For example, [maps.Keys] returns an iterator over the keys of a map, +while [slices.Sorted] collects the values of an iterator into a slice, +sorts them, and returns the slice, so to iterate over the sorted keys of a map: + + for _, key := range slices.Sorted(maps.Keys(m)) { + ... + } + +# Mutation + +Iterators provide only the values of the sequence, not any direct way +to modify it. If an iterator wishes to provide a mechanism for modifying +a sequence during iteration, the usual approach is to define a position type +with the extra operations and then provide an iterator over positions. + +For example, a tree implementation might provide: + + // Positions returns an iterator over positions in the sequence. + func (t *Tree[V]) Positions() iter.Seq[*Pos] + + // A Pos represents a position in the sequence. + // It is only valid during the yield call it is passed to. + type Pos[V any] struct { ... } + + // Pos returns the value at the cursor. + func (p *Pos[V]) Value() V + + // Delete deletes the value at this point in the iteration. + func (p *Pos[V]) Delete() + + // Set changes the value v at the cursor. + func (p *Pos[V]) Set(v V) + +And then a client could delete boring values from the tree using: + + for p := range t.Positions() { + if boring(p.Value()) { + p.Delete() + } + } +*/ +package iter + +import ( + "runtime" + "unsafe" + + "github.com/goplus/igop/race" +) + +// Seq is an iterator over sequences of individual values. +// When called as seq(yield), seq calls yield(v) for each value v in the sequence, +// stopping early if yield returns false. +// See the [iter] package documentation for more details. +type Seq[V any] func(yield func(V) bool) + +// Seq2 is an iterator over sequences of pairs of values, most commonly key-value pairs. +// When called as seq(yield), seq calls yield(k, v) for each pair (k, v) in the sequence, +// stopping early if yield returns false. +// See the [iter] package documentation for more details. +type Seq2[K, V any] func(yield func(K, V) bool) + +type coro = struct{} + +//go:linkname newcoro runtime.newcoro +func newcoro(fn func(*coro)) *coro + +//go:linkname coroswitch runtime.coroswitch +func coroswitch(*coro) + +// Pull converts the “push-style” iterator sequence seq +// into a “pull-style” iterator accessed by the two functions +// next and stop. +// +// Next returns the next value in the sequence +// and a boolean indicating whether the value is valid. +// When the sequence is over, next returns the zero V and false. +// It is valid to call next after reaching the end of the sequence +// or after calling stop. These calls will continue +// to return the zero V and false. +// +// Stop ends the iteration. It must be called when the caller is +// no longer interested in next values and next has not yet +// signaled that the sequence is over (with a false boolean return). +// It is valid to call stop multiple times and when next has +// already returned false. Typically, callers should “defer stop()”. +// +// It is an error to call next or stop from multiple goroutines +// simultaneously. +// +// If the iterator panics during a call to next (or stop), +// then next (or stop) itself panics with the same value. +func Pull[V any](seq Seq[V]) (next func() (V, bool), stop func()) { + var ( + v V + ok bool + done bool + yieldNext bool + racer int + panicValue any + seqDone bool // to detect Goexit + ) + c := newcoro(func(c *coro) { + race.Acquire(unsafe.Pointer(&racer)) + if done { + race.Release(unsafe.Pointer(&racer)) + return + } + yield := func(v1 V) bool { + if done { + return false + } + if !yieldNext { + panic("iter.Pull: yield called again before next") + } + yieldNext = false + v, ok = v1, true + race.Release(unsafe.Pointer(&racer)) + coroswitch(c) + race.Acquire(unsafe.Pointer(&racer)) + return !done + } + // Recover and propagate panics from seq. + defer func() { + if p := recover(); p != nil { + panicValue = p + } else if !seqDone { + panicValue = goexitPanicValue + } + done = true // Invalidate iterator + race.Release(unsafe.Pointer(&racer)) + }() + seq(yield) + var v0 V + v, ok = v0, false + seqDone = true + }) + next = func() (v1 V, ok1 bool) { + race.Write(unsafe.Pointer(&racer)) // detect races + + if done { + return + } + if yieldNext { + panic("iter.Pull: next called again before yield") + } + yieldNext = true + race.Release(unsafe.Pointer(&racer)) + coroswitch(c) + race.Acquire(unsafe.Pointer(&racer)) + + // Propagate panics and goexits from seq. + if panicValue != nil { + if panicValue == goexitPanicValue { + // Propagate runtime.Goexit from seq. + runtime.Goexit() + } else { + panic(panicValue) + } + } + return v, ok + } + stop = func() { + race.Write(unsafe.Pointer(&racer)) // detect races + + if !done { + done = true + race.Release(unsafe.Pointer(&racer)) + coroswitch(c) + race.Acquire(unsafe.Pointer(&racer)) + + // Propagate panics and goexits from seq. + if panicValue != nil { + if panicValue == goexitPanicValue { + // Propagate runtime.Goexit from seq. + runtime.Goexit() + } else { + panic(panicValue) + } + } + } + } + return next, stop +} + +// Pull2 converts the “push-style” iterator sequence seq +// into a “pull-style” iterator accessed by the two functions +// next and stop. +// +// Next returns the next pair in the sequence +// and a boolean indicating whether the pair is valid. +// When the sequence is over, next returns a pair of zero values and false. +// It is valid to call next after reaching the end of the sequence +// or after calling stop. These calls will continue +// to return a pair of zero values and false. +// +// Stop ends the iteration. It must be called when the caller is +// no longer interested in next values and next has not yet +// signaled that the sequence is over (with a false boolean return). +// It is valid to call stop multiple times and when next has +// already returned false. Typically, callers should “defer stop()”. +// +// It is an error to call next or stop from multiple goroutines +// simultaneously. +// +// If the iterator panics during a call to next (or stop), +// then next (or stop) itself panics with the same value. +func Pull2[K, V any](seq Seq2[K, V]) (next func() (K, V, bool), stop func()) { + var ( + k K + v V + ok bool + done bool + yieldNext bool + racer int + panicValue any + seqDone bool + ) + c := newcoro(func(c *coro) { + race.Acquire(unsafe.Pointer(&racer)) + if done { + race.Release(unsafe.Pointer(&racer)) + return + } + yield := func(k1 K, v1 V) bool { + if done { + return false + } + if !yieldNext { + panic("iter.Pull2: yield called again before next") + } + yieldNext = false + k, v, ok = k1, v1, true + race.Release(unsafe.Pointer(&racer)) + coroswitch(c) + race.Acquire(unsafe.Pointer(&racer)) + return !done + } + // Recover and propagate panics from seq. + defer func() { + if p := recover(); p != nil { + panicValue = p + } else if !seqDone { + panicValue = goexitPanicValue + } + done = true // Invalidate iterator. + race.Release(unsafe.Pointer(&racer)) + }() + seq(yield) + var k0 K + var v0 V + k, v, ok = k0, v0, false + seqDone = true + }) + next = func() (k1 K, v1 V, ok1 bool) { + race.Write(unsafe.Pointer(&racer)) // detect races + + if done { + return + } + if yieldNext { + panic("iter.Pull2: next called again before yield") + } + yieldNext = true + race.Release(unsafe.Pointer(&racer)) + coroswitch(c) + race.Acquire(unsafe.Pointer(&racer)) + + // Propagate panics and goexits from seq. + if panicValue != nil { + if panicValue == goexitPanicValue { + // Propagate runtime.Goexit from seq. + runtime.Goexit() + } else { + panic(panicValue) + } + } + return k, v, ok + } + stop = func() { + race.Write(unsafe.Pointer(&racer)) // detect races + + if !done { + done = true + race.Release(unsafe.Pointer(&racer)) + coroswitch(c) + race.Acquire(unsafe.Pointer(&racer)) + + // Propagate panics and goexits from seq. + if panicValue != nil { + if panicValue == goexitPanicValue { + // Propagate runtime.Goexit from seq. + runtime.Goexit() + } else { + panic(panicValue) + } + } + } + } + return next, stop +} + +// goexitPanicValue is a sentinel value indicating that an iterator +// exited via runtime.Goexit. +var goexitPanicValue any = new(int) diff --git a/pkg/_go123/iter_export.go b/pkg/_go123/iter_export.go new file mode 100644 index 00000000..4f655840 --- /dev/null +++ b/pkg/_go123/iter_export.go @@ -0,0 +1,48 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package iter + +import ( + _ "iter" + "reflect" + _ "unsafe" + + "github.com/goplus/igop" + _ "github.com/goplus/igop/pkg/github.com/goplus/igop/race" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "iter", + Path: "iter", + Deps: map[string]string{ + "github.com/goplus/igop/pkg/internal/race": "race", + "runtime": "runtime", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "coroswitch": reflect.ValueOf(_coroswitch), + "newcoro": reflect.ValueOf(_newcoro), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + Source: source, + }) +} + +type coro = struct{} + +//go:linkname _newcoro runtime.newcoro +func _newcoro(fn func(*coro)) *coro + +//go:linkname _coroswitch runtime.coroswitch +func _coroswitch(*coro) + +var source = "package iter\n\nimport (\n\t\"runtime\"\n\t\"unsafe\"\n\t\"github.com/goplus/igop/race\"\n)\n\ntype Seq[V any] func(yield func(V) bool)\n\ntype Seq2[K, V any] func(yield func(K, V) bool)\n\ntype coro = struct{}\n\nfunc newcoro(fn func(*coro)) *coro\n\nfunc coroswitch(*coro)\n\nfunc Pull[V any](seq Seq[V]) (next func() (V, bool), stop func()) {\n\tvar (\n\t\tv\t\tV\n\t\tok\t\tbool\n\t\tdone\t\tbool\n\t\tyieldNext\tbool\n\t\tracer\t\tint\n\t\tpanicValue\tany\n\t\tseqDone\t\tbool\n\t)\n\tc := newcoro(func(c *coro) {\n\t\trace.Acquire(unsafe.Pointer(&racer))\n\t\tif done {\n\t\t\trace.Release(unsafe.Pointer(&racer))\n\t\t\treturn\n\t\t}\n\t\tyield := func(v1 V) bool {\n\t\t\tif done {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tif !yieldNext {\n\t\t\t\tpanic(\"iter.Pull: yield called again before next\")\n\t\t\t}\n\t\t\tyieldNext = false\n\t\t\tv, ok = v1, true\n\t\t\trace.Release(unsafe.Pointer(&racer))\n\t\t\tcoroswitch(c)\n\t\t\trace.Acquire(unsafe.Pointer(&racer))\n\t\t\treturn !done\n\t\t}\n\n\t\tdefer func() {\n\t\t\tif p := recover(); p != nil {\n\t\t\t\tpanicValue = p\n\t\t\t} else if !seqDone {\n\t\t\t\tpanicValue = goexitPanicValue\n\t\t\t}\n\t\t\tdone = true\n\t\t\trace.Release(unsafe.Pointer(&racer))\n\t\t}()\n\t\tseq(yield)\n\t\tvar v0 V\n\t\tv, ok = v0, false\n\t\tseqDone = true\n\t})\n\tnext = func() (v1 V, ok1 bool) {\n\t\trace.Write(unsafe.Pointer(&racer))\n\n\t\tif done {\n\t\t\treturn\n\t\t}\n\t\tif yieldNext {\n\t\t\tpanic(\"iter.Pull: next called again before yield\")\n\t\t}\n\t\tyieldNext = true\n\t\trace.Release(unsafe.Pointer(&racer))\n\t\tcoroswitch(c)\n\t\trace.Acquire(unsafe.Pointer(&racer))\n\n\t\tif panicValue != nil {\n\t\t\tif panicValue == goexitPanicValue {\n\n\t\t\t\truntime.Goexit()\n\t\t\t} else {\n\t\t\t\tpanic(panicValue)\n\t\t\t}\n\t\t}\n\t\treturn v, ok\n\t}\n\tstop = func() {\n\t\trace.Write(unsafe.Pointer(&racer))\n\n\t\tif !done {\n\t\t\tdone = true\n\t\t\trace.Release(unsafe.Pointer(&racer))\n\t\t\tcoroswitch(c)\n\t\t\trace.Acquire(unsafe.Pointer(&racer))\n\n\t\t\tif panicValue != nil {\n\t\t\t\tif panicValue == goexitPanicValue {\n\n\t\t\t\t\truntime.Goexit()\n\t\t\t\t} else {\n\t\t\t\t\tpanic(panicValue)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn next, stop\n}\n\nfunc Pull2[K, V any](seq Seq2[K, V]) (next func() (K, V, bool), stop func()) {\n\tvar (\n\t\tk\t\tK\n\t\tv\t\tV\n\t\tok\t\tbool\n\t\tdone\t\tbool\n\t\tyieldNext\tbool\n\t\tracer\t\tint\n\t\tpanicValue\tany\n\t\tseqDone\t\tbool\n\t)\n\tc := newcoro(func(c *coro) {\n\t\trace.Acquire(unsafe.Pointer(&racer))\n\t\tif done {\n\t\t\trace.Release(unsafe.Pointer(&racer))\n\t\t\treturn\n\t\t}\n\t\tyield := func(k1 K, v1 V) bool {\n\t\t\tif done {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tif !yieldNext {\n\t\t\t\tpanic(\"iter.Pull2: yield called again before next\")\n\t\t\t}\n\t\t\tyieldNext = false\n\t\t\tk, v, ok = k1, v1, true\n\t\t\trace.Release(unsafe.Pointer(&racer))\n\t\t\tcoroswitch(c)\n\t\t\trace.Acquire(unsafe.Pointer(&racer))\n\t\t\treturn !done\n\t\t}\n\n\t\tdefer func() {\n\t\t\tif p := recover(); p != nil {\n\t\t\t\tpanicValue = p\n\t\t\t} else if !seqDone {\n\t\t\t\tpanicValue = goexitPanicValue\n\t\t\t}\n\t\t\tdone = true\n\t\t\trace.Release(unsafe.Pointer(&racer))\n\t\t}()\n\t\tseq(yield)\n\t\tvar k0 K\n\t\tvar v0 V\n\t\tk, v, ok = k0, v0, false\n\t\tseqDone = true\n\t})\n\tnext = func() (k1 K, v1 V, ok1 bool) {\n\t\trace.Write(unsafe.Pointer(&racer))\n\n\t\tif done {\n\t\t\treturn\n\t\t}\n\t\tif yieldNext {\n\t\t\tpanic(\"iter.Pull2: next called again before yield\")\n\t\t}\n\t\tyieldNext = true\n\t\trace.Release(unsafe.Pointer(&racer))\n\t\tcoroswitch(c)\n\t\trace.Acquire(unsafe.Pointer(&racer))\n\n\t\tif panicValue != nil {\n\t\t\tif panicValue == goexitPanicValue {\n\n\t\t\t\truntime.Goexit()\n\t\t\t} else {\n\t\t\t\tpanic(panicValue)\n\t\t\t}\n\t\t}\n\t\treturn k, v, ok\n\t}\n\tstop = func() {\n\t\trace.Write(unsafe.Pointer(&racer))\n\n\t\tif !done {\n\t\t\tdone = true\n\t\t\trace.Release(unsafe.Pointer(&racer))\n\t\t\tcoroswitch(c)\n\t\t\trace.Acquire(unsafe.Pointer(&racer))\n\n\t\t\tif panicValue != nil {\n\t\t\t\tif panicValue == goexitPanicValue {\n\n\t\t\t\t\truntime.Goexit()\n\t\t\t\t} else {\n\t\t\t\t\tpanic(panicValue)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn next, stop\n}\n\nvar goexitPanicValue any = new(int)\n" diff --git a/pkg/_go123/maps_export.go b/pkg/_go123/maps_export.go new file mode 100755 index 00000000..b684cdcb --- /dev/null +++ b/pkg/_go123/maps_export.go @@ -0,0 +1,40 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package maps + +import ( + _ "maps" + "reflect" + _ "unsafe" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "maps", + Path: "maps", + Deps: map[string]string{ + "iter": "iter", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "clone": reflect.ValueOf(_clone), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + Source: source, + }) +} + +//go:linkname _clone maps.clone +func _clone(m any) any + +var source = "package maps\n\nimport (\n\t\"iter\"\n\t_ \"unsafe\"\n)\n\nfunc All[Map ~map[K]V, K comparable, V any](m Map) iter.Seq2[K, V] {\n\treturn func(yield func(K, V) bool) {\n\t\tfor k, v := range m {\n\t\t\tif !yield(k, v) {\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc Keys[Map ~map[K]V, K comparable, V any](m Map) iter.Seq[K] {\n\treturn func(yield func(K) bool) {\n\t\tfor k := range m {\n\t\t\tif !yield(k) {\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc Values[Map ~map[K]V, K comparable, V any](m Map) iter.Seq[V] {\n\treturn func(yield func(V) bool) {\n\t\tfor _, v := range m {\n\t\t\tif !yield(v) {\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc Insert[Map ~map[K]V, K comparable, V any](m Map, seq iter.Seq2[K, V]) {\n\tfor k, v := range seq {\n\t\tm[k] = v\n\t}\n}\n\nfunc Collect[K comparable, V any](seq iter.Seq2[K, V]) map[K]V {\n\tm := make(map[K]V)\n\tInsert(m, seq)\n\treturn m\n}\nfunc Equal[M1, M2 ~map[K]V, K, V comparable](m1 M1, m2 M2) bool {\n\tif len(m1) != len(m2) {\n\t\treturn false\n\t}\n\tfor k, v1 := range m1 {\n\t\tif v2, ok := m2[k]; !ok || v1 != v2 {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nfunc EqualFunc[M1 ~map[K]V1, M2 ~map[K]V2, K comparable, V1, V2 any](m1 M1, m2 M2, eq func(V1, V2) bool) bool {\n\tif len(m1) != len(m2) {\n\t\treturn false\n\t}\n\tfor k, v1 := range m1 {\n\t\tif v2, ok := m2[k]; !ok || !eq(v1, v2) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nfunc clone(m any) any\n\nfunc Clone[M ~map[K]V, K comparable, V any](m M) M {\n\n\tif m == nil {\n\t\treturn nil\n\t}\n\treturn clone(m).(M)\n}\n\nfunc Copy[M1 ~map[K]V, M2 ~map[K]V, K comparable, V any](dst M1, src M2) {\n\tfor k, v := range src {\n\t\tdst[k] = v\n\t}\n}\n\nfunc DeleteFunc[M ~map[K]V, K comparable, V any](m M, del func(K, V) bool) {\n\tfor k, v := range m {\n\t\tif del(k, v) {\n\t\t\tdelete(m, k)\n\t\t}\n\t}\n}\n" diff --git a/pkg/archive/tar/go121_export.go b/pkg/archive/tar/go121_export.go index 53baa537..a117a56e 100755 --- a/pkg/archive/tar/go121_export.go +++ b/pkg/archive/tar/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package tar diff --git a/pkg/archive/tar/go122_export.go b/pkg/archive/tar/go122_export.go new file mode 100755 index 00000000..13d6f01c --- /dev/null +++ b/pkg/archive/tar/go122_export.go @@ -0,0 +1,84 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package tar + +import ( + q "archive/tar" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "tar", + Path: "archive/tar", + Deps: map[string]string{ + "bytes": "bytes", + "errors": "errors", + "fmt": "fmt", + "internal/godebug": "godebug", + "io": "io", + "io/fs": "fs", + "math": "math", + "os/user": "user", + "path": "path", + "path/filepath": "filepath", + "reflect": "reflect", + "runtime": "runtime", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "syscall": "syscall", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Format": reflect.TypeOf((*q.Format)(nil)).Elem(), + "Header": reflect.TypeOf((*q.Header)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrFieldTooLong": reflect.ValueOf(&q.ErrFieldTooLong), + "ErrHeader": reflect.ValueOf(&q.ErrHeader), + "ErrInsecurePath": reflect.ValueOf(&q.ErrInsecurePath), + "ErrWriteAfterClose": reflect.ValueOf(&q.ErrWriteAfterClose), + "ErrWriteTooLong": reflect.ValueOf(&q.ErrWriteTooLong), + }, + Funcs: map[string]reflect.Value{ + "FileInfoHeader": reflect.ValueOf(q.FileInfoHeader), + "NewReader": reflect.ValueOf(q.NewReader), + "NewWriter": reflect.ValueOf(q.NewWriter), + }, + TypedConsts: map[string]igop.TypedConst{ + "FormatGNU": {reflect.TypeOf(q.FormatGNU), constant.MakeInt64(int64(q.FormatGNU))}, + "FormatPAX": {reflect.TypeOf(q.FormatPAX), constant.MakeInt64(int64(q.FormatPAX))}, + "FormatUSTAR": {reflect.TypeOf(q.FormatUSTAR), constant.MakeInt64(int64(q.FormatUSTAR))}, + "FormatUnknown": {reflect.TypeOf(q.FormatUnknown), constant.MakeInt64(int64(q.FormatUnknown))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "TypeBlock": {"untyped rune", constant.MakeInt64(int64(q.TypeBlock))}, + "TypeChar": {"untyped rune", constant.MakeInt64(int64(q.TypeChar))}, + "TypeCont": {"untyped rune", constant.MakeInt64(int64(q.TypeCont))}, + "TypeDir": {"untyped rune", constant.MakeInt64(int64(q.TypeDir))}, + "TypeFifo": {"untyped rune", constant.MakeInt64(int64(q.TypeFifo))}, + "TypeGNULongLink": {"untyped rune", constant.MakeInt64(int64(q.TypeGNULongLink))}, + "TypeGNULongName": {"untyped rune", constant.MakeInt64(int64(q.TypeGNULongName))}, + "TypeGNUSparse": {"untyped rune", constant.MakeInt64(int64(q.TypeGNUSparse))}, + "TypeLink": {"untyped rune", constant.MakeInt64(int64(q.TypeLink))}, + "TypeReg": {"untyped rune", constant.MakeInt64(int64(q.TypeReg))}, + "TypeRegA": {"untyped rune", constant.MakeInt64(int64(q.TypeRegA))}, + "TypeSymlink": {"untyped rune", constant.MakeInt64(int64(q.TypeSymlink))}, + "TypeXGlobalHeader": {"untyped rune", constant.MakeInt64(int64(q.TypeXGlobalHeader))}, + "TypeXHeader": {"untyped rune", constant.MakeInt64(int64(q.TypeXHeader))}, + }, + }) +} diff --git a/pkg/archive/tar/go123_export.go b/pkg/archive/tar/go123_export.go new file mode 100755 index 00000000..2ff8afeb --- /dev/null +++ b/pkg/archive/tar/go123_export.go @@ -0,0 +1,86 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package tar + +import ( + q "archive/tar" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "tar", + Path: "archive/tar", + Deps: map[string]string{ + "bytes": "bytes", + "errors": "errors", + "fmt": "fmt", + "internal/godebug": "godebug", + "io": "io", + "io/fs": "fs", + "math": "math", + "os/user": "user", + "path": "path", + "path/filepath": "filepath", + "reflect": "reflect", + "runtime": "runtime", + "slices": "slices", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "syscall": "syscall", + "time": "time", + }, + Interfaces: map[string]reflect.Type{ + "FileInfoNames": reflect.TypeOf((*q.FileInfoNames)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Format": reflect.TypeOf((*q.Format)(nil)).Elem(), + "Header": reflect.TypeOf((*q.Header)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrFieldTooLong": reflect.ValueOf(&q.ErrFieldTooLong), + "ErrHeader": reflect.ValueOf(&q.ErrHeader), + "ErrInsecurePath": reflect.ValueOf(&q.ErrInsecurePath), + "ErrWriteAfterClose": reflect.ValueOf(&q.ErrWriteAfterClose), + "ErrWriteTooLong": reflect.ValueOf(&q.ErrWriteTooLong), + }, + Funcs: map[string]reflect.Value{ + "FileInfoHeader": reflect.ValueOf(q.FileInfoHeader), + "NewReader": reflect.ValueOf(q.NewReader), + "NewWriter": reflect.ValueOf(q.NewWriter), + }, + TypedConsts: map[string]igop.TypedConst{ + "FormatGNU": {reflect.TypeOf(q.FormatGNU), constant.MakeInt64(int64(q.FormatGNU))}, + "FormatPAX": {reflect.TypeOf(q.FormatPAX), constant.MakeInt64(int64(q.FormatPAX))}, + "FormatUSTAR": {reflect.TypeOf(q.FormatUSTAR), constant.MakeInt64(int64(q.FormatUSTAR))}, + "FormatUnknown": {reflect.TypeOf(q.FormatUnknown), constant.MakeInt64(int64(q.FormatUnknown))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "TypeBlock": {"untyped rune", constant.MakeInt64(int64(q.TypeBlock))}, + "TypeChar": {"untyped rune", constant.MakeInt64(int64(q.TypeChar))}, + "TypeCont": {"untyped rune", constant.MakeInt64(int64(q.TypeCont))}, + "TypeDir": {"untyped rune", constant.MakeInt64(int64(q.TypeDir))}, + "TypeFifo": {"untyped rune", constant.MakeInt64(int64(q.TypeFifo))}, + "TypeGNULongLink": {"untyped rune", constant.MakeInt64(int64(q.TypeGNULongLink))}, + "TypeGNULongName": {"untyped rune", constant.MakeInt64(int64(q.TypeGNULongName))}, + "TypeGNUSparse": {"untyped rune", constant.MakeInt64(int64(q.TypeGNUSparse))}, + "TypeLink": {"untyped rune", constant.MakeInt64(int64(q.TypeLink))}, + "TypeReg": {"untyped rune", constant.MakeInt64(int64(q.TypeReg))}, + "TypeRegA": {"untyped rune", constant.MakeInt64(int64(q.TypeRegA))}, + "TypeSymlink": {"untyped rune", constant.MakeInt64(int64(q.TypeSymlink))}, + "TypeXGlobalHeader": {"untyped rune", constant.MakeInt64(int64(q.TypeXGlobalHeader))}, + "TypeXHeader": {"untyped rune", constant.MakeInt64(int64(q.TypeXHeader))}, + }, + }) +} diff --git a/pkg/archive/zip/go121_export.go b/pkg/archive/zip/go121_export.go index 6323b41b..1c785369 100755 --- a/pkg/archive/zip/go121_export.go +++ b/pkg/archive/zip/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package zip diff --git a/pkg/archive/zip/go122_export.go b/pkg/archive/zip/go122_export.go new file mode 100755 index 00000000..d9a79b13 --- /dev/null +++ b/pkg/archive/zip/go122_export.go @@ -0,0 +1,71 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package zip + +import ( + q "archive/zip" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "zip", + Path: "archive/zip", + Deps: map[string]string{ + "bufio": "bufio", + "compress/flate": "flate", + "encoding/binary": "binary", + "errors": "errors", + "hash": "hash", + "hash/crc32": "crc32", + "internal/godebug": "godebug", + "io": "io", + "io/fs": "fs", + "os": "os", + "path": "path", + "path/filepath": "filepath", + "sort": "sort", + "strings": "strings", + "sync": "sync", + "time": "time", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Compressor": reflect.TypeOf((*q.Compressor)(nil)).Elem(), + "Decompressor": reflect.TypeOf((*q.Decompressor)(nil)).Elem(), + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "FileHeader": reflect.TypeOf((*q.FileHeader)(nil)).Elem(), + "ReadCloser": reflect.TypeOf((*q.ReadCloser)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrAlgorithm": reflect.ValueOf(&q.ErrAlgorithm), + "ErrChecksum": reflect.ValueOf(&q.ErrChecksum), + "ErrFormat": reflect.ValueOf(&q.ErrFormat), + "ErrInsecurePath": reflect.ValueOf(&q.ErrInsecurePath), + }, + Funcs: map[string]reflect.Value{ + "FileInfoHeader": reflect.ValueOf(q.FileInfoHeader), + "NewReader": reflect.ValueOf(q.NewReader), + "NewWriter": reflect.ValueOf(q.NewWriter), + "OpenReader": reflect.ValueOf(q.OpenReader), + "RegisterCompressor": reflect.ValueOf(q.RegisterCompressor), + "RegisterDecompressor": reflect.ValueOf(q.RegisterDecompressor), + }, + TypedConsts: map[string]igop.TypedConst{ + "Deflate": {reflect.TypeOf(q.Deflate), constant.MakeInt64(int64(q.Deflate))}, + "Store": {reflect.TypeOf(q.Store), constant.MakeInt64(int64(q.Store))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/archive/zip/go123_export.go b/pkg/archive/zip/go123_export.go new file mode 100755 index 00000000..096c12e2 --- /dev/null +++ b/pkg/archive/zip/go123_export.go @@ -0,0 +1,71 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package zip + +import ( + q "archive/zip" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "zip", + Path: "archive/zip", + Deps: map[string]string{ + "bufio": "bufio", + "compress/flate": "flate", + "encoding/binary": "binary", + "errors": "errors", + "hash": "hash", + "hash/crc32": "crc32", + "internal/godebug": "godebug", + "io": "io", + "io/fs": "fs", + "os": "os", + "path": "path", + "path/filepath": "filepath", + "slices": "slices", + "strings": "strings", + "sync": "sync", + "time": "time", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Compressor": reflect.TypeOf((*q.Compressor)(nil)).Elem(), + "Decompressor": reflect.TypeOf((*q.Decompressor)(nil)).Elem(), + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "FileHeader": reflect.TypeOf((*q.FileHeader)(nil)).Elem(), + "ReadCloser": reflect.TypeOf((*q.ReadCloser)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrAlgorithm": reflect.ValueOf(&q.ErrAlgorithm), + "ErrChecksum": reflect.ValueOf(&q.ErrChecksum), + "ErrFormat": reflect.ValueOf(&q.ErrFormat), + "ErrInsecurePath": reflect.ValueOf(&q.ErrInsecurePath), + }, + Funcs: map[string]reflect.Value{ + "FileInfoHeader": reflect.ValueOf(q.FileInfoHeader), + "NewReader": reflect.ValueOf(q.NewReader), + "NewWriter": reflect.ValueOf(q.NewWriter), + "OpenReader": reflect.ValueOf(q.OpenReader), + "RegisterCompressor": reflect.ValueOf(q.RegisterCompressor), + "RegisterDecompressor": reflect.ValueOf(q.RegisterDecompressor), + }, + TypedConsts: map[string]igop.TypedConst{ + "Deflate": {reflect.TypeOf(q.Deflate), constant.MakeInt64(int64(q.Deflate))}, + "Store": {reflect.TypeOf(q.Store), constant.MakeInt64(int64(q.Store))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/bufio/go121_export.go b/pkg/bufio/go121_export.go index 40c2f57e..84f3caa0 100755 --- a/pkg/bufio/go121_export.go +++ b/pkg/bufio/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package bufio diff --git a/pkg/bufio/go122_export.go b/pkg/bufio/go122_export.go new file mode 100755 index 00000000..2c9e18de --- /dev/null +++ b/pkg/bufio/go122_export.go @@ -0,0 +1,65 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package bufio + +import ( + q "bufio" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "bufio", + Path: "bufio", + Deps: map[string]string{ + "bytes": "bytes", + "errors": "errors", + "io": "io", + "strings": "strings", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "ReadWriter": reflect.TypeOf((*q.ReadWriter)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Scanner": reflect.TypeOf((*q.Scanner)(nil)).Elem(), + "SplitFunc": reflect.TypeOf((*q.SplitFunc)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrAdvanceTooFar": reflect.ValueOf(&q.ErrAdvanceTooFar), + "ErrBadReadCount": reflect.ValueOf(&q.ErrBadReadCount), + "ErrBufferFull": reflect.ValueOf(&q.ErrBufferFull), + "ErrFinalToken": reflect.ValueOf(&q.ErrFinalToken), + "ErrInvalidUnreadByte": reflect.ValueOf(&q.ErrInvalidUnreadByte), + "ErrInvalidUnreadRune": reflect.ValueOf(&q.ErrInvalidUnreadRune), + "ErrNegativeAdvance": reflect.ValueOf(&q.ErrNegativeAdvance), + "ErrNegativeCount": reflect.ValueOf(&q.ErrNegativeCount), + "ErrTooLong": reflect.ValueOf(&q.ErrTooLong), + }, + Funcs: map[string]reflect.Value{ + "NewReadWriter": reflect.ValueOf(q.NewReadWriter), + "NewReader": reflect.ValueOf(q.NewReader), + "NewReaderSize": reflect.ValueOf(q.NewReaderSize), + "NewScanner": reflect.ValueOf(q.NewScanner), + "NewWriter": reflect.ValueOf(q.NewWriter), + "NewWriterSize": reflect.ValueOf(q.NewWriterSize), + "ScanBytes": reflect.ValueOf(q.ScanBytes), + "ScanLines": reflect.ValueOf(q.ScanLines), + "ScanRunes": reflect.ValueOf(q.ScanRunes), + "ScanWords": reflect.ValueOf(q.ScanWords), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "MaxScanTokenSize": {"untyped int", constant.MakeInt64(int64(q.MaxScanTokenSize))}, + }, + }) +} diff --git a/pkg/bufio/go123_export.go b/pkg/bufio/go123_export.go new file mode 100755 index 00000000..7002a338 --- /dev/null +++ b/pkg/bufio/go123_export.go @@ -0,0 +1,65 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package bufio + +import ( + q "bufio" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "bufio", + Path: "bufio", + Deps: map[string]string{ + "bytes": "bytes", + "errors": "errors", + "io": "io", + "strings": "strings", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "ReadWriter": reflect.TypeOf((*q.ReadWriter)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Scanner": reflect.TypeOf((*q.Scanner)(nil)).Elem(), + "SplitFunc": reflect.TypeOf((*q.SplitFunc)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrAdvanceTooFar": reflect.ValueOf(&q.ErrAdvanceTooFar), + "ErrBadReadCount": reflect.ValueOf(&q.ErrBadReadCount), + "ErrBufferFull": reflect.ValueOf(&q.ErrBufferFull), + "ErrFinalToken": reflect.ValueOf(&q.ErrFinalToken), + "ErrInvalidUnreadByte": reflect.ValueOf(&q.ErrInvalidUnreadByte), + "ErrInvalidUnreadRune": reflect.ValueOf(&q.ErrInvalidUnreadRune), + "ErrNegativeAdvance": reflect.ValueOf(&q.ErrNegativeAdvance), + "ErrNegativeCount": reflect.ValueOf(&q.ErrNegativeCount), + "ErrTooLong": reflect.ValueOf(&q.ErrTooLong), + }, + Funcs: map[string]reflect.Value{ + "NewReadWriter": reflect.ValueOf(q.NewReadWriter), + "NewReader": reflect.ValueOf(q.NewReader), + "NewReaderSize": reflect.ValueOf(q.NewReaderSize), + "NewScanner": reflect.ValueOf(q.NewScanner), + "NewWriter": reflect.ValueOf(q.NewWriter), + "NewWriterSize": reflect.ValueOf(q.NewWriterSize), + "ScanBytes": reflect.ValueOf(q.ScanBytes), + "ScanLines": reflect.ValueOf(q.ScanLines), + "ScanRunes": reflect.ValueOf(q.ScanRunes), + "ScanWords": reflect.ValueOf(q.ScanWords), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "MaxScanTokenSize": {"untyped int", constant.MakeInt64(int64(q.MaxScanTokenSize))}, + }, + }) +} diff --git a/pkg/bytes/go121_export.go b/pkg/bytes/go121_export.go index 948e8c83..bbf69e5a 100755 --- a/pkg/bytes/go121_export.go +++ b/pkg/bytes/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package bytes diff --git a/pkg/bytes/go122_export.go b/pkg/bytes/go122_export.go new file mode 100755 index 00000000..1c49b7e1 --- /dev/null +++ b/pkg/bytes/go122_export.go @@ -0,0 +1,99 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package bytes + +import ( + q "bytes" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "bytes", + Path: "bytes", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "io": "io", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Buffer": reflect.TypeOf((*q.Buffer)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrTooLarge": reflect.ValueOf(&q.ErrTooLarge), + }, + Funcs: map[string]reflect.Value{ + "Clone": reflect.ValueOf(q.Clone), + "Compare": reflect.ValueOf(q.Compare), + "Contains": reflect.ValueOf(q.Contains), + "ContainsAny": reflect.ValueOf(q.ContainsAny), + "ContainsFunc": reflect.ValueOf(q.ContainsFunc), + "ContainsRune": reflect.ValueOf(q.ContainsRune), + "Count": reflect.ValueOf(q.Count), + "Cut": reflect.ValueOf(q.Cut), + "CutPrefix": reflect.ValueOf(q.CutPrefix), + "CutSuffix": reflect.ValueOf(q.CutSuffix), + "Equal": reflect.ValueOf(q.Equal), + "EqualFold": reflect.ValueOf(q.EqualFold), + "Fields": reflect.ValueOf(q.Fields), + "FieldsFunc": reflect.ValueOf(q.FieldsFunc), + "HasPrefix": reflect.ValueOf(q.HasPrefix), + "HasSuffix": reflect.ValueOf(q.HasSuffix), + "Index": reflect.ValueOf(q.Index), + "IndexAny": reflect.ValueOf(q.IndexAny), + "IndexByte": reflect.ValueOf(q.IndexByte), + "IndexFunc": reflect.ValueOf(q.IndexFunc), + "IndexRune": reflect.ValueOf(q.IndexRune), + "Join": reflect.ValueOf(q.Join), + "LastIndex": reflect.ValueOf(q.LastIndex), + "LastIndexAny": reflect.ValueOf(q.LastIndexAny), + "LastIndexByte": reflect.ValueOf(q.LastIndexByte), + "LastIndexFunc": reflect.ValueOf(q.LastIndexFunc), + "Map": reflect.ValueOf(q.Map), + "NewBuffer": reflect.ValueOf(q.NewBuffer), + "NewBufferString": reflect.ValueOf(q.NewBufferString), + "NewReader": reflect.ValueOf(q.NewReader), + "Repeat": reflect.ValueOf(q.Repeat), + "Replace": reflect.ValueOf(q.Replace), + "ReplaceAll": reflect.ValueOf(q.ReplaceAll), + "Runes": reflect.ValueOf(q.Runes), + "Split": reflect.ValueOf(q.Split), + "SplitAfter": reflect.ValueOf(q.SplitAfter), + "SplitAfterN": reflect.ValueOf(q.SplitAfterN), + "SplitN": reflect.ValueOf(q.SplitN), + "Title": reflect.ValueOf(q.Title), + "ToLower": reflect.ValueOf(q.ToLower), + "ToLowerSpecial": reflect.ValueOf(q.ToLowerSpecial), + "ToTitle": reflect.ValueOf(q.ToTitle), + "ToTitleSpecial": reflect.ValueOf(q.ToTitleSpecial), + "ToUpper": reflect.ValueOf(q.ToUpper), + "ToUpperSpecial": reflect.ValueOf(q.ToUpperSpecial), + "ToValidUTF8": reflect.ValueOf(q.ToValidUTF8), + "Trim": reflect.ValueOf(q.Trim), + "TrimFunc": reflect.ValueOf(q.TrimFunc), + "TrimLeft": reflect.ValueOf(q.TrimLeft), + "TrimLeftFunc": reflect.ValueOf(q.TrimLeftFunc), + "TrimPrefix": reflect.ValueOf(q.TrimPrefix), + "TrimRight": reflect.ValueOf(q.TrimRight), + "TrimRightFunc": reflect.ValueOf(q.TrimRightFunc), + "TrimSpace": reflect.ValueOf(q.TrimSpace), + "TrimSuffix": reflect.ValueOf(q.TrimSuffix), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "MinRead": {"untyped int", constant.MakeInt64(int64(q.MinRead))}, + }, + }) +} diff --git a/pkg/bytes/go123_export.go b/pkg/bytes/go123_export.go new file mode 100755 index 00000000..6a28e719 --- /dev/null +++ b/pkg/bytes/go123_export.go @@ -0,0 +1,100 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package bytes + +import ( + q "bytes" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "bytes", + Path: "bytes", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "io": "io", + "unicode": "unicode", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Buffer": reflect.TypeOf((*q.Buffer)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrTooLarge": reflect.ValueOf(&q.ErrTooLarge), + }, + Funcs: map[string]reflect.Value{ + "Clone": reflect.ValueOf(q.Clone), + "Compare": reflect.ValueOf(q.Compare), + "Contains": reflect.ValueOf(q.Contains), + "ContainsAny": reflect.ValueOf(q.ContainsAny), + "ContainsFunc": reflect.ValueOf(q.ContainsFunc), + "ContainsRune": reflect.ValueOf(q.ContainsRune), + "Count": reflect.ValueOf(q.Count), + "Cut": reflect.ValueOf(q.Cut), + "CutPrefix": reflect.ValueOf(q.CutPrefix), + "CutSuffix": reflect.ValueOf(q.CutSuffix), + "Equal": reflect.ValueOf(q.Equal), + "EqualFold": reflect.ValueOf(q.EqualFold), + "Fields": reflect.ValueOf(q.Fields), + "FieldsFunc": reflect.ValueOf(q.FieldsFunc), + "HasPrefix": reflect.ValueOf(q.HasPrefix), + "HasSuffix": reflect.ValueOf(q.HasSuffix), + "Index": reflect.ValueOf(q.Index), + "IndexAny": reflect.ValueOf(q.IndexAny), + "IndexByte": reflect.ValueOf(q.IndexByte), + "IndexFunc": reflect.ValueOf(q.IndexFunc), + "IndexRune": reflect.ValueOf(q.IndexRune), + "Join": reflect.ValueOf(q.Join), + "LastIndex": reflect.ValueOf(q.LastIndex), + "LastIndexAny": reflect.ValueOf(q.LastIndexAny), + "LastIndexByte": reflect.ValueOf(q.LastIndexByte), + "LastIndexFunc": reflect.ValueOf(q.LastIndexFunc), + "Map": reflect.ValueOf(q.Map), + "NewBuffer": reflect.ValueOf(q.NewBuffer), + "NewBufferString": reflect.ValueOf(q.NewBufferString), + "NewReader": reflect.ValueOf(q.NewReader), + "Repeat": reflect.ValueOf(q.Repeat), + "Replace": reflect.ValueOf(q.Replace), + "ReplaceAll": reflect.ValueOf(q.ReplaceAll), + "Runes": reflect.ValueOf(q.Runes), + "Split": reflect.ValueOf(q.Split), + "SplitAfter": reflect.ValueOf(q.SplitAfter), + "SplitAfterN": reflect.ValueOf(q.SplitAfterN), + "SplitN": reflect.ValueOf(q.SplitN), + "Title": reflect.ValueOf(q.Title), + "ToLower": reflect.ValueOf(q.ToLower), + "ToLowerSpecial": reflect.ValueOf(q.ToLowerSpecial), + "ToTitle": reflect.ValueOf(q.ToTitle), + "ToTitleSpecial": reflect.ValueOf(q.ToTitleSpecial), + "ToUpper": reflect.ValueOf(q.ToUpper), + "ToUpperSpecial": reflect.ValueOf(q.ToUpperSpecial), + "ToValidUTF8": reflect.ValueOf(q.ToValidUTF8), + "Trim": reflect.ValueOf(q.Trim), + "TrimFunc": reflect.ValueOf(q.TrimFunc), + "TrimLeft": reflect.ValueOf(q.TrimLeft), + "TrimLeftFunc": reflect.ValueOf(q.TrimLeftFunc), + "TrimPrefix": reflect.ValueOf(q.TrimPrefix), + "TrimRight": reflect.ValueOf(q.TrimRight), + "TrimRightFunc": reflect.ValueOf(q.TrimRightFunc), + "TrimSpace": reflect.ValueOf(q.TrimSpace), + "TrimSuffix": reflect.ValueOf(q.TrimSuffix), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "MinRead": {"untyped int", constant.MakeInt64(int64(q.MinRead))}, + }, + }) +} diff --git a/pkg/cmp/go121_export.go b/pkg/cmp/go121_export.go index 8a1eba99..8224fc46 100755 --- a/pkg/cmp/go121_export.go +++ b/pkg/cmp/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package cmp diff --git a/pkg/cmp/go122_export.go b/pkg/cmp/go122_export.go new file mode 100755 index 00000000..e122fb99 --- /dev/null +++ b/pkg/cmp/go122_export.go @@ -0,0 +1,23 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package cmp + +import ( + _ "cmp" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "cmp", + Path: "cmp", + Deps: map[string]string{}, + Source: source, + }) +} + +var source = "package cmp\n\ntype Ordered interface {\n\t~int | ~int8 | ~int16 | ~int32 | ~int64 |\n\t\t~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |\n\t\t~float32 | ~float64 |\n\t\t~string\n}\n\nfunc Less[T Ordered](x, y T) bool {\n\treturn (isNaN(x) && !isNaN(y)) || x < y\n}\n\nfunc Compare[T Ordered](x, y T) int {\n\txNaN := isNaN(x)\n\tyNaN := isNaN(y)\n\tif xNaN && yNaN {\n\t\treturn 0\n\t}\n\tif xNaN || x < y {\n\t\treturn -1\n\t}\n\tif yNaN || x > y {\n\t\treturn +1\n\t}\n\treturn 0\n}\n\nfunc isNaN[T Ordered](x T) bool {\n\treturn x != x\n}\n\nfunc Or[T comparable](vals ...T) T {\n\tvar zero T\n\tfor _, val := range vals {\n\t\tif val != zero {\n\t\t\treturn val\n\t\t}\n\t}\n\treturn zero\n}\n" diff --git a/pkg/cmp/go123_export.go b/pkg/cmp/go123_export.go new file mode 100755 index 00000000..ddf13249 --- /dev/null +++ b/pkg/cmp/go123_export.go @@ -0,0 +1,23 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package cmp + +import ( + _ "cmp" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "cmp", + Path: "cmp", + Deps: map[string]string{}, + Source: source, + }) +} + +var source = "package cmp\n\ntype Ordered interface {\n\t~int | ~int8 | ~int16 | ~int32 | ~int64 |\n\t\t~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |\n\t\t~float32 | ~float64 |\n\t\t~string\n}\n\nfunc Less[T Ordered](x, y T) bool {\n\treturn (isNaN(x) && !isNaN(y)) || x < y\n}\n\nfunc Compare[T Ordered](x, y T) int {\n\txNaN := isNaN(x)\n\tyNaN := isNaN(y)\n\tif xNaN {\n\t\tif yNaN {\n\t\t\treturn 0\n\t\t}\n\t\treturn -1\n\t}\n\tif yNaN {\n\t\treturn +1\n\t}\n\tif x < y {\n\t\treturn -1\n\t}\n\tif x > y {\n\t\treturn +1\n\t}\n\treturn 0\n}\n\nfunc isNaN[T Ordered](x T) bool {\n\treturn x != x\n}\n\nfunc Or[T comparable](vals ...T) T {\n\tvar zero T\n\tfor _, val := range vals {\n\t\tif val != zero {\n\t\t\treturn val\n\t\t}\n\t}\n\treturn zero\n}\n" diff --git a/pkg/compress/bzip2/go121_export.go b/pkg/compress/bzip2/go121_export.go index 6c3fc9ac..94411d3c 100755 --- a/pkg/compress/bzip2/go121_export.go +++ b/pkg/compress/bzip2/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package bzip2 diff --git a/pkg/compress/bzip2/go122_export.go b/pkg/compress/bzip2/go122_export.go new file mode 100755 index 00000000..181e3be1 --- /dev/null +++ b/pkg/compress/bzip2/go122_export.go @@ -0,0 +1,37 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package bzip2 + +import ( + q "compress/bzip2" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "bzip2", + Path: "compress/bzip2", + Deps: map[string]string{ + "bufio": "bufio", + "io": "io", + "sort": "sort", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "StructuralError": reflect.TypeOf((*q.StructuralError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewReader": reflect.ValueOf(q.NewReader), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/compress/bzip2/go123_export.go b/pkg/compress/bzip2/go123_export.go new file mode 100755 index 00000000..8f876211 --- /dev/null +++ b/pkg/compress/bzip2/go123_export.go @@ -0,0 +1,38 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package bzip2 + +import ( + q "compress/bzip2" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "bzip2", + Path: "compress/bzip2", + Deps: map[string]string{ + "bufio": "bufio", + "cmp": "cmp", + "io": "io", + "slices": "slices", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "StructuralError": reflect.TypeOf((*q.StructuralError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewReader": reflect.ValueOf(q.NewReader), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/compress/flate/go121_export.go b/pkg/compress/flate/go121_export.go index 97994ccb..998d21f5 100755 --- a/pkg/compress/flate/go121_export.go +++ b/pkg/compress/flate/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package flate diff --git a/pkg/compress/flate/go122_export.go b/pkg/compress/flate/go122_export.go new file mode 100755 index 00000000..b7d59a34 --- /dev/null +++ b/pkg/compress/flate/go122_export.go @@ -0,0 +1,60 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package flate + +import ( + q "compress/flate" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "flate", + Path: "compress/flate", + Deps: map[string]string{ + "bufio": "bufio", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "math": "math", + "math/bits": "bits", + "sort": "sort", + "strconv": "strconv", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{ + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Resetter": reflect.TypeOf((*q.Resetter)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "CorruptInputError": reflect.TypeOf((*q.CorruptInputError)(nil)).Elem(), + "InternalError": reflect.TypeOf((*q.InternalError)(nil)).Elem(), + "ReadError": reflect.TypeOf((*q.ReadError)(nil)).Elem(), + "WriteError": reflect.TypeOf((*q.WriteError)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewReader": reflect.ValueOf(q.NewReader), + "NewReaderDict": reflect.ValueOf(q.NewReaderDict), + "NewWriter": reflect.ValueOf(q.NewWriter), + "NewWriterDict": reflect.ValueOf(q.NewWriterDict), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "BestCompression": {"untyped int", constant.MakeInt64(int64(q.BestCompression))}, + "BestSpeed": {"untyped int", constant.MakeInt64(int64(q.BestSpeed))}, + "DefaultCompression": {"untyped int", constant.MakeInt64(int64(q.DefaultCompression))}, + "HuffmanOnly": {"untyped int", constant.MakeInt64(int64(q.HuffmanOnly))}, + "NoCompression": {"untyped int", constant.MakeInt64(int64(q.NoCompression))}, + }, + }) +} diff --git a/pkg/compress/flate/go123_export.go b/pkg/compress/flate/go123_export.go new file mode 100755 index 00000000..cbd7a450 --- /dev/null +++ b/pkg/compress/flate/go123_export.go @@ -0,0 +1,60 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package flate + +import ( + q "compress/flate" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "flate", + Path: "compress/flate", + Deps: map[string]string{ + "bufio": "bufio", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "math": "math", + "math/bits": "bits", + "sort": "sort", + "strconv": "strconv", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{ + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Resetter": reflect.TypeOf((*q.Resetter)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "CorruptInputError": reflect.TypeOf((*q.CorruptInputError)(nil)).Elem(), + "InternalError": reflect.TypeOf((*q.InternalError)(nil)).Elem(), + "ReadError": reflect.TypeOf((*q.ReadError)(nil)).Elem(), + "WriteError": reflect.TypeOf((*q.WriteError)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewReader": reflect.ValueOf(q.NewReader), + "NewReaderDict": reflect.ValueOf(q.NewReaderDict), + "NewWriter": reflect.ValueOf(q.NewWriter), + "NewWriterDict": reflect.ValueOf(q.NewWriterDict), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "BestCompression": {"untyped int", constant.MakeInt64(int64(q.BestCompression))}, + "BestSpeed": {"untyped int", constant.MakeInt64(int64(q.BestSpeed))}, + "DefaultCompression": {"untyped int", constant.MakeInt64(int64(q.DefaultCompression))}, + "HuffmanOnly": {"untyped int", constant.MakeInt64(int64(q.HuffmanOnly))}, + "NoCompression": {"untyped int", constant.MakeInt64(int64(q.NoCompression))}, + }, + }) +} diff --git a/pkg/compress/gzip/go121_export.go b/pkg/compress/gzip/go121_export.go index 0d9ee3a2..477585a2 100755 --- a/pkg/compress/gzip/go121_export.go +++ b/pkg/compress/gzip/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package gzip diff --git a/pkg/compress/gzip/go122_export.go b/pkg/compress/gzip/go122_export.go new file mode 100755 index 00000000..7e45a088 --- /dev/null +++ b/pkg/compress/gzip/go122_export.go @@ -0,0 +1,56 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package gzip + +import ( + q "compress/gzip" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "gzip", + Path: "compress/gzip", + Deps: map[string]string{ + "bufio": "bufio", + "compress/flate": "flate", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "hash/crc32": "crc32", + "io": "io", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Header": reflect.TypeOf((*q.Header)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrChecksum": reflect.ValueOf(&q.ErrChecksum), + "ErrHeader": reflect.ValueOf(&q.ErrHeader), + }, + Funcs: map[string]reflect.Value{ + "NewReader": reflect.ValueOf(q.NewReader), + "NewWriter": reflect.ValueOf(q.NewWriter), + "NewWriterLevel": reflect.ValueOf(q.NewWriterLevel), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "BestCompression": {"untyped int", constant.MakeInt64(int64(q.BestCompression))}, + "BestSpeed": {"untyped int", constant.MakeInt64(int64(q.BestSpeed))}, + "DefaultCompression": {"untyped int", constant.MakeInt64(int64(q.DefaultCompression))}, + "HuffmanOnly": {"untyped int", constant.MakeInt64(int64(q.HuffmanOnly))}, + "NoCompression": {"untyped int", constant.MakeInt64(int64(q.NoCompression))}, + }, + }) +} diff --git a/pkg/compress/gzip/go123_export.go b/pkg/compress/gzip/go123_export.go new file mode 100755 index 00000000..1af41b75 --- /dev/null +++ b/pkg/compress/gzip/go123_export.go @@ -0,0 +1,56 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package gzip + +import ( + q "compress/gzip" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "gzip", + Path: "compress/gzip", + Deps: map[string]string{ + "bufio": "bufio", + "compress/flate": "flate", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "hash/crc32": "crc32", + "io": "io", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Header": reflect.TypeOf((*q.Header)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrChecksum": reflect.ValueOf(&q.ErrChecksum), + "ErrHeader": reflect.ValueOf(&q.ErrHeader), + }, + Funcs: map[string]reflect.Value{ + "NewReader": reflect.ValueOf(q.NewReader), + "NewWriter": reflect.ValueOf(q.NewWriter), + "NewWriterLevel": reflect.ValueOf(q.NewWriterLevel), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "BestCompression": {"untyped int", constant.MakeInt64(int64(q.BestCompression))}, + "BestSpeed": {"untyped int", constant.MakeInt64(int64(q.BestSpeed))}, + "DefaultCompression": {"untyped int", constant.MakeInt64(int64(q.DefaultCompression))}, + "HuffmanOnly": {"untyped int", constant.MakeInt64(int64(q.HuffmanOnly))}, + "NoCompression": {"untyped int", constant.MakeInt64(int64(q.NoCompression))}, + }, + }) +} diff --git a/pkg/compress/lzw/go121_export.go b/pkg/compress/lzw/go121_export.go index 88fd1779..6a528c06 100755 --- a/pkg/compress/lzw/go121_export.go +++ b/pkg/compress/lzw/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package lzw diff --git a/pkg/compress/lzw/go122_export.go b/pkg/compress/lzw/go122_export.go new file mode 100755 index 00000000..dbffaa33 --- /dev/null +++ b/pkg/compress/lzw/go122_export.go @@ -0,0 +1,45 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package lzw + +import ( + q "compress/lzw" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "lzw", + Path: "compress/lzw", + Deps: map[string]string{ + "bufio": "bufio", + "errors": "errors", + "fmt": "fmt", + "io": "io", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Order": reflect.TypeOf((*q.Order)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewReader": reflect.ValueOf(q.NewReader), + "NewWriter": reflect.ValueOf(q.NewWriter), + }, + TypedConsts: map[string]igop.TypedConst{ + "LSB": {reflect.TypeOf(q.LSB), constant.MakeInt64(int64(q.LSB))}, + "MSB": {reflect.TypeOf(q.MSB), constant.MakeInt64(int64(q.MSB))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/compress/lzw/go123_export.go b/pkg/compress/lzw/go123_export.go new file mode 100755 index 00000000..1da3ba6a --- /dev/null +++ b/pkg/compress/lzw/go123_export.go @@ -0,0 +1,45 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package lzw + +import ( + q "compress/lzw" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "lzw", + Path: "compress/lzw", + Deps: map[string]string{ + "bufio": "bufio", + "errors": "errors", + "fmt": "fmt", + "io": "io", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Order": reflect.TypeOf((*q.Order)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewReader": reflect.ValueOf(q.NewReader), + "NewWriter": reflect.ValueOf(q.NewWriter), + }, + TypedConsts: map[string]igop.TypedConst{ + "LSB": {reflect.TypeOf(q.LSB), constant.MakeInt64(int64(q.LSB))}, + "MSB": {reflect.TypeOf(q.MSB), constant.MakeInt64(int64(q.MSB))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/compress/zlib/go121_export.go b/pkg/compress/zlib/go121_export.go index 330bc515..5caf5dc5 100755 --- a/pkg/compress/zlib/go121_export.go +++ b/pkg/compress/zlib/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package zlib diff --git a/pkg/compress/zlib/go122_export.go b/pkg/compress/zlib/go122_export.go new file mode 100755 index 00000000..43050b99 --- /dev/null +++ b/pkg/compress/zlib/go122_export.go @@ -0,0 +1,59 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package zlib + +import ( + q "compress/zlib" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "zlib", + Path: "compress/zlib", + Deps: map[string]string{ + "bufio": "bufio", + "compress/flate": "flate", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "hash": "hash", + "hash/adler32": "adler32", + "io": "io", + }, + Interfaces: map[string]reflect.Type{ + "Resetter": reflect.TypeOf((*q.Resetter)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrChecksum": reflect.ValueOf(&q.ErrChecksum), + "ErrDictionary": reflect.ValueOf(&q.ErrDictionary), + "ErrHeader": reflect.ValueOf(&q.ErrHeader), + }, + Funcs: map[string]reflect.Value{ + "NewReader": reflect.ValueOf(q.NewReader), + "NewReaderDict": reflect.ValueOf(q.NewReaderDict), + "NewWriter": reflect.ValueOf(q.NewWriter), + "NewWriterLevel": reflect.ValueOf(q.NewWriterLevel), + "NewWriterLevelDict": reflect.ValueOf(q.NewWriterLevelDict), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "BestCompression": {"untyped int", constant.MakeInt64(int64(q.BestCompression))}, + "BestSpeed": {"untyped int", constant.MakeInt64(int64(q.BestSpeed))}, + "DefaultCompression": {"untyped int", constant.MakeInt64(int64(q.DefaultCompression))}, + "HuffmanOnly": {"untyped int", constant.MakeInt64(int64(q.HuffmanOnly))}, + "NoCompression": {"untyped int", constant.MakeInt64(int64(q.NoCompression))}, + }, + }) +} diff --git a/pkg/compress/zlib/go123_export.go b/pkg/compress/zlib/go123_export.go new file mode 100755 index 00000000..9241e8a5 --- /dev/null +++ b/pkg/compress/zlib/go123_export.go @@ -0,0 +1,59 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package zlib + +import ( + q "compress/zlib" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "zlib", + Path: "compress/zlib", + Deps: map[string]string{ + "bufio": "bufio", + "compress/flate": "flate", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "hash": "hash", + "hash/adler32": "adler32", + "io": "io", + }, + Interfaces: map[string]reflect.Type{ + "Resetter": reflect.TypeOf((*q.Resetter)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrChecksum": reflect.ValueOf(&q.ErrChecksum), + "ErrDictionary": reflect.ValueOf(&q.ErrDictionary), + "ErrHeader": reflect.ValueOf(&q.ErrHeader), + }, + Funcs: map[string]reflect.Value{ + "NewReader": reflect.ValueOf(q.NewReader), + "NewReaderDict": reflect.ValueOf(q.NewReaderDict), + "NewWriter": reflect.ValueOf(q.NewWriter), + "NewWriterLevel": reflect.ValueOf(q.NewWriterLevel), + "NewWriterLevelDict": reflect.ValueOf(q.NewWriterLevelDict), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "BestCompression": {"untyped int", constant.MakeInt64(int64(q.BestCompression))}, + "BestSpeed": {"untyped int", constant.MakeInt64(int64(q.BestSpeed))}, + "DefaultCompression": {"untyped int", constant.MakeInt64(int64(q.DefaultCompression))}, + "HuffmanOnly": {"untyped int", constant.MakeInt64(int64(q.HuffmanOnly))}, + "NoCompression": {"untyped int", constant.MakeInt64(int64(q.NoCompression))}, + }, + }) +} diff --git a/pkg/container/heap/go121_export.go b/pkg/container/heap/go121_export.go index 92d48da0..d823ea58 100755 --- a/pkg/container/heap/go121_export.go +++ b/pkg/container/heap/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package heap diff --git a/pkg/container/heap/go122_export.go b/pkg/container/heap/go122_export.go new file mode 100755 index 00000000..d72f3ae5 --- /dev/null +++ b/pkg/container/heap/go122_export.go @@ -0,0 +1,39 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package heap + +import ( + q "container/heap" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "heap", + Path: "container/heap", + Deps: map[string]string{ + "sort": "sort", + }, + Interfaces: map[string]reflect.Type{ + "Interface": reflect.TypeOf((*q.Interface)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Fix": reflect.ValueOf(q.Fix), + "Init": reflect.ValueOf(q.Init), + "Pop": reflect.ValueOf(q.Pop), + "Push": reflect.ValueOf(q.Push), + "Remove": reflect.ValueOf(q.Remove), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/container/heap/go123_export.go b/pkg/container/heap/go123_export.go new file mode 100755 index 00000000..25d41385 --- /dev/null +++ b/pkg/container/heap/go123_export.go @@ -0,0 +1,39 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package heap + +import ( + q "container/heap" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "heap", + Path: "container/heap", + Deps: map[string]string{ + "sort": "sort", + }, + Interfaces: map[string]reflect.Type{ + "Interface": reflect.TypeOf((*q.Interface)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Fix": reflect.ValueOf(q.Fix), + "Init": reflect.ValueOf(q.Init), + "Pop": reflect.ValueOf(q.Pop), + "Push": reflect.ValueOf(q.Push), + "Remove": reflect.ValueOf(q.Remove), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/container/list/go121_export.go b/pkg/container/list/go121_export.go index d9dcc14e..cbb8b8d2 100755 --- a/pkg/container/list/go121_export.go +++ b/pkg/container/list/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package list diff --git a/pkg/container/list/go122_export.go b/pkg/container/list/go122_export.go new file mode 100755 index 00000000..e5443510 --- /dev/null +++ b/pkg/container/list/go122_export.go @@ -0,0 +1,34 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package list + +import ( + q "container/list" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "list", + Path: "container/list", + Deps: map[string]string{}, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Element": reflect.TypeOf((*q.Element)(nil)).Elem(), + "List": reflect.TypeOf((*q.List)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "New": reflect.ValueOf(q.New), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/container/list/go123_export.go b/pkg/container/list/go123_export.go new file mode 100755 index 00000000..030f9698 --- /dev/null +++ b/pkg/container/list/go123_export.go @@ -0,0 +1,34 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package list + +import ( + q "container/list" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "list", + Path: "container/list", + Deps: map[string]string{}, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Element": reflect.TypeOf((*q.Element)(nil)).Elem(), + "List": reflect.TypeOf((*q.List)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "New": reflect.ValueOf(q.New), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/container/ring/go121_export.go b/pkg/container/ring/go121_export.go index bc314b7a..b8941e56 100755 --- a/pkg/container/ring/go121_export.go +++ b/pkg/container/ring/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package ring diff --git a/pkg/container/ring/go122_export.go b/pkg/container/ring/go122_export.go new file mode 100755 index 00000000..1aa5dbdf --- /dev/null +++ b/pkg/container/ring/go122_export.go @@ -0,0 +1,33 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package ring + +import ( + q "container/ring" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "ring", + Path: "container/ring", + Deps: map[string]string{}, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Ring": reflect.TypeOf((*q.Ring)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "New": reflect.ValueOf(q.New), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/container/ring/go123_export.go b/pkg/container/ring/go123_export.go new file mode 100755 index 00000000..cfdaa154 --- /dev/null +++ b/pkg/container/ring/go123_export.go @@ -0,0 +1,33 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package ring + +import ( + q "container/ring" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "ring", + Path: "container/ring", + Deps: map[string]string{}, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Ring": reflect.TypeOf((*q.Ring)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "New": reflect.ValueOf(q.New), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/context/go121_export.go b/pkg/context/go121_export.go index 391e90b1..481058b9 100755 --- a/pkg/context/go121_export.go +++ b/pkg/context/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package context diff --git a/pkg/context/go122_export.go b/pkg/context/go122_export.go new file mode 100755 index 00000000..b0c1610e --- /dev/null +++ b/pkg/context/go122_export.go @@ -0,0 +1,56 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package context + +import ( + q "context" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "context", + Path: "context", + Deps: map[string]string{ + "errors": "errors", + "internal/reflectlite": "reflectlite", + "sync": "sync", + "sync/atomic": "atomic", + "time": "time", + }, + Interfaces: map[string]reflect.Type{ + "Context": reflect.TypeOf((*q.Context)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "CancelCauseFunc": reflect.TypeOf((*q.CancelCauseFunc)(nil)).Elem(), + "CancelFunc": reflect.TypeOf((*q.CancelFunc)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Canceled": reflect.ValueOf(&q.Canceled), + "DeadlineExceeded": reflect.ValueOf(&q.DeadlineExceeded), + }, + Funcs: map[string]reflect.Value{ + "AfterFunc": reflect.ValueOf(q.AfterFunc), + "Background": reflect.ValueOf(q.Background), + "Cause": reflect.ValueOf(q.Cause), + "TODO": reflect.ValueOf(q.TODO), + "WithCancel": reflect.ValueOf(q.WithCancel), + "WithCancelCause": reflect.ValueOf(q.WithCancelCause), + "WithDeadline": reflect.ValueOf(q.WithDeadline), + "WithDeadlineCause": reflect.ValueOf(q.WithDeadlineCause), + "WithTimeout": reflect.ValueOf(q.WithTimeout), + "WithTimeoutCause": reflect.ValueOf(q.WithTimeoutCause), + "WithValue": reflect.ValueOf(q.WithValue), + "WithoutCancel": reflect.ValueOf(q.WithoutCancel), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/context/go123_export.go b/pkg/context/go123_export.go new file mode 100755 index 00000000..1d4dd4bf --- /dev/null +++ b/pkg/context/go123_export.go @@ -0,0 +1,56 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package context + +import ( + q "context" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "context", + Path: "context", + Deps: map[string]string{ + "errors": "errors", + "internal/reflectlite": "reflectlite", + "sync": "sync", + "sync/atomic": "atomic", + "time": "time", + }, + Interfaces: map[string]reflect.Type{ + "Context": reflect.TypeOf((*q.Context)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "CancelCauseFunc": reflect.TypeOf((*q.CancelCauseFunc)(nil)).Elem(), + "CancelFunc": reflect.TypeOf((*q.CancelFunc)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Canceled": reflect.ValueOf(&q.Canceled), + "DeadlineExceeded": reflect.ValueOf(&q.DeadlineExceeded), + }, + Funcs: map[string]reflect.Value{ + "AfterFunc": reflect.ValueOf(q.AfterFunc), + "Background": reflect.ValueOf(q.Background), + "Cause": reflect.ValueOf(q.Cause), + "TODO": reflect.ValueOf(q.TODO), + "WithCancel": reflect.ValueOf(q.WithCancel), + "WithCancelCause": reflect.ValueOf(q.WithCancelCause), + "WithDeadline": reflect.ValueOf(q.WithDeadline), + "WithDeadlineCause": reflect.ValueOf(q.WithDeadlineCause), + "WithTimeout": reflect.ValueOf(q.WithTimeout), + "WithTimeoutCause": reflect.ValueOf(q.WithTimeoutCause), + "WithValue": reflect.ValueOf(q.WithValue), + "WithoutCancel": reflect.ValueOf(q.WithoutCancel), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/aes/go121_export.go b/pkg/crypto/aes/go121_export.go index e8bb1852..6196c79c 100755 --- a/pkg/crypto/aes/go121_export.go +++ b/pkg/crypto/aes/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package aes diff --git a/pkg/crypto/aes/go122_export.go b/pkg/crypto/aes/go122_export.go new file mode 100755 index 00000000..a2de09a4 --- /dev/null +++ b/pkg/crypto/aes/go122_export.go @@ -0,0 +1,46 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package aes + +import ( + q "crypto/aes" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "aes", + Path: "crypto/aes", + Deps: map[string]string{ + "crypto/cipher": "cipher", + "crypto/internal/alias": "alias", + "crypto/internal/boring": "boring", + "crypto/subtle": "subtle", + "encoding/binary": "binary", + "errors": "errors", + "internal/cpu": "cpu", + "internal/goarch": "goarch", + "strconv": "strconv", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "KeySizeError": reflect.TypeOf((*q.KeySizeError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewCipher": reflect.ValueOf(q.NewCipher), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "BlockSize": {"untyped int", constant.MakeInt64(int64(q.BlockSize))}, + }, + }) +} diff --git a/pkg/crypto/aes/go123_export.go b/pkg/crypto/aes/go123_export.go new file mode 100755 index 00000000..a99bba92 --- /dev/null +++ b/pkg/crypto/aes/go123_export.go @@ -0,0 +1,46 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package aes + +import ( + q "crypto/aes" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "aes", + Path: "crypto/aes", + Deps: map[string]string{ + "crypto/cipher": "cipher", + "crypto/internal/alias": "alias", + "crypto/internal/boring": "boring", + "crypto/subtle": "subtle", + "errors": "errors", + "internal/byteorder": "byteorder", + "internal/cpu": "cpu", + "internal/goarch": "goarch", + "strconv": "strconv", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "KeySizeError": reflect.TypeOf((*q.KeySizeError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewCipher": reflect.ValueOf(q.NewCipher), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "BlockSize": {"untyped int", constant.MakeInt64(int64(q.BlockSize))}, + }, + }) +} diff --git a/pkg/crypto/cipher/go121_export.go b/pkg/crypto/cipher/go121_export.go index 10e537ed..68270242 100755 --- a/pkg/crypto/cipher/go121_export.go +++ b/pkg/crypto/cipher/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package cipher diff --git a/pkg/crypto/cipher/go122_export.go b/pkg/crypto/cipher/go122_export.go new file mode 100755 index 00000000..79a5ab7d --- /dev/null +++ b/pkg/crypto/cipher/go122_export.go @@ -0,0 +1,54 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package cipher + +import ( + q "crypto/cipher" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "cipher", + Path: "crypto/cipher", + Deps: map[string]string{ + "bytes": "bytes", + "crypto/internal/alias": "alias", + "crypto/subtle": "subtle", + "encoding/binary": "binary", + "errors": "errors", + "io": "io", + }, + Interfaces: map[string]reflect.Type{ + "AEAD": reflect.TypeOf((*q.AEAD)(nil)).Elem(), + "Block": reflect.TypeOf((*q.Block)(nil)).Elem(), + "BlockMode": reflect.TypeOf((*q.BlockMode)(nil)).Elem(), + "Stream": reflect.TypeOf((*q.Stream)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "StreamReader": reflect.TypeOf((*q.StreamReader)(nil)).Elem(), + "StreamWriter": reflect.TypeOf((*q.StreamWriter)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewCBCDecrypter": reflect.ValueOf(q.NewCBCDecrypter), + "NewCBCEncrypter": reflect.ValueOf(q.NewCBCEncrypter), + "NewCFBDecrypter": reflect.ValueOf(q.NewCFBDecrypter), + "NewCFBEncrypter": reflect.ValueOf(q.NewCFBEncrypter), + "NewCTR": reflect.ValueOf(q.NewCTR), + "NewGCM": reflect.ValueOf(q.NewGCM), + "NewGCMWithNonceSize": reflect.ValueOf(q.NewGCMWithNonceSize), + "NewGCMWithTagSize": reflect.ValueOf(q.NewGCMWithTagSize), + "NewOFB": reflect.ValueOf(q.NewOFB), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/cipher/go123_export.go b/pkg/crypto/cipher/go123_export.go new file mode 100755 index 00000000..2b693ad4 --- /dev/null +++ b/pkg/crypto/cipher/go123_export.go @@ -0,0 +1,54 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package cipher + +import ( + q "crypto/cipher" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "cipher", + Path: "crypto/cipher", + Deps: map[string]string{ + "bytes": "bytes", + "crypto/internal/alias": "alias", + "crypto/subtle": "subtle", + "errors": "errors", + "internal/byteorder": "byteorder", + "io": "io", + }, + Interfaces: map[string]reflect.Type{ + "AEAD": reflect.TypeOf((*q.AEAD)(nil)).Elem(), + "Block": reflect.TypeOf((*q.Block)(nil)).Elem(), + "BlockMode": reflect.TypeOf((*q.BlockMode)(nil)).Elem(), + "Stream": reflect.TypeOf((*q.Stream)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "StreamReader": reflect.TypeOf((*q.StreamReader)(nil)).Elem(), + "StreamWriter": reflect.TypeOf((*q.StreamWriter)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewCBCDecrypter": reflect.ValueOf(q.NewCBCDecrypter), + "NewCBCEncrypter": reflect.ValueOf(q.NewCBCEncrypter), + "NewCFBDecrypter": reflect.ValueOf(q.NewCFBDecrypter), + "NewCFBEncrypter": reflect.ValueOf(q.NewCFBEncrypter), + "NewCTR": reflect.ValueOf(q.NewCTR), + "NewGCM": reflect.ValueOf(q.NewGCM), + "NewGCMWithNonceSize": reflect.ValueOf(q.NewGCMWithNonceSize), + "NewGCMWithTagSize": reflect.ValueOf(q.NewGCMWithTagSize), + "NewOFB": reflect.ValueOf(q.NewOFB), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/des/go121_export.go b/pkg/crypto/des/go121_export.go index 7b395104..8b1b3bd3 100755 --- a/pkg/crypto/des/go121_export.go +++ b/pkg/crypto/des/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package des diff --git a/pkg/crypto/des/go122_export.go b/pkg/crypto/des/go122_export.go new file mode 100755 index 00000000..dc5e5633 --- /dev/null +++ b/pkg/crypto/des/go122_export.go @@ -0,0 +1,43 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package des + +import ( + q "crypto/des" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "des", + Path: "crypto/des", + Deps: map[string]string{ + "crypto/cipher": "cipher", + "crypto/internal/alias": "alias", + "encoding/binary": "binary", + "strconv": "strconv", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "KeySizeError": reflect.TypeOf((*q.KeySizeError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewCipher": reflect.ValueOf(q.NewCipher), + "NewTripleDESCipher": reflect.ValueOf(q.NewTripleDESCipher), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "BlockSize": {"untyped int", constant.MakeInt64(int64(q.BlockSize))}, + }, + }) +} diff --git a/pkg/crypto/des/go123_export.go b/pkg/crypto/des/go123_export.go new file mode 100755 index 00000000..def92deb --- /dev/null +++ b/pkg/crypto/des/go123_export.go @@ -0,0 +1,43 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package des + +import ( + q "crypto/des" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "des", + Path: "crypto/des", + Deps: map[string]string{ + "crypto/cipher": "cipher", + "crypto/internal/alias": "alias", + "internal/byteorder": "byteorder", + "strconv": "strconv", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "KeySizeError": reflect.TypeOf((*q.KeySizeError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewCipher": reflect.ValueOf(q.NewCipher), + "NewTripleDESCipher": reflect.ValueOf(q.NewTripleDESCipher), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "BlockSize": {"untyped int", constant.MakeInt64(int64(q.BlockSize))}, + }, + }) +} diff --git a/pkg/crypto/dsa/go121_export.go b/pkg/crypto/dsa/go121_export.go index 06d20caf..43107b01 100755 --- a/pkg/crypto/dsa/go121_export.go +++ b/pkg/crypto/dsa/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package dsa diff --git a/pkg/crypto/dsa/go122_export.go b/pkg/crypto/dsa/go122_export.go new file mode 100755 index 00000000..c51e661e --- /dev/null +++ b/pkg/crypto/dsa/go122_export.go @@ -0,0 +1,52 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package dsa + +import ( + q "crypto/dsa" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "dsa", + Path: "crypto/dsa", + Deps: map[string]string{ + "crypto/internal/randutil": "randutil", + "errors": "errors", + "io": "io", + "math/big": "big", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "ParameterSizes": reflect.TypeOf((*q.ParameterSizes)(nil)).Elem(), + "Parameters": reflect.TypeOf((*q.Parameters)(nil)).Elem(), + "PrivateKey": reflect.TypeOf((*q.PrivateKey)(nil)).Elem(), + "PublicKey": reflect.TypeOf((*q.PublicKey)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrInvalidPublicKey": reflect.ValueOf(&q.ErrInvalidPublicKey), + }, + Funcs: map[string]reflect.Value{ + "GenerateKey": reflect.ValueOf(q.GenerateKey), + "GenerateParameters": reflect.ValueOf(q.GenerateParameters), + "Sign": reflect.ValueOf(q.Sign), + "Verify": reflect.ValueOf(q.Verify), + }, + TypedConsts: map[string]igop.TypedConst{ + "L1024N160": {reflect.TypeOf(q.L1024N160), constant.MakeInt64(int64(q.L1024N160))}, + "L2048N224": {reflect.TypeOf(q.L2048N224), constant.MakeInt64(int64(q.L2048N224))}, + "L2048N256": {reflect.TypeOf(q.L2048N256), constant.MakeInt64(int64(q.L2048N256))}, + "L3072N256": {reflect.TypeOf(q.L3072N256), constant.MakeInt64(int64(q.L3072N256))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/dsa/go123_export.go b/pkg/crypto/dsa/go123_export.go new file mode 100755 index 00000000..033dcf7a --- /dev/null +++ b/pkg/crypto/dsa/go123_export.go @@ -0,0 +1,52 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package dsa + +import ( + q "crypto/dsa" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "dsa", + Path: "crypto/dsa", + Deps: map[string]string{ + "crypto/internal/randutil": "randutil", + "errors": "errors", + "io": "io", + "math/big": "big", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "ParameterSizes": reflect.TypeOf((*q.ParameterSizes)(nil)).Elem(), + "Parameters": reflect.TypeOf((*q.Parameters)(nil)).Elem(), + "PrivateKey": reflect.TypeOf((*q.PrivateKey)(nil)).Elem(), + "PublicKey": reflect.TypeOf((*q.PublicKey)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrInvalidPublicKey": reflect.ValueOf(&q.ErrInvalidPublicKey), + }, + Funcs: map[string]reflect.Value{ + "GenerateKey": reflect.ValueOf(q.GenerateKey), + "GenerateParameters": reflect.ValueOf(q.GenerateParameters), + "Sign": reflect.ValueOf(q.Sign), + "Verify": reflect.ValueOf(q.Verify), + }, + TypedConsts: map[string]igop.TypedConst{ + "L1024N160": {reflect.TypeOf(q.L1024N160), constant.MakeInt64(int64(q.L1024N160))}, + "L2048N224": {reflect.TypeOf(q.L2048N224), constant.MakeInt64(int64(q.L2048N224))}, + "L2048N256": {reflect.TypeOf(q.L2048N256), constant.MakeInt64(int64(q.L2048N256))}, + "L3072N256": {reflect.TypeOf(q.L3072N256), constant.MakeInt64(int64(q.L3072N256))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/ecdh/go121_export.go b/pkg/crypto/ecdh/go121_export.go index b3786ec2..196459d4 100755 --- a/pkg/crypto/ecdh/go121_export.go +++ b/pkg/crypto/ecdh/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package ecdh diff --git a/pkg/crypto/ecdh/go122_export.go b/pkg/crypto/ecdh/go122_export.go new file mode 100755 index 00000000..f5bf4858 --- /dev/null +++ b/pkg/crypto/ecdh/go122_export.go @@ -0,0 +1,51 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package ecdh + +import ( + q "crypto/ecdh" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "ecdh", + Path: "crypto/ecdh", + Deps: map[string]string{ + "crypto": "crypto", + "crypto/internal/boring": "boring", + "crypto/internal/edwards25519/field": "field", + "crypto/internal/nistec": "nistec", + "crypto/internal/randutil": "randutil", + "crypto/subtle": "subtle", + "encoding/binary": "binary", + "errors": "errors", + "io": "io", + "math/bits": "bits", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{ + "Curve": reflect.TypeOf((*q.Curve)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "PrivateKey": reflect.TypeOf((*q.PrivateKey)(nil)).Elem(), + "PublicKey": reflect.TypeOf((*q.PublicKey)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "P256": reflect.ValueOf(q.P256), + "P384": reflect.ValueOf(q.P384), + "P521": reflect.ValueOf(q.P521), + "X25519": reflect.ValueOf(q.X25519), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/ecdh/go123_export.go b/pkg/crypto/ecdh/go123_export.go new file mode 100755 index 00000000..43534d98 --- /dev/null +++ b/pkg/crypto/ecdh/go123_export.go @@ -0,0 +1,51 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package ecdh + +import ( + q "crypto/ecdh" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "ecdh", + Path: "crypto/ecdh", + Deps: map[string]string{ + "crypto": "crypto", + "crypto/internal/boring": "boring", + "crypto/internal/edwards25519/field": "field", + "crypto/internal/nistec": "nistec", + "crypto/internal/randutil": "randutil", + "crypto/subtle": "subtle", + "errors": "errors", + "internal/byteorder": "byteorder", + "io": "io", + "math/bits": "bits", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{ + "Curve": reflect.TypeOf((*q.Curve)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "PrivateKey": reflect.TypeOf((*q.PrivateKey)(nil)).Elem(), + "PublicKey": reflect.TypeOf((*q.PublicKey)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "P256": reflect.ValueOf(q.P256), + "P384": reflect.ValueOf(q.P384), + "P521": reflect.ValueOf(q.P521), + "X25519": reflect.ValueOf(q.X25519), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/ecdsa/go121_export.go b/pkg/crypto/ecdsa/go121_export.go index 89c0cde1..70ac7203 100755 --- a/pkg/crypto/ecdsa/go121_export.go +++ b/pkg/crypto/ecdsa/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package ecdsa diff --git a/pkg/crypto/ecdsa/go122_export.go b/pkg/crypto/ecdsa/go122_export.go new file mode 100755 index 00000000..4bf7d248 --- /dev/null +++ b/pkg/crypto/ecdsa/go122_export.go @@ -0,0 +1,58 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package ecdsa + +import ( + q "crypto/ecdsa" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "ecdsa", + Path: "crypto/ecdsa", + Deps: map[string]string{ + "bytes": "bytes", + "crypto": "crypto", + "crypto/aes": "aes", + "crypto/cipher": "cipher", + "crypto/ecdh": "ecdh", + "crypto/elliptic": "elliptic", + "crypto/internal/bigmod": "bigmod", + "crypto/internal/boring": "boring", + "crypto/internal/boring/bbig": "bbig", + "crypto/internal/nistec": "nistec", + "crypto/internal/randutil": "randutil", + "crypto/sha512": "sha512", + "crypto/subtle": "subtle", + "errors": "errors", + "io": "io", + "math/big": "big", + "sync": "sync", + "vendor/golang.org/x/crypto/cryptobyte": "cryptobyte", + "vendor/golang.org/x/crypto/cryptobyte/asn1": "asn1", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "PrivateKey": reflect.TypeOf((*q.PrivateKey)(nil)).Elem(), + "PublicKey": reflect.TypeOf((*q.PublicKey)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "GenerateKey": reflect.ValueOf(q.GenerateKey), + "Sign": reflect.ValueOf(q.Sign), + "SignASN1": reflect.ValueOf(q.SignASN1), + "Verify": reflect.ValueOf(q.Verify), + "VerifyASN1": reflect.ValueOf(q.VerifyASN1), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/ecdsa/go123_export.go b/pkg/crypto/ecdsa/go123_export.go new file mode 100755 index 00000000..f87f2c6d --- /dev/null +++ b/pkg/crypto/ecdsa/go123_export.go @@ -0,0 +1,58 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package ecdsa + +import ( + q "crypto/ecdsa" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "ecdsa", + Path: "crypto/ecdsa", + Deps: map[string]string{ + "bytes": "bytes", + "crypto": "crypto", + "crypto/aes": "aes", + "crypto/cipher": "cipher", + "crypto/ecdh": "ecdh", + "crypto/elliptic": "elliptic", + "crypto/internal/bigmod": "bigmod", + "crypto/internal/boring": "boring", + "crypto/internal/boring/bbig": "bbig", + "crypto/internal/nistec": "nistec", + "crypto/internal/randutil": "randutil", + "crypto/sha512": "sha512", + "crypto/subtle": "subtle", + "errors": "errors", + "io": "io", + "math/big": "big", + "sync": "sync", + "vendor/golang.org/x/crypto/cryptobyte": "cryptobyte", + "vendor/golang.org/x/crypto/cryptobyte/asn1": "asn1", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "PrivateKey": reflect.TypeOf((*q.PrivateKey)(nil)).Elem(), + "PublicKey": reflect.TypeOf((*q.PublicKey)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "GenerateKey": reflect.ValueOf(q.GenerateKey), + "Sign": reflect.ValueOf(q.Sign), + "SignASN1": reflect.ValueOf(q.SignASN1), + "Verify": reflect.ValueOf(q.Verify), + "VerifyASN1": reflect.ValueOf(q.VerifyASN1), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/ed25519/go121_export.go b/pkg/crypto/ed25519/go121_export.go index 4d4b98d9..6aa87e9e 100755 --- a/pkg/crypto/ed25519/go121_export.go +++ b/pkg/crypto/ed25519/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package ed25519 diff --git a/pkg/crypto/ed25519/go122_export.go b/pkg/crypto/ed25519/go122_export.go new file mode 100755 index 00000000..cebe01a3 --- /dev/null +++ b/pkg/crypto/ed25519/go122_export.go @@ -0,0 +1,55 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package ed25519 + +import ( + q "crypto/ed25519" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "ed25519", + Path: "crypto/ed25519", + Deps: map[string]string{ + "bytes": "bytes", + "crypto": "crypto", + "crypto/internal/edwards25519": "edwards25519", + "crypto/rand": "rand", + "crypto/sha512": "sha512", + "crypto/subtle": "subtle", + "errors": "errors", + "io": "io", + "strconv": "strconv", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Options": reflect.TypeOf((*q.Options)(nil)).Elem(), + "PrivateKey": reflect.TypeOf((*q.PrivateKey)(nil)).Elem(), + "PublicKey": reflect.TypeOf((*q.PublicKey)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "GenerateKey": reflect.ValueOf(q.GenerateKey), + "NewKeyFromSeed": reflect.ValueOf(q.NewKeyFromSeed), + "Sign": reflect.ValueOf(q.Sign), + "Verify": reflect.ValueOf(q.Verify), + "VerifyWithOptions": reflect.ValueOf(q.VerifyWithOptions), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "PrivateKeySize": {"untyped int", constant.MakeInt64(int64(q.PrivateKeySize))}, + "PublicKeySize": {"untyped int", constant.MakeInt64(int64(q.PublicKeySize))}, + "SeedSize": {"untyped int", constant.MakeInt64(int64(q.SeedSize))}, + "SignatureSize": {"untyped int", constant.MakeInt64(int64(q.SignatureSize))}, + }, + }) +} diff --git a/pkg/crypto/ed25519/go123_export.go b/pkg/crypto/ed25519/go123_export.go new file mode 100755 index 00000000..0a807f55 --- /dev/null +++ b/pkg/crypto/ed25519/go123_export.go @@ -0,0 +1,55 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package ed25519 + +import ( + q "crypto/ed25519" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "ed25519", + Path: "crypto/ed25519", + Deps: map[string]string{ + "bytes": "bytes", + "crypto": "crypto", + "crypto/internal/edwards25519": "edwards25519", + "crypto/rand": "rand", + "crypto/sha512": "sha512", + "crypto/subtle": "subtle", + "errors": "errors", + "io": "io", + "strconv": "strconv", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Options": reflect.TypeOf((*q.Options)(nil)).Elem(), + "PrivateKey": reflect.TypeOf((*q.PrivateKey)(nil)).Elem(), + "PublicKey": reflect.TypeOf((*q.PublicKey)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "GenerateKey": reflect.ValueOf(q.GenerateKey), + "NewKeyFromSeed": reflect.ValueOf(q.NewKeyFromSeed), + "Sign": reflect.ValueOf(q.Sign), + "Verify": reflect.ValueOf(q.Verify), + "VerifyWithOptions": reflect.ValueOf(q.VerifyWithOptions), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "PrivateKeySize": {"untyped int", constant.MakeInt64(int64(q.PrivateKeySize))}, + "PublicKeySize": {"untyped int", constant.MakeInt64(int64(q.PublicKeySize))}, + "SeedSize": {"untyped int", constant.MakeInt64(int64(q.SeedSize))}, + "SignatureSize": {"untyped int", constant.MakeInt64(int64(q.SignatureSize))}, + }, + }) +} diff --git a/pkg/crypto/elliptic/go121_export.go b/pkg/crypto/elliptic/go121_export.go index 1b9994a3..a9c3239c 100755 --- a/pkg/crypto/elliptic/go121_export.go +++ b/pkg/crypto/elliptic/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package elliptic diff --git a/pkg/crypto/elliptic/go122_export.go b/pkg/crypto/elliptic/go122_export.go new file mode 100755 index 00000000..27db055f --- /dev/null +++ b/pkg/crypto/elliptic/go122_export.go @@ -0,0 +1,49 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package elliptic + +import ( + q "crypto/elliptic" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "elliptic", + Path: "crypto/elliptic", + Deps: map[string]string{ + "crypto/internal/nistec": "nistec", + "errors": "errors", + "io": "io", + "math/big": "big", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{ + "Curve": reflect.TypeOf((*q.Curve)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "CurveParams": reflect.TypeOf((*q.CurveParams)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "GenerateKey": reflect.ValueOf(q.GenerateKey), + "Marshal": reflect.ValueOf(q.Marshal), + "MarshalCompressed": reflect.ValueOf(q.MarshalCompressed), + "P224": reflect.ValueOf(q.P224), + "P256": reflect.ValueOf(q.P256), + "P384": reflect.ValueOf(q.P384), + "P521": reflect.ValueOf(q.P521), + "Unmarshal": reflect.ValueOf(q.Unmarshal), + "UnmarshalCompressed": reflect.ValueOf(q.UnmarshalCompressed), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/elliptic/go123_export.go b/pkg/crypto/elliptic/go123_export.go new file mode 100755 index 00000000..a196d036 --- /dev/null +++ b/pkg/crypto/elliptic/go123_export.go @@ -0,0 +1,49 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package elliptic + +import ( + q "crypto/elliptic" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "elliptic", + Path: "crypto/elliptic", + Deps: map[string]string{ + "crypto/internal/nistec": "nistec", + "errors": "errors", + "io": "io", + "math/big": "big", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{ + "Curve": reflect.TypeOf((*q.Curve)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "CurveParams": reflect.TypeOf((*q.CurveParams)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "GenerateKey": reflect.ValueOf(q.GenerateKey), + "Marshal": reflect.ValueOf(q.Marshal), + "MarshalCompressed": reflect.ValueOf(q.MarshalCompressed), + "P224": reflect.ValueOf(q.P224), + "P256": reflect.ValueOf(q.P256), + "P384": reflect.ValueOf(q.P384), + "P521": reflect.ValueOf(q.P521), + "Unmarshal": reflect.ValueOf(q.Unmarshal), + "UnmarshalCompressed": reflect.ValueOf(q.UnmarshalCompressed), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/go121_export.go b/pkg/crypto/go121_export.go index b1e787d8..f92c6b3c 100755 --- a/pkg/crypto/go121_export.go +++ b/pkg/crypto/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package crypto diff --git a/pkg/crypto/go122_export.go b/pkg/crypto/go122_export.go new file mode 100755 index 00000000..ba23418c --- /dev/null +++ b/pkg/crypto/go122_export.go @@ -0,0 +1,65 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package crypto + +import ( + q "crypto" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "crypto", + Path: "crypto", + Deps: map[string]string{ + "hash": "hash", + "io": "io", + "strconv": "strconv", + }, + Interfaces: map[string]reflect.Type{ + "Decrypter": reflect.TypeOf((*q.Decrypter)(nil)).Elem(), + "DecrypterOpts": reflect.TypeOf((*q.DecrypterOpts)(nil)).Elem(), + "PrivateKey": reflect.TypeOf((*q.PrivateKey)(nil)).Elem(), + "PublicKey": reflect.TypeOf((*q.PublicKey)(nil)).Elem(), + "Signer": reflect.TypeOf((*q.Signer)(nil)).Elem(), + "SignerOpts": reflect.TypeOf((*q.SignerOpts)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Hash": reflect.TypeOf((*q.Hash)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "RegisterHash": reflect.ValueOf(q.RegisterHash), + }, + TypedConsts: map[string]igop.TypedConst{ + "BLAKE2b_256": {reflect.TypeOf(q.BLAKE2b_256), constant.MakeInt64(int64(q.BLAKE2b_256))}, + "BLAKE2b_384": {reflect.TypeOf(q.BLAKE2b_384), constant.MakeInt64(int64(q.BLAKE2b_384))}, + "BLAKE2b_512": {reflect.TypeOf(q.BLAKE2b_512), constant.MakeInt64(int64(q.BLAKE2b_512))}, + "BLAKE2s_256": {reflect.TypeOf(q.BLAKE2s_256), constant.MakeInt64(int64(q.BLAKE2s_256))}, + "MD4": {reflect.TypeOf(q.MD4), constant.MakeInt64(int64(q.MD4))}, + "MD5": {reflect.TypeOf(q.MD5), constant.MakeInt64(int64(q.MD5))}, + "MD5SHA1": {reflect.TypeOf(q.MD5SHA1), constant.MakeInt64(int64(q.MD5SHA1))}, + "RIPEMD160": {reflect.TypeOf(q.RIPEMD160), constant.MakeInt64(int64(q.RIPEMD160))}, + "SHA1": {reflect.TypeOf(q.SHA1), constant.MakeInt64(int64(q.SHA1))}, + "SHA224": {reflect.TypeOf(q.SHA224), constant.MakeInt64(int64(q.SHA224))}, + "SHA256": {reflect.TypeOf(q.SHA256), constant.MakeInt64(int64(q.SHA256))}, + "SHA384": {reflect.TypeOf(q.SHA384), constant.MakeInt64(int64(q.SHA384))}, + "SHA3_224": {reflect.TypeOf(q.SHA3_224), constant.MakeInt64(int64(q.SHA3_224))}, + "SHA3_256": {reflect.TypeOf(q.SHA3_256), constant.MakeInt64(int64(q.SHA3_256))}, + "SHA3_384": {reflect.TypeOf(q.SHA3_384), constant.MakeInt64(int64(q.SHA3_384))}, + "SHA3_512": {reflect.TypeOf(q.SHA3_512), constant.MakeInt64(int64(q.SHA3_512))}, + "SHA512": {reflect.TypeOf(q.SHA512), constant.MakeInt64(int64(q.SHA512))}, + "SHA512_224": {reflect.TypeOf(q.SHA512_224), constant.MakeInt64(int64(q.SHA512_224))}, + "SHA512_256": {reflect.TypeOf(q.SHA512_256), constant.MakeInt64(int64(q.SHA512_256))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/go123_export.go b/pkg/crypto/go123_export.go new file mode 100755 index 00000000..c68c0349 --- /dev/null +++ b/pkg/crypto/go123_export.go @@ -0,0 +1,65 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package crypto + +import ( + q "crypto" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "crypto", + Path: "crypto", + Deps: map[string]string{ + "hash": "hash", + "io": "io", + "strconv": "strconv", + }, + Interfaces: map[string]reflect.Type{ + "Decrypter": reflect.TypeOf((*q.Decrypter)(nil)).Elem(), + "DecrypterOpts": reflect.TypeOf((*q.DecrypterOpts)(nil)).Elem(), + "PrivateKey": reflect.TypeOf((*q.PrivateKey)(nil)).Elem(), + "PublicKey": reflect.TypeOf((*q.PublicKey)(nil)).Elem(), + "Signer": reflect.TypeOf((*q.Signer)(nil)).Elem(), + "SignerOpts": reflect.TypeOf((*q.SignerOpts)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Hash": reflect.TypeOf((*q.Hash)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "RegisterHash": reflect.ValueOf(q.RegisterHash), + }, + TypedConsts: map[string]igop.TypedConst{ + "BLAKE2b_256": {reflect.TypeOf(q.BLAKE2b_256), constant.MakeInt64(int64(q.BLAKE2b_256))}, + "BLAKE2b_384": {reflect.TypeOf(q.BLAKE2b_384), constant.MakeInt64(int64(q.BLAKE2b_384))}, + "BLAKE2b_512": {reflect.TypeOf(q.BLAKE2b_512), constant.MakeInt64(int64(q.BLAKE2b_512))}, + "BLAKE2s_256": {reflect.TypeOf(q.BLAKE2s_256), constant.MakeInt64(int64(q.BLAKE2s_256))}, + "MD4": {reflect.TypeOf(q.MD4), constant.MakeInt64(int64(q.MD4))}, + "MD5": {reflect.TypeOf(q.MD5), constant.MakeInt64(int64(q.MD5))}, + "MD5SHA1": {reflect.TypeOf(q.MD5SHA1), constant.MakeInt64(int64(q.MD5SHA1))}, + "RIPEMD160": {reflect.TypeOf(q.RIPEMD160), constant.MakeInt64(int64(q.RIPEMD160))}, + "SHA1": {reflect.TypeOf(q.SHA1), constant.MakeInt64(int64(q.SHA1))}, + "SHA224": {reflect.TypeOf(q.SHA224), constant.MakeInt64(int64(q.SHA224))}, + "SHA256": {reflect.TypeOf(q.SHA256), constant.MakeInt64(int64(q.SHA256))}, + "SHA384": {reflect.TypeOf(q.SHA384), constant.MakeInt64(int64(q.SHA384))}, + "SHA3_224": {reflect.TypeOf(q.SHA3_224), constant.MakeInt64(int64(q.SHA3_224))}, + "SHA3_256": {reflect.TypeOf(q.SHA3_256), constant.MakeInt64(int64(q.SHA3_256))}, + "SHA3_384": {reflect.TypeOf(q.SHA3_384), constant.MakeInt64(int64(q.SHA3_384))}, + "SHA3_512": {reflect.TypeOf(q.SHA3_512), constant.MakeInt64(int64(q.SHA3_512))}, + "SHA512": {reflect.TypeOf(q.SHA512), constant.MakeInt64(int64(q.SHA512))}, + "SHA512_224": {reflect.TypeOf(q.SHA512_224), constant.MakeInt64(int64(q.SHA512_224))}, + "SHA512_256": {reflect.TypeOf(q.SHA512_256), constant.MakeInt64(int64(q.SHA512_256))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/hmac/go121_export.go b/pkg/crypto/hmac/go121_export.go index 791224c5..b142aa28 100755 --- a/pkg/crypto/hmac/go121_export.go +++ b/pkg/crypto/hmac/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package hmac diff --git a/pkg/crypto/hmac/go122_export.go b/pkg/crypto/hmac/go122_export.go new file mode 100755 index 00000000..de0f1b36 --- /dev/null +++ b/pkg/crypto/hmac/go122_export.go @@ -0,0 +1,36 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package hmac + +import ( + q "crypto/hmac" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "hmac", + Path: "crypto/hmac", + Deps: map[string]string{ + "crypto/internal/boring": "boring", + "crypto/subtle": "subtle", + "hash": "hash", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Equal": reflect.ValueOf(q.Equal), + "New": reflect.ValueOf(q.New), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/hmac/go123_export.go b/pkg/crypto/hmac/go123_export.go new file mode 100755 index 00000000..83665a31 --- /dev/null +++ b/pkg/crypto/hmac/go123_export.go @@ -0,0 +1,36 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package hmac + +import ( + q "crypto/hmac" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "hmac", + Path: "crypto/hmac", + Deps: map[string]string{ + "crypto/internal/boring": "boring", + "crypto/subtle": "subtle", + "hash": "hash", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Equal": reflect.ValueOf(q.Equal), + "New": reflect.ValueOf(q.New), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/md5/go121_export.go b/pkg/crypto/md5/go121_export.go index c912f1a2..d8863598 100755 --- a/pkg/crypto/md5/go121_export.go +++ b/pkg/crypto/md5/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package md5 diff --git a/pkg/crypto/md5/go122_export.go b/pkg/crypto/md5/go122_export.go new file mode 100755 index 00000000..83eef14d --- /dev/null +++ b/pkg/crypto/md5/go122_export.go @@ -0,0 +1,42 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package md5 + +import ( + q "crypto/md5" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "md5", + Path: "crypto/md5", + Deps: map[string]string{ + "crypto": "crypto", + "encoding/binary": "binary", + "errors": "errors", + "hash": "hash", + "math/bits": "bits", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "New": reflect.ValueOf(q.New), + "Sum": reflect.ValueOf(q.Sum), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "BlockSize": {"untyped int", constant.MakeInt64(int64(q.BlockSize))}, + "Size": {"untyped int", constant.MakeInt64(int64(q.Size))}, + }, + }) +} diff --git a/pkg/crypto/md5/go123_export.go b/pkg/crypto/md5/go123_export.go new file mode 100755 index 00000000..ac67d8ad --- /dev/null +++ b/pkg/crypto/md5/go123_export.go @@ -0,0 +1,42 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package md5 + +import ( + q "crypto/md5" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "md5", + Path: "crypto/md5", + Deps: map[string]string{ + "crypto": "crypto", + "errors": "errors", + "hash": "hash", + "internal/byteorder": "byteorder", + "math/bits": "bits", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "New": reflect.ValueOf(q.New), + "Sum": reflect.ValueOf(q.Sum), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "BlockSize": {"untyped int", constant.MakeInt64(int64(q.BlockSize))}, + "Size": {"untyped int", constant.MakeInt64(int64(q.Size))}, + }, + }) +} diff --git a/pkg/crypto/rand/go121_export.go b/pkg/crypto/rand/go121_export.go index 44d37418..a4ddf6a1 100755 --- a/pkg/crypto/rand/go121_export.go +++ b/pkg/crypto/rand/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package rand diff --git a/pkg/crypto/rand/go122_export.go b/pkg/crypto/rand/go122_export.go new file mode 100755 index 00000000..bfe34a69 --- /dev/null +++ b/pkg/crypto/rand/go122_export.go @@ -0,0 +1,47 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package rand + +import ( + q "crypto/rand" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "rand", + Path: "crypto/rand", + Deps: map[string]string{ + "crypto/internal/boring": "boring", + "crypto/internal/randutil": "randutil", + "errors": "errors", + "internal/syscall/unix": "unix", + "io": "io", + "math/big": "big", + "os": "os", + "sync": "sync", + "sync/atomic": "atomic", + "syscall": "syscall", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Reader": reflect.ValueOf(&q.Reader), + }, + Funcs: map[string]reflect.Value{ + "Int": reflect.ValueOf(q.Int), + "Prime": reflect.ValueOf(q.Prime), + "Read": reflect.ValueOf(q.Read), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/rand/go123_export.go b/pkg/crypto/rand/go123_export.go new file mode 100755 index 00000000..d681f1f9 --- /dev/null +++ b/pkg/crypto/rand/go123_export.go @@ -0,0 +1,47 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package rand + +import ( + q "crypto/rand" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "rand", + Path: "crypto/rand", + Deps: map[string]string{ + "crypto/internal/boring": "boring", + "crypto/internal/randutil": "randutil", + "errors": "errors", + "internal/syscall/unix": "unix", + "io": "io", + "math/big": "big", + "os": "os", + "sync": "sync", + "sync/atomic": "atomic", + "syscall": "syscall", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Reader": reflect.ValueOf(&q.Reader), + }, + Funcs: map[string]reflect.Value{ + "Int": reflect.ValueOf(q.Int), + "Prime": reflect.ValueOf(q.Prime), + "Read": reflect.ValueOf(q.Read), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/rc4/go121_export.go b/pkg/crypto/rc4/go121_export.go index 87f3bc1a..4fab7a8b 100755 --- a/pkg/crypto/rc4/go121_export.go +++ b/pkg/crypto/rc4/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package rc4 diff --git a/pkg/crypto/rc4/go122_export.go b/pkg/crypto/rc4/go122_export.go new file mode 100755 index 00000000..d5c1917c --- /dev/null +++ b/pkg/crypto/rc4/go122_export.go @@ -0,0 +1,37 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package rc4 + +import ( + q "crypto/rc4" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "rc4", + Path: "crypto/rc4", + Deps: map[string]string{ + "crypto/internal/alias": "alias", + "strconv": "strconv", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Cipher": reflect.TypeOf((*q.Cipher)(nil)).Elem(), + "KeySizeError": reflect.TypeOf((*q.KeySizeError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewCipher": reflect.ValueOf(q.NewCipher), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/rc4/go123_export.go b/pkg/crypto/rc4/go123_export.go new file mode 100755 index 00000000..267c80c7 --- /dev/null +++ b/pkg/crypto/rc4/go123_export.go @@ -0,0 +1,37 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package rc4 + +import ( + q "crypto/rc4" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "rc4", + Path: "crypto/rc4", + Deps: map[string]string{ + "crypto/internal/alias": "alias", + "strconv": "strconv", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Cipher": reflect.TypeOf((*q.Cipher)(nil)).Elem(), + "KeySizeError": reflect.TypeOf((*q.KeySizeError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewCipher": reflect.ValueOf(q.NewCipher), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/rsa/go121_export.go b/pkg/crypto/rsa/go121_export.go index 88ef24b3..2e17d65f 100755 --- a/pkg/crypto/rsa/go121_export.go +++ b/pkg/crypto/rsa/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package rsa diff --git a/pkg/crypto/rsa/go122_export.go b/pkg/crypto/rsa/go122_export.go new file mode 100755 index 00000000..c1d814d9 --- /dev/null +++ b/pkg/crypto/rsa/go122_export.go @@ -0,0 +1,71 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package rsa + +import ( + q "crypto/rsa" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "rsa", + Path: "crypto/rsa", + Deps: map[string]string{ + "bytes": "bytes", + "crypto": "crypto", + "crypto/internal/bigmod": "bigmod", + "crypto/internal/boring": "boring", + "crypto/internal/boring/bbig": "bbig", + "crypto/internal/randutil": "randutil", + "crypto/rand": "rand", + "crypto/subtle": "subtle", + "errors": "errors", + "hash": "hash", + "io": "io", + "math": "math", + "math/big": "big", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "CRTValue": reflect.TypeOf((*q.CRTValue)(nil)).Elem(), + "OAEPOptions": reflect.TypeOf((*q.OAEPOptions)(nil)).Elem(), + "PKCS1v15DecryptOptions": reflect.TypeOf((*q.PKCS1v15DecryptOptions)(nil)).Elem(), + "PSSOptions": reflect.TypeOf((*q.PSSOptions)(nil)).Elem(), + "PrecomputedValues": reflect.TypeOf((*q.PrecomputedValues)(nil)).Elem(), + "PrivateKey": reflect.TypeOf((*q.PrivateKey)(nil)).Elem(), + "PublicKey": reflect.TypeOf((*q.PublicKey)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrDecryption": reflect.ValueOf(&q.ErrDecryption), + "ErrMessageTooLong": reflect.ValueOf(&q.ErrMessageTooLong), + "ErrVerification": reflect.ValueOf(&q.ErrVerification), + }, + Funcs: map[string]reflect.Value{ + "DecryptOAEP": reflect.ValueOf(q.DecryptOAEP), + "DecryptPKCS1v15": reflect.ValueOf(q.DecryptPKCS1v15), + "DecryptPKCS1v15SessionKey": reflect.ValueOf(q.DecryptPKCS1v15SessionKey), + "EncryptOAEP": reflect.ValueOf(q.EncryptOAEP), + "EncryptPKCS1v15": reflect.ValueOf(q.EncryptPKCS1v15), + "GenerateKey": reflect.ValueOf(q.GenerateKey), + "GenerateMultiPrimeKey": reflect.ValueOf(q.GenerateMultiPrimeKey), + "SignPKCS1v15": reflect.ValueOf(q.SignPKCS1v15), + "SignPSS": reflect.ValueOf(q.SignPSS), + "VerifyPKCS1v15": reflect.ValueOf(q.VerifyPKCS1v15), + "VerifyPSS": reflect.ValueOf(q.VerifyPSS), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "PSSSaltLengthAuto": {"untyped int", constant.MakeInt64(int64(q.PSSSaltLengthAuto))}, + "PSSSaltLengthEqualsHash": {"untyped int", constant.MakeInt64(int64(q.PSSSaltLengthEqualsHash))}, + }, + }) +} diff --git a/pkg/crypto/rsa/go123_export.go b/pkg/crypto/rsa/go123_export.go new file mode 100755 index 00000000..1d97517b --- /dev/null +++ b/pkg/crypto/rsa/go123_export.go @@ -0,0 +1,71 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package rsa + +import ( + q "crypto/rsa" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "rsa", + Path: "crypto/rsa", + Deps: map[string]string{ + "bytes": "bytes", + "crypto": "crypto", + "crypto/internal/bigmod": "bigmod", + "crypto/internal/boring": "boring", + "crypto/internal/boring/bbig": "bbig", + "crypto/internal/randutil": "randutil", + "crypto/rand": "rand", + "crypto/subtle": "subtle", + "errors": "errors", + "hash": "hash", + "io": "io", + "math": "math", + "math/big": "big", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "CRTValue": reflect.TypeOf((*q.CRTValue)(nil)).Elem(), + "OAEPOptions": reflect.TypeOf((*q.OAEPOptions)(nil)).Elem(), + "PKCS1v15DecryptOptions": reflect.TypeOf((*q.PKCS1v15DecryptOptions)(nil)).Elem(), + "PSSOptions": reflect.TypeOf((*q.PSSOptions)(nil)).Elem(), + "PrecomputedValues": reflect.TypeOf((*q.PrecomputedValues)(nil)).Elem(), + "PrivateKey": reflect.TypeOf((*q.PrivateKey)(nil)).Elem(), + "PublicKey": reflect.TypeOf((*q.PublicKey)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrDecryption": reflect.ValueOf(&q.ErrDecryption), + "ErrMessageTooLong": reflect.ValueOf(&q.ErrMessageTooLong), + "ErrVerification": reflect.ValueOf(&q.ErrVerification), + }, + Funcs: map[string]reflect.Value{ + "DecryptOAEP": reflect.ValueOf(q.DecryptOAEP), + "DecryptPKCS1v15": reflect.ValueOf(q.DecryptPKCS1v15), + "DecryptPKCS1v15SessionKey": reflect.ValueOf(q.DecryptPKCS1v15SessionKey), + "EncryptOAEP": reflect.ValueOf(q.EncryptOAEP), + "EncryptPKCS1v15": reflect.ValueOf(q.EncryptPKCS1v15), + "GenerateKey": reflect.ValueOf(q.GenerateKey), + "GenerateMultiPrimeKey": reflect.ValueOf(q.GenerateMultiPrimeKey), + "SignPKCS1v15": reflect.ValueOf(q.SignPKCS1v15), + "SignPSS": reflect.ValueOf(q.SignPSS), + "VerifyPKCS1v15": reflect.ValueOf(q.VerifyPKCS1v15), + "VerifyPSS": reflect.ValueOf(q.VerifyPSS), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "PSSSaltLengthAuto": {"untyped int", constant.MakeInt64(int64(q.PSSSaltLengthAuto))}, + "PSSSaltLengthEqualsHash": {"untyped int", constant.MakeInt64(int64(q.PSSSaltLengthEqualsHash))}, + }, + }) +} diff --git a/pkg/crypto/sha1/go121_export.go b/pkg/crypto/sha1/go121_export.go index 1ad0d708..164578a1 100755 --- a/pkg/crypto/sha1/go121_export.go +++ b/pkg/crypto/sha1/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package sha1 diff --git a/pkg/crypto/sha1/go122_export.go b/pkg/crypto/sha1/go122_export.go new file mode 100755 index 00000000..370efde4 --- /dev/null +++ b/pkg/crypto/sha1/go122_export.go @@ -0,0 +1,44 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package sha1 + +import ( + q "crypto/sha1" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "sha1", + Path: "crypto/sha1", + Deps: map[string]string{ + "crypto": "crypto", + "crypto/internal/boring": "boring", + "encoding/binary": "binary", + "errors": "errors", + "hash": "hash", + "internal/cpu": "cpu", + "math/bits": "bits", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "New": reflect.ValueOf(q.New), + "Sum": reflect.ValueOf(q.Sum), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "BlockSize": {"untyped int", constant.MakeInt64(int64(q.BlockSize))}, + "Size": {"untyped int", constant.MakeInt64(int64(q.Size))}, + }, + }) +} diff --git a/pkg/crypto/sha1/go123_export.go b/pkg/crypto/sha1/go123_export.go new file mode 100755 index 00000000..a30e2f6c --- /dev/null +++ b/pkg/crypto/sha1/go123_export.go @@ -0,0 +1,44 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package sha1 + +import ( + q "crypto/sha1" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "sha1", + Path: "crypto/sha1", + Deps: map[string]string{ + "crypto": "crypto", + "crypto/internal/boring": "boring", + "errors": "errors", + "hash": "hash", + "internal/byteorder": "byteorder", + "internal/cpu": "cpu", + "math/bits": "bits", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "New": reflect.ValueOf(q.New), + "Sum": reflect.ValueOf(q.Sum), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "BlockSize": {"untyped int", constant.MakeInt64(int64(q.BlockSize))}, + "Size": {"untyped int", constant.MakeInt64(int64(q.Size))}, + }, + }) +} diff --git a/pkg/crypto/sha256/go121_export.go b/pkg/crypto/sha256/go121_export.go index 0c26324e..be88b9f0 100755 --- a/pkg/crypto/sha256/go121_export.go +++ b/pkg/crypto/sha256/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package sha256 diff --git a/pkg/crypto/sha256/go122_export.go b/pkg/crypto/sha256/go122_export.go new file mode 100755 index 00000000..67e097e6 --- /dev/null +++ b/pkg/crypto/sha256/go122_export.go @@ -0,0 +1,47 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package sha256 + +import ( + q "crypto/sha256" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "sha256", + Path: "crypto/sha256", + Deps: map[string]string{ + "crypto": "crypto", + "crypto/internal/boring": "boring", + "encoding/binary": "binary", + "errors": "errors", + "hash": "hash", + "internal/cpu": "cpu", + "math/bits": "bits", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "New": reflect.ValueOf(q.New), + "New224": reflect.ValueOf(q.New224), + "Sum224": reflect.ValueOf(q.Sum224), + "Sum256": reflect.ValueOf(q.Sum256), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "BlockSize": {"untyped int", constant.MakeInt64(int64(q.BlockSize))}, + "Size": {"untyped int", constant.MakeInt64(int64(q.Size))}, + "Size224": {"untyped int", constant.MakeInt64(int64(q.Size224))}, + }, + }) +} diff --git a/pkg/crypto/sha256/go123_export.go b/pkg/crypto/sha256/go123_export.go new file mode 100755 index 00000000..011efc2c --- /dev/null +++ b/pkg/crypto/sha256/go123_export.go @@ -0,0 +1,47 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package sha256 + +import ( + q "crypto/sha256" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "sha256", + Path: "crypto/sha256", + Deps: map[string]string{ + "crypto": "crypto", + "crypto/internal/boring": "boring", + "errors": "errors", + "hash": "hash", + "internal/byteorder": "byteorder", + "internal/cpu": "cpu", + "math/bits": "bits", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "New": reflect.ValueOf(q.New), + "New224": reflect.ValueOf(q.New224), + "Sum224": reflect.ValueOf(q.Sum224), + "Sum256": reflect.ValueOf(q.Sum256), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "BlockSize": {"untyped int", constant.MakeInt64(int64(q.BlockSize))}, + "Size": {"untyped int", constant.MakeInt64(int64(q.Size))}, + "Size224": {"untyped int", constant.MakeInt64(int64(q.Size224))}, + }, + }) +} diff --git a/pkg/crypto/sha512/go121_export.go b/pkg/crypto/sha512/go121_export.go index 695a98a0..4d7178a5 100755 --- a/pkg/crypto/sha512/go121_export.go +++ b/pkg/crypto/sha512/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package sha512 diff --git a/pkg/crypto/sha512/go122_export.go b/pkg/crypto/sha512/go122_export.go new file mode 100755 index 00000000..50de1ef1 --- /dev/null +++ b/pkg/crypto/sha512/go122_export.go @@ -0,0 +1,53 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package sha512 + +import ( + q "crypto/sha512" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "sha512", + Path: "crypto/sha512", + Deps: map[string]string{ + "crypto": "crypto", + "crypto/internal/boring": "boring", + "encoding/binary": "binary", + "errors": "errors", + "hash": "hash", + "internal/cpu": "cpu", + "math/bits": "bits", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "New": reflect.ValueOf(q.New), + "New384": reflect.ValueOf(q.New384), + "New512_224": reflect.ValueOf(q.New512_224), + "New512_256": reflect.ValueOf(q.New512_256), + "Sum384": reflect.ValueOf(q.Sum384), + "Sum512": reflect.ValueOf(q.Sum512), + "Sum512_224": reflect.ValueOf(q.Sum512_224), + "Sum512_256": reflect.ValueOf(q.Sum512_256), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "BlockSize": {"untyped int", constant.MakeInt64(int64(q.BlockSize))}, + "Size": {"untyped int", constant.MakeInt64(int64(q.Size))}, + "Size224": {"untyped int", constant.MakeInt64(int64(q.Size224))}, + "Size256": {"untyped int", constant.MakeInt64(int64(q.Size256))}, + "Size384": {"untyped int", constant.MakeInt64(int64(q.Size384))}, + }, + }) +} diff --git a/pkg/crypto/sha512/go123_export.go b/pkg/crypto/sha512/go123_export.go new file mode 100755 index 00000000..d854eed6 --- /dev/null +++ b/pkg/crypto/sha512/go123_export.go @@ -0,0 +1,53 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package sha512 + +import ( + q "crypto/sha512" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "sha512", + Path: "crypto/sha512", + Deps: map[string]string{ + "crypto": "crypto", + "crypto/internal/boring": "boring", + "errors": "errors", + "hash": "hash", + "internal/byteorder": "byteorder", + "internal/cpu": "cpu", + "math/bits": "bits", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "New": reflect.ValueOf(q.New), + "New384": reflect.ValueOf(q.New384), + "New512_224": reflect.ValueOf(q.New512_224), + "New512_256": reflect.ValueOf(q.New512_256), + "Sum384": reflect.ValueOf(q.Sum384), + "Sum512": reflect.ValueOf(q.Sum512), + "Sum512_224": reflect.ValueOf(q.Sum512_224), + "Sum512_256": reflect.ValueOf(q.Sum512_256), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "BlockSize": {"untyped int", constant.MakeInt64(int64(q.BlockSize))}, + "Size": {"untyped int", constant.MakeInt64(int64(q.Size))}, + "Size224": {"untyped int", constant.MakeInt64(int64(q.Size224))}, + "Size256": {"untyped int", constant.MakeInt64(int64(q.Size256))}, + "Size384": {"untyped int", constant.MakeInt64(int64(q.Size384))}, + }, + }) +} diff --git a/pkg/crypto/subtle/go121_export.go b/pkg/crypto/subtle/go121_export.go index f223f140..e8f787d4 100755 --- a/pkg/crypto/subtle/go121_export.go +++ b/pkg/crypto/subtle/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package subtle diff --git a/pkg/crypto/subtle/go122_export.go b/pkg/crypto/subtle/go122_export.go new file mode 100755 index 00000000..30f3cb1b --- /dev/null +++ b/pkg/crypto/subtle/go122_export.go @@ -0,0 +1,37 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package subtle + +import ( + q "crypto/subtle" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "subtle", + Path: "crypto/subtle", + Deps: map[string]string{}, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "ConstantTimeByteEq": reflect.ValueOf(q.ConstantTimeByteEq), + "ConstantTimeCompare": reflect.ValueOf(q.ConstantTimeCompare), + "ConstantTimeCopy": reflect.ValueOf(q.ConstantTimeCopy), + "ConstantTimeEq": reflect.ValueOf(q.ConstantTimeEq), + "ConstantTimeLessOrEq": reflect.ValueOf(q.ConstantTimeLessOrEq), + "ConstantTimeSelect": reflect.ValueOf(q.ConstantTimeSelect), + "XORBytes": reflect.ValueOf(q.XORBytes), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/subtle/go123_export.go b/pkg/crypto/subtle/go123_export.go new file mode 100755 index 00000000..440cff67 --- /dev/null +++ b/pkg/crypto/subtle/go123_export.go @@ -0,0 +1,37 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package subtle + +import ( + q "crypto/subtle" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "subtle", + Path: "crypto/subtle", + Deps: map[string]string{}, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "ConstantTimeByteEq": reflect.ValueOf(q.ConstantTimeByteEq), + "ConstantTimeCompare": reflect.ValueOf(q.ConstantTimeCompare), + "ConstantTimeCopy": reflect.ValueOf(q.ConstantTimeCopy), + "ConstantTimeEq": reflect.ValueOf(q.ConstantTimeEq), + "ConstantTimeLessOrEq": reflect.ValueOf(q.ConstantTimeLessOrEq), + "ConstantTimeSelect": reflect.ValueOf(q.ConstantTimeSelect), + "XORBytes": reflect.ValueOf(q.XORBytes), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/tls/go121_export.go b/pkg/crypto/tls/go121_export.go index c3fa033e..cc46591b 100755 --- a/pkg/crypto/tls/go121_export.go +++ b/pkg/crypto/tls/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package tls diff --git a/pkg/crypto/tls/go122_export.go b/pkg/crypto/tls/go122_export.go new file mode 100755 index 00000000..d92b2ba5 --- /dev/null +++ b/pkg/crypto/tls/go122_export.go @@ -0,0 +1,187 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package tls + +import ( + q "crypto/tls" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "tls", + Path: "crypto/tls", + Deps: map[string]string{ + "bytes": "bytes", + "container/list": "list", + "context": "context", + "crypto": "crypto", + "crypto/aes": "aes", + "crypto/cipher": "cipher", + "crypto/des": "des", + "crypto/ecdh": "ecdh", + "crypto/ecdsa": "ecdsa", + "crypto/ed25519": "ed25519", + "crypto/elliptic": "elliptic", + "crypto/hmac": "hmac", + "crypto/internal/boring": "boring", + "crypto/md5": "md5", + "crypto/rand": "rand", + "crypto/rc4": "rc4", + "crypto/rsa": "rsa", + "crypto/sha1": "sha1", + "crypto/sha256": "sha256", + "crypto/sha512": "sha512", + "crypto/subtle": "subtle", + "crypto/x509": "x509", + "encoding/binary": "binary", + "encoding/pem": "pem", + "errors": "errors", + "fmt": "fmt", + "hash": "hash", + "internal/cpu": "cpu", + "internal/godebug": "godebug", + "io": "io", + "net": "net", + "os": "os", + "runtime": "runtime", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "sync/atomic": "atomic", + "time": "time", + "vendor/golang.org/x/crypto/chacha20poly1305": "chacha20poly1305", + "vendor/golang.org/x/crypto/cryptobyte": "cryptobyte", + "vendor/golang.org/x/crypto/hkdf": "hkdf", + }, + Interfaces: map[string]reflect.Type{ + "ClientSessionCache": reflect.TypeOf((*q.ClientSessionCache)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "AlertError": reflect.TypeOf((*q.AlertError)(nil)).Elem(), + "Certificate": reflect.TypeOf((*q.Certificate)(nil)).Elem(), + "CertificateRequestInfo": reflect.TypeOf((*q.CertificateRequestInfo)(nil)).Elem(), + "CertificateVerificationError": reflect.TypeOf((*q.CertificateVerificationError)(nil)).Elem(), + "CipherSuite": reflect.TypeOf((*q.CipherSuite)(nil)).Elem(), + "ClientAuthType": reflect.TypeOf((*q.ClientAuthType)(nil)).Elem(), + "ClientHelloInfo": reflect.TypeOf((*q.ClientHelloInfo)(nil)).Elem(), + "ClientSessionState": reflect.TypeOf((*q.ClientSessionState)(nil)).Elem(), + "Config": reflect.TypeOf((*q.Config)(nil)).Elem(), + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "ConnectionState": reflect.TypeOf((*q.ConnectionState)(nil)).Elem(), + "CurveID": reflect.TypeOf((*q.CurveID)(nil)).Elem(), + "Dialer": reflect.TypeOf((*q.Dialer)(nil)).Elem(), + "QUICConfig": reflect.TypeOf((*q.QUICConfig)(nil)).Elem(), + "QUICConn": reflect.TypeOf((*q.QUICConn)(nil)).Elem(), + "QUICEncryptionLevel": reflect.TypeOf((*q.QUICEncryptionLevel)(nil)).Elem(), + "QUICEvent": reflect.TypeOf((*q.QUICEvent)(nil)).Elem(), + "QUICEventKind": reflect.TypeOf((*q.QUICEventKind)(nil)).Elem(), + "QUICSessionTicketOptions": reflect.TypeOf((*q.QUICSessionTicketOptions)(nil)).Elem(), + "RecordHeaderError": reflect.TypeOf((*q.RecordHeaderError)(nil)).Elem(), + "RenegotiationSupport": reflect.TypeOf((*q.RenegotiationSupport)(nil)).Elem(), + "SessionState": reflect.TypeOf((*q.SessionState)(nil)).Elem(), + "SignatureScheme": reflect.TypeOf((*q.SignatureScheme)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "CipherSuiteName": reflect.ValueOf(q.CipherSuiteName), + "CipherSuites": reflect.ValueOf(q.CipherSuites), + "Client": reflect.ValueOf(q.Client), + "Dial": reflect.ValueOf(q.Dial), + "DialWithDialer": reflect.ValueOf(q.DialWithDialer), + "InsecureCipherSuites": reflect.ValueOf(q.InsecureCipherSuites), + "Listen": reflect.ValueOf(q.Listen), + "LoadX509KeyPair": reflect.ValueOf(q.LoadX509KeyPair), + "NewLRUClientSessionCache": reflect.ValueOf(q.NewLRUClientSessionCache), + "NewListener": reflect.ValueOf(q.NewListener), + "NewResumptionState": reflect.ValueOf(q.NewResumptionState), + "ParseSessionState": reflect.ValueOf(q.ParseSessionState), + "QUICClient": reflect.ValueOf(q.QUICClient), + "QUICServer": reflect.ValueOf(q.QUICServer), + "Server": reflect.ValueOf(q.Server), + "VersionName": reflect.ValueOf(q.VersionName), + "X509KeyPair": reflect.ValueOf(q.X509KeyPair), + }, + TypedConsts: map[string]igop.TypedConst{ + "CurveP256": {reflect.TypeOf(q.CurveP256), constant.MakeInt64(int64(q.CurveP256))}, + "CurveP384": {reflect.TypeOf(q.CurveP384), constant.MakeInt64(int64(q.CurveP384))}, + "CurveP521": {reflect.TypeOf(q.CurveP521), constant.MakeInt64(int64(q.CurveP521))}, + "ECDSAWithP256AndSHA256": {reflect.TypeOf(q.ECDSAWithP256AndSHA256), constant.MakeInt64(int64(q.ECDSAWithP256AndSHA256))}, + "ECDSAWithP384AndSHA384": {reflect.TypeOf(q.ECDSAWithP384AndSHA384), constant.MakeInt64(int64(q.ECDSAWithP384AndSHA384))}, + "ECDSAWithP521AndSHA512": {reflect.TypeOf(q.ECDSAWithP521AndSHA512), constant.MakeInt64(int64(q.ECDSAWithP521AndSHA512))}, + "ECDSAWithSHA1": {reflect.TypeOf(q.ECDSAWithSHA1), constant.MakeInt64(int64(q.ECDSAWithSHA1))}, + "Ed25519": {reflect.TypeOf(q.Ed25519), constant.MakeInt64(int64(q.Ed25519))}, + "NoClientCert": {reflect.TypeOf(q.NoClientCert), constant.MakeInt64(int64(q.NoClientCert))}, + "PKCS1WithSHA1": {reflect.TypeOf(q.PKCS1WithSHA1), constant.MakeInt64(int64(q.PKCS1WithSHA1))}, + "PKCS1WithSHA256": {reflect.TypeOf(q.PKCS1WithSHA256), constant.MakeInt64(int64(q.PKCS1WithSHA256))}, + "PKCS1WithSHA384": {reflect.TypeOf(q.PKCS1WithSHA384), constant.MakeInt64(int64(q.PKCS1WithSHA384))}, + "PKCS1WithSHA512": {reflect.TypeOf(q.PKCS1WithSHA512), constant.MakeInt64(int64(q.PKCS1WithSHA512))}, + "PSSWithSHA256": {reflect.TypeOf(q.PSSWithSHA256), constant.MakeInt64(int64(q.PSSWithSHA256))}, + "PSSWithSHA384": {reflect.TypeOf(q.PSSWithSHA384), constant.MakeInt64(int64(q.PSSWithSHA384))}, + "PSSWithSHA512": {reflect.TypeOf(q.PSSWithSHA512), constant.MakeInt64(int64(q.PSSWithSHA512))}, + "QUICEncryptionLevelApplication": {reflect.TypeOf(q.QUICEncryptionLevelApplication), constant.MakeInt64(int64(q.QUICEncryptionLevelApplication))}, + "QUICEncryptionLevelEarly": {reflect.TypeOf(q.QUICEncryptionLevelEarly), constant.MakeInt64(int64(q.QUICEncryptionLevelEarly))}, + "QUICEncryptionLevelHandshake": {reflect.TypeOf(q.QUICEncryptionLevelHandshake), constant.MakeInt64(int64(q.QUICEncryptionLevelHandshake))}, + "QUICEncryptionLevelInitial": {reflect.TypeOf(q.QUICEncryptionLevelInitial), constant.MakeInt64(int64(q.QUICEncryptionLevelInitial))}, + "QUICHandshakeDone": {reflect.TypeOf(q.QUICHandshakeDone), constant.MakeInt64(int64(q.QUICHandshakeDone))}, + "QUICNoEvent": {reflect.TypeOf(q.QUICNoEvent), constant.MakeInt64(int64(q.QUICNoEvent))}, + "QUICRejectedEarlyData": {reflect.TypeOf(q.QUICRejectedEarlyData), constant.MakeInt64(int64(q.QUICRejectedEarlyData))}, + "QUICSetReadSecret": {reflect.TypeOf(q.QUICSetReadSecret), constant.MakeInt64(int64(q.QUICSetReadSecret))}, + "QUICSetWriteSecret": {reflect.TypeOf(q.QUICSetWriteSecret), constant.MakeInt64(int64(q.QUICSetWriteSecret))}, + "QUICTransportParameters": {reflect.TypeOf(q.QUICTransportParameters), constant.MakeInt64(int64(q.QUICTransportParameters))}, + "QUICTransportParametersRequired": {reflect.TypeOf(q.QUICTransportParametersRequired), constant.MakeInt64(int64(q.QUICTransportParametersRequired))}, + "QUICWriteData": {reflect.TypeOf(q.QUICWriteData), constant.MakeInt64(int64(q.QUICWriteData))}, + "RenegotiateFreelyAsClient": {reflect.TypeOf(q.RenegotiateFreelyAsClient), constant.MakeInt64(int64(q.RenegotiateFreelyAsClient))}, + "RenegotiateNever": {reflect.TypeOf(q.RenegotiateNever), constant.MakeInt64(int64(q.RenegotiateNever))}, + "RenegotiateOnceAsClient": {reflect.TypeOf(q.RenegotiateOnceAsClient), constant.MakeInt64(int64(q.RenegotiateOnceAsClient))}, + "RequestClientCert": {reflect.TypeOf(q.RequestClientCert), constant.MakeInt64(int64(q.RequestClientCert))}, + "RequireAndVerifyClientCert": {reflect.TypeOf(q.RequireAndVerifyClientCert), constant.MakeInt64(int64(q.RequireAndVerifyClientCert))}, + "RequireAnyClientCert": {reflect.TypeOf(q.RequireAnyClientCert), constant.MakeInt64(int64(q.RequireAnyClientCert))}, + "TLS_AES_128_GCM_SHA256": {reflect.TypeOf(q.TLS_AES_128_GCM_SHA256), constant.MakeInt64(int64(q.TLS_AES_128_GCM_SHA256))}, + "TLS_AES_256_GCM_SHA384": {reflect.TypeOf(q.TLS_AES_256_GCM_SHA384), constant.MakeInt64(int64(q.TLS_AES_256_GCM_SHA384))}, + "TLS_CHACHA20_POLY1305_SHA256": {reflect.TypeOf(q.TLS_CHACHA20_POLY1305_SHA256), constant.MakeInt64(int64(q.TLS_CHACHA20_POLY1305_SHA256))}, + "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA": {reflect.TypeOf(q.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA), constant.MakeInt64(int64(q.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA))}, + "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256": {reflect.TypeOf(q.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256), constant.MakeInt64(int64(q.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256))}, + "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256": {reflect.TypeOf(q.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256), constant.MakeInt64(int64(q.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256))}, + "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA": {reflect.TypeOf(q.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA), constant.MakeInt64(int64(q.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA))}, + "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384": {reflect.TypeOf(q.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384), constant.MakeInt64(int64(q.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384))}, + "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305": {reflect.TypeOf(q.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305), constant.MakeInt64(int64(q.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305))}, + "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256": {reflect.TypeOf(q.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256), constant.MakeInt64(int64(q.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256))}, + "TLS_ECDHE_ECDSA_WITH_RC4_128_SHA": {reflect.TypeOf(q.TLS_ECDHE_ECDSA_WITH_RC4_128_SHA), constant.MakeInt64(int64(q.TLS_ECDHE_ECDSA_WITH_RC4_128_SHA))}, + "TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA": {reflect.TypeOf(q.TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA), constant.MakeInt64(int64(q.TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA))}, + "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA": {reflect.TypeOf(q.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA), constant.MakeInt64(int64(q.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA))}, + "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256": {reflect.TypeOf(q.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256), constant.MakeInt64(int64(q.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256))}, + "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256": {reflect.TypeOf(q.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256), constant.MakeInt64(int64(q.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256))}, + "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA": {reflect.TypeOf(q.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA), constant.MakeInt64(int64(q.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA))}, + "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384": {reflect.TypeOf(q.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384), constant.MakeInt64(int64(q.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384))}, + "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305": {reflect.TypeOf(q.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305), constant.MakeInt64(int64(q.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305))}, + "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256": {reflect.TypeOf(q.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256), constant.MakeInt64(int64(q.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256))}, + "TLS_ECDHE_RSA_WITH_RC4_128_SHA": {reflect.TypeOf(q.TLS_ECDHE_RSA_WITH_RC4_128_SHA), constant.MakeInt64(int64(q.TLS_ECDHE_RSA_WITH_RC4_128_SHA))}, + "TLS_FALLBACK_SCSV": {reflect.TypeOf(q.TLS_FALLBACK_SCSV), constant.MakeInt64(int64(q.TLS_FALLBACK_SCSV))}, + "TLS_RSA_WITH_3DES_EDE_CBC_SHA": {reflect.TypeOf(q.TLS_RSA_WITH_3DES_EDE_CBC_SHA), constant.MakeInt64(int64(q.TLS_RSA_WITH_3DES_EDE_CBC_SHA))}, + "TLS_RSA_WITH_AES_128_CBC_SHA": {reflect.TypeOf(q.TLS_RSA_WITH_AES_128_CBC_SHA), constant.MakeInt64(int64(q.TLS_RSA_WITH_AES_128_CBC_SHA))}, + "TLS_RSA_WITH_AES_128_CBC_SHA256": {reflect.TypeOf(q.TLS_RSA_WITH_AES_128_CBC_SHA256), constant.MakeInt64(int64(q.TLS_RSA_WITH_AES_128_CBC_SHA256))}, + "TLS_RSA_WITH_AES_128_GCM_SHA256": {reflect.TypeOf(q.TLS_RSA_WITH_AES_128_GCM_SHA256), constant.MakeInt64(int64(q.TLS_RSA_WITH_AES_128_GCM_SHA256))}, + "TLS_RSA_WITH_AES_256_CBC_SHA": {reflect.TypeOf(q.TLS_RSA_WITH_AES_256_CBC_SHA), constant.MakeInt64(int64(q.TLS_RSA_WITH_AES_256_CBC_SHA))}, + "TLS_RSA_WITH_AES_256_GCM_SHA384": {reflect.TypeOf(q.TLS_RSA_WITH_AES_256_GCM_SHA384), constant.MakeInt64(int64(q.TLS_RSA_WITH_AES_256_GCM_SHA384))}, + "TLS_RSA_WITH_RC4_128_SHA": {reflect.TypeOf(q.TLS_RSA_WITH_RC4_128_SHA), constant.MakeInt64(int64(q.TLS_RSA_WITH_RC4_128_SHA))}, + "VerifyClientCertIfGiven": {reflect.TypeOf(q.VerifyClientCertIfGiven), constant.MakeInt64(int64(q.VerifyClientCertIfGiven))}, + "X25519": {reflect.TypeOf(q.X25519), constant.MakeInt64(int64(q.X25519))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "VersionSSL30": {"untyped int", constant.MakeInt64(int64(q.VersionSSL30))}, + "VersionTLS10": {"untyped int", constant.MakeInt64(int64(q.VersionTLS10))}, + "VersionTLS11": {"untyped int", constant.MakeInt64(int64(q.VersionTLS11))}, + "VersionTLS12": {"untyped int", constant.MakeInt64(int64(q.VersionTLS12))}, + "VersionTLS13": {"untyped int", constant.MakeInt64(int64(q.VersionTLS13))}, + }, + }) +} diff --git a/pkg/crypto/tls/go123_export.go b/pkg/crypto/tls/go123_export.go new file mode 100755 index 00000000..98efefea --- /dev/null +++ b/pkg/crypto/tls/go123_export.go @@ -0,0 +1,195 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package tls + +import ( + q "crypto/tls" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "tls", + Path: "crypto/tls", + Deps: map[string]string{ + "bytes": "bytes", + "container/list": "list", + "context": "context", + "crypto": "crypto", + "crypto/aes": "aes", + "crypto/cipher": "cipher", + "crypto/des": "des", + "crypto/ecdh": "ecdh", + "crypto/ecdsa": "ecdsa", + "crypto/ed25519": "ed25519", + "crypto/elliptic": "elliptic", + "crypto/hmac": "hmac", + "crypto/internal/boring": "boring", + "crypto/internal/hpke": "hpke", + "crypto/internal/mlkem768": "mlkem768", + "crypto/md5": "md5", + "crypto/rand": "rand", + "crypto/rc4": "rc4", + "crypto/rsa": "rsa", + "crypto/sha1": "sha1", + "crypto/sha256": "sha256", + "crypto/sha512": "sha512", + "crypto/subtle": "subtle", + "crypto/x509": "x509", + "encoding/pem": "pem", + "errors": "errors", + "fmt": "fmt", + "hash": "hash", + "internal/byteorder": "byteorder", + "internal/cpu": "cpu", + "internal/godebug": "godebug", + "io": "io", + "net": "net", + "os": "os", + "runtime": "runtime", + "slices": "slices", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "sync/atomic": "atomic", + "time": "time", + "unsafe": "unsafe", + "vendor/golang.org/x/crypto/chacha20poly1305": "chacha20poly1305", + "vendor/golang.org/x/crypto/cryptobyte": "cryptobyte", + "vendor/golang.org/x/crypto/hkdf": "hkdf", + "vendor/golang.org/x/crypto/sha3": "sha3", + }, + Interfaces: map[string]reflect.Type{ + "ClientSessionCache": reflect.TypeOf((*q.ClientSessionCache)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "AlertError": reflect.TypeOf((*q.AlertError)(nil)).Elem(), + "Certificate": reflect.TypeOf((*q.Certificate)(nil)).Elem(), + "CertificateRequestInfo": reflect.TypeOf((*q.CertificateRequestInfo)(nil)).Elem(), + "CertificateVerificationError": reflect.TypeOf((*q.CertificateVerificationError)(nil)).Elem(), + "CipherSuite": reflect.TypeOf((*q.CipherSuite)(nil)).Elem(), + "ClientAuthType": reflect.TypeOf((*q.ClientAuthType)(nil)).Elem(), + "ClientHelloInfo": reflect.TypeOf((*q.ClientHelloInfo)(nil)).Elem(), + "ClientSessionState": reflect.TypeOf((*q.ClientSessionState)(nil)).Elem(), + "Config": reflect.TypeOf((*q.Config)(nil)).Elem(), + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "ConnectionState": reflect.TypeOf((*q.ConnectionState)(nil)).Elem(), + "CurveID": reflect.TypeOf((*q.CurveID)(nil)).Elem(), + "Dialer": reflect.TypeOf((*q.Dialer)(nil)).Elem(), + "ECHRejectionError": reflect.TypeOf((*q.ECHRejectionError)(nil)).Elem(), + "QUICConfig": reflect.TypeOf((*q.QUICConfig)(nil)).Elem(), + "QUICConn": reflect.TypeOf((*q.QUICConn)(nil)).Elem(), + "QUICEncryptionLevel": reflect.TypeOf((*q.QUICEncryptionLevel)(nil)).Elem(), + "QUICEvent": reflect.TypeOf((*q.QUICEvent)(nil)).Elem(), + "QUICEventKind": reflect.TypeOf((*q.QUICEventKind)(nil)).Elem(), + "QUICSessionTicketOptions": reflect.TypeOf((*q.QUICSessionTicketOptions)(nil)).Elem(), + "RecordHeaderError": reflect.TypeOf((*q.RecordHeaderError)(nil)).Elem(), + "RenegotiationSupport": reflect.TypeOf((*q.RenegotiationSupport)(nil)).Elem(), + "SessionState": reflect.TypeOf((*q.SessionState)(nil)).Elem(), + "SignatureScheme": reflect.TypeOf((*q.SignatureScheme)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "CipherSuiteName": reflect.ValueOf(q.CipherSuiteName), + "CipherSuites": reflect.ValueOf(q.CipherSuites), + "Client": reflect.ValueOf(q.Client), + "Dial": reflect.ValueOf(q.Dial), + "DialWithDialer": reflect.ValueOf(q.DialWithDialer), + "InsecureCipherSuites": reflect.ValueOf(q.InsecureCipherSuites), + "Listen": reflect.ValueOf(q.Listen), + "LoadX509KeyPair": reflect.ValueOf(q.LoadX509KeyPair), + "NewLRUClientSessionCache": reflect.ValueOf(q.NewLRUClientSessionCache), + "NewListener": reflect.ValueOf(q.NewListener), + "NewResumptionState": reflect.ValueOf(q.NewResumptionState), + "ParseSessionState": reflect.ValueOf(q.ParseSessionState), + "QUICClient": reflect.ValueOf(q.QUICClient), + "QUICServer": reflect.ValueOf(q.QUICServer), + "Server": reflect.ValueOf(q.Server), + "VersionName": reflect.ValueOf(q.VersionName), + "X509KeyPair": reflect.ValueOf(q.X509KeyPair), + }, + TypedConsts: map[string]igop.TypedConst{ + "CurveP256": {reflect.TypeOf(q.CurveP256), constant.MakeInt64(int64(q.CurveP256))}, + "CurveP384": {reflect.TypeOf(q.CurveP384), constant.MakeInt64(int64(q.CurveP384))}, + "CurveP521": {reflect.TypeOf(q.CurveP521), constant.MakeInt64(int64(q.CurveP521))}, + "ECDSAWithP256AndSHA256": {reflect.TypeOf(q.ECDSAWithP256AndSHA256), constant.MakeInt64(int64(q.ECDSAWithP256AndSHA256))}, + "ECDSAWithP384AndSHA384": {reflect.TypeOf(q.ECDSAWithP384AndSHA384), constant.MakeInt64(int64(q.ECDSAWithP384AndSHA384))}, + "ECDSAWithP521AndSHA512": {reflect.TypeOf(q.ECDSAWithP521AndSHA512), constant.MakeInt64(int64(q.ECDSAWithP521AndSHA512))}, + "ECDSAWithSHA1": {reflect.TypeOf(q.ECDSAWithSHA1), constant.MakeInt64(int64(q.ECDSAWithSHA1))}, + "Ed25519": {reflect.TypeOf(q.Ed25519), constant.MakeInt64(int64(q.Ed25519))}, + "NoClientCert": {reflect.TypeOf(q.NoClientCert), constant.MakeInt64(int64(q.NoClientCert))}, + "PKCS1WithSHA1": {reflect.TypeOf(q.PKCS1WithSHA1), constant.MakeInt64(int64(q.PKCS1WithSHA1))}, + "PKCS1WithSHA256": {reflect.TypeOf(q.PKCS1WithSHA256), constant.MakeInt64(int64(q.PKCS1WithSHA256))}, + "PKCS1WithSHA384": {reflect.TypeOf(q.PKCS1WithSHA384), constant.MakeInt64(int64(q.PKCS1WithSHA384))}, + "PKCS1WithSHA512": {reflect.TypeOf(q.PKCS1WithSHA512), constant.MakeInt64(int64(q.PKCS1WithSHA512))}, + "PSSWithSHA256": {reflect.TypeOf(q.PSSWithSHA256), constant.MakeInt64(int64(q.PSSWithSHA256))}, + "PSSWithSHA384": {reflect.TypeOf(q.PSSWithSHA384), constant.MakeInt64(int64(q.PSSWithSHA384))}, + "PSSWithSHA512": {reflect.TypeOf(q.PSSWithSHA512), constant.MakeInt64(int64(q.PSSWithSHA512))}, + "QUICEncryptionLevelApplication": {reflect.TypeOf(q.QUICEncryptionLevelApplication), constant.MakeInt64(int64(q.QUICEncryptionLevelApplication))}, + "QUICEncryptionLevelEarly": {reflect.TypeOf(q.QUICEncryptionLevelEarly), constant.MakeInt64(int64(q.QUICEncryptionLevelEarly))}, + "QUICEncryptionLevelHandshake": {reflect.TypeOf(q.QUICEncryptionLevelHandshake), constant.MakeInt64(int64(q.QUICEncryptionLevelHandshake))}, + "QUICEncryptionLevelInitial": {reflect.TypeOf(q.QUICEncryptionLevelInitial), constant.MakeInt64(int64(q.QUICEncryptionLevelInitial))}, + "QUICHandshakeDone": {reflect.TypeOf(q.QUICHandshakeDone), constant.MakeInt64(int64(q.QUICHandshakeDone))}, + "QUICNoEvent": {reflect.TypeOf(q.QUICNoEvent), constant.MakeInt64(int64(q.QUICNoEvent))}, + "QUICRejectedEarlyData": {reflect.TypeOf(q.QUICRejectedEarlyData), constant.MakeInt64(int64(q.QUICRejectedEarlyData))}, + "QUICResumeSession": {reflect.TypeOf(q.QUICResumeSession), constant.MakeInt64(int64(q.QUICResumeSession))}, + "QUICSetReadSecret": {reflect.TypeOf(q.QUICSetReadSecret), constant.MakeInt64(int64(q.QUICSetReadSecret))}, + "QUICSetWriteSecret": {reflect.TypeOf(q.QUICSetWriteSecret), constant.MakeInt64(int64(q.QUICSetWriteSecret))}, + "QUICStoreSession": {reflect.TypeOf(q.QUICStoreSession), constant.MakeInt64(int64(q.QUICStoreSession))}, + "QUICTransportParameters": {reflect.TypeOf(q.QUICTransportParameters), constant.MakeInt64(int64(q.QUICTransportParameters))}, + "QUICTransportParametersRequired": {reflect.TypeOf(q.QUICTransportParametersRequired), constant.MakeInt64(int64(q.QUICTransportParametersRequired))}, + "QUICWriteData": {reflect.TypeOf(q.QUICWriteData), constant.MakeInt64(int64(q.QUICWriteData))}, + "RenegotiateFreelyAsClient": {reflect.TypeOf(q.RenegotiateFreelyAsClient), constant.MakeInt64(int64(q.RenegotiateFreelyAsClient))}, + "RenegotiateNever": {reflect.TypeOf(q.RenegotiateNever), constant.MakeInt64(int64(q.RenegotiateNever))}, + "RenegotiateOnceAsClient": {reflect.TypeOf(q.RenegotiateOnceAsClient), constant.MakeInt64(int64(q.RenegotiateOnceAsClient))}, + "RequestClientCert": {reflect.TypeOf(q.RequestClientCert), constant.MakeInt64(int64(q.RequestClientCert))}, + "RequireAndVerifyClientCert": {reflect.TypeOf(q.RequireAndVerifyClientCert), constant.MakeInt64(int64(q.RequireAndVerifyClientCert))}, + "RequireAnyClientCert": {reflect.TypeOf(q.RequireAnyClientCert), constant.MakeInt64(int64(q.RequireAnyClientCert))}, + "TLS_AES_128_GCM_SHA256": {reflect.TypeOf(q.TLS_AES_128_GCM_SHA256), constant.MakeInt64(int64(q.TLS_AES_128_GCM_SHA256))}, + "TLS_AES_256_GCM_SHA384": {reflect.TypeOf(q.TLS_AES_256_GCM_SHA384), constant.MakeInt64(int64(q.TLS_AES_256_GCM_SHA384))}, + "TLS_CHACHA20_POLY1305_SHA256": {reflect.TypeOf(q.TLS_CHACHA20_POLY1305_SHA256), constant.MakeInt64(int64(q.TLS_CHACHA20_POLY1305_SHA256))}, + "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA": {reflect.TypeOf(q.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA), constant.MakeInt64(int64(q.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA))}, + "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256": {reflect.TypeOf(q.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256), constant.MakeInt64(int64(q.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256))}, + "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256": {reflect.TypeOf(q.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256), constant.MakeInt64(int64(q.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256))}, + "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA": {reflect.TypeOf(q.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA), constant.MakeInt64(int64(q.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA))}, + "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384": {reflect.TypeOf(q.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384), constant.MakeInt64(int64(q.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384))}, + "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305": {reflect.TypeOf(q.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305), constant.MakeInt64(int64(q.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305))}, + "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256": {reflect.TypeOf(q.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256), constant.MakeInt64(int64(q.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256))}, + "TLS_ECDHE_ECDSA_WITH_RC4_128_SHA": {reflect.TypeOf(q.TLS_ECDHE_ECDSA_WITH_RC4_128_SHA), constant.MakeInt64(int64(q.TLS_ECDHE_ECDSA_WITH_RC4_128_SHA))}, + "TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA": {reflect.TypeOf(q.TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA), constant.MakeInt64(int64(q.TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA))}, + "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA": {reflect.TypeOf(q.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA), constant.MakeInt64(int64(q.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA))}, + "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256": {reflect.TypeOf(q.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256), constant.MakeInt64(int64(q.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256))}, + "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256": {reflect.TypeOf(q.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256), constant.MakeInt64(int64(q.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256))}, + "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA": {reflect.TypeOf(q.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA), constant.MakeInt64(int64(q.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA))}, + "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384": {reflect.TypeOf(q.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384), constant.MakeInt64(int64(q.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384))}, + "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305": {reflect.TypeOf(q.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305), constant.MakeInt64(int64(q.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305))}, + "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256": {reflect.TypeOf(q.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256), constant.MakeInt64(int64(q.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256))}, + "TLS_ECDHE_RSA_WITH_RC4_128_SHA": {reflect.TypeOf(q.TLS_ECDHE_RSA_WITH_RC4_128_SHA), constant.MakeInt64(int64(q.TLS_ECDHE_RSA_WITH_RC4_128_SHA))}, + "TLS_FALLBACK_SCSV": {reflect.TypeOf(q.TLS_FALLBACK_SCSV), constant.MakeInt64(int64(q.TLS_FALLBACK_SCSV))}, + "TLS_RSA_WITH_3DES_EDE_CBC_SHA": {reflect.TypeOf(q.TLS_RSA_WITH_3DES_EDE_CBC_SHA), constant.MakeInt64(int64(q.TLS_RSA_WITH_3DES_EDE_CBC_SHA))}, + "TLS_RSA_WITH_AES_128_CBC_SHA": {reflect.TypeOf(q.TLS_RSA_WITH_AES_128_CBC_SHA), constant.MakeInt64(int64(q.TLS_RSA_WITH_AES_128_CBC_SHA))}, + "TLS_RSA_WITH_AES_128_CBC_SHA256": {reflect.TypeOf(q.TLS_RSA_WITH_AES_128_CBC_SHA256), constant.MakeInt64(int64(q.TLS_RSA_WITH_AES_128_CBC_SHA256))}, + "TLS_RSA_WITH_AES_128_GCM_SHA256": {reflect.TypeOf(q.TLS_RSA_WITH_AES_128_GCM_SHA256), constant.MakeInt64(int64(q.TLS_RSA_WITH_AES_128_GCM_SHA256))}, + "TLS_RSA_WITH_AES_256_CBC_SHA": {reflect.TypeOf(q.TLS_RSA_WITH_AES_256_CBC_SHA), constant.MakeInt64(int64(q.TLS_RSA_WITH_AES_256_CBC_SHA))}, + "TLS_RSA_WITH_AES_256_GCM_SHA384": {reflect.TypeOf(q.TLS_RSA_WITH_AES_256_GCM_SHA384), constant.MakeInt64(int64(q.TLS_RSA_WITH_AES_256_GCM_SHA384))}, + "TLS_RSA_WITH_RC4_128_SHA": {reflect.TypeOf(q.TLS_RSA_WITH_RC4_128_SHA), constant.MakeInt64(int64(q.TLS_RSA_WITH_RC4_128_SHA))}, + "VerifyClientCertIfGiven": {reflect.TypeOf(q.VerifyClientCertIfGiven), constant.MakeInt64(int64(q.VerifyClientCertIfGiven))}, + "X25519": {reflect.TypeOf(q.X25519), constant.MakeInt64(int64(q.X25519))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "VersionSSL30": {"untyped int", constant.MakeInt64(int64(q.VersionSSL30))}, + "VersionTLS10": {"untyped int", constant.MakeInt64(int64(q.VersionTLS10))}, + "VersionTLS11": {"untyped int", constant.MakeInt64(int64(q.VersionTLS11))}, + "VersionTLS12": {"untyped int", constant.MakeInt64(int64(q.VersionTLS12))}, + "VersionTLS13": {"untyped int", constant.MakeInt64(int64(q.VersionTLS13))}, + }, + }) +} diff --git a/pkg/crypto/x509/go121_export.go b/pkg/crypto/x509/go121_export.go index 6b40483b..ebd9cc90 100755 --- a/pkg/crypto/x509/go121_export.go +++ b/pkg/crypto/x509/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package x509 diff --git a/pkg/crypto/x509/go122_export.go b/pkg/crypto/x509/go122_export.go new file mode 100755 index 00000000..9db814dc --- /dev/null +++ b/pkg/crypto/x509/go122_export.go @@ -0,0 +1,183 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package x509 + +import ( + q "crypto/x509" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "x509", + Path: "crypto/x509", + Deps: map[string]string{ + "bytes": "bytes", + "crypto": "crypto", + "crypto/aes": "aes", + "crypto/cipher": "cipher", + "crypto/des": "des", + "crypto/dsa": "dsa", + "crypto/ecdh": "ecdh", + "crypto/ecdsa": "ecdsa", + "crypto/ed25519": "ed25519", + "crypto/elliptic": "elliptic", + "crypto/md5": "md5", + "crypto/rsa": "rsa", + "crypto/sha1": "sha1", + "crypto/sha256": "sha256", + "crypto/sha512": "sha512", + "crypto/x509/internal/macos": "macOS", + "crypto/x509/pkix": "pkix", + "encoding/asn1": "asn1", + "encoding/hex": "hex", + "encoding/pem": "pem", + "errors": "errors", + "fmt": "fmt", + "internal/godebug": "godebug", + "io": "io", + "math": "math", + "math/big": "big", + "math/bits": "bits", + "net": "net", + "net/url": "url", + "reflect": "reflect", + "runtime": "runtime", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "time": "time", + "unicode": "unicode", + "unicode/utf16": "utf16", + "unicode/utf8": "utf8", + "vendor/golang.org/x/crypto/cryptobyte": "cryptobyte", + "vendor/golang.org/x/crypto/cryptobyte/asn1": "asn1", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "CertPool": reflect.TypeOf((*q.CertPool)(nil)).Elem(), + "Certificate": reflect.TypeOf((*q.Certificate)(nil)).Elem(), + "CertificateInvalidError": reflect.TypeOf((*q.CertificateInvalidError)(nil)).Elem(), + "CertificateRequest": reflect.TypeOf((*q.CertificateRequest)(nil)).Elem(), + "ConstraintViolationError": reflect.TypeOf((*q.ConstraintViolationError)(nil)).Elem(), + "ExtKeyUsage": reflect.TypeOf((*q.ExtKeyUsage)(nil)).Elem(), + "HostnameError": reflect.TypeOf((*q.HostnameError)(nil)).Elem(), + "InsecureAlgorithmError": reflect.TypeOf((*q.InsecureAlgorithmError)(nil)).Elem(), + "InvalidReason": reflect.TypeOf((*q.InvalidReason)(nil)).Elem(), + "KeyUsage": reflect.TypeOf((*q.KeyUsage)(nil)).Elem(), + "OID": reflect.TypeOf((*q.OID)(nil)).Elem(), + "PEMCipher": reflect.TypeOf((*q.PEMCipher)(nil)).Elem(), + "PublicKeyAlgorithm": reflect.TypeOf((*q.PublicKeyAlgorithm)(nil)).Elem(), + "RevocationList": reflect.TypeOf((*q.RevocationList)(nil)).Elem(), + "RevocationListEntry": reflect.TypeOf((*q.RevocationListEntry)(nil)).Elem(), + "SignatureAlgorithm": reflect.TypeOf((*q.SignatureAlgorithm)(nil)).Elem(), + "SystemRootsError": reflect.TypeOf((*q.SystemRootsError)(nil)).Elem(), + "UnhandledCriticalExtension": reflect.TypeOf((*q.UnhandledCriticalExtension)(nil)).Elem(), + "UnknownAuthorityError": reflect.TypeOf((*q.UnknownAuthorityError)(nil)).Elem(), + "VerifyOptions": reflect.TypeOf((*q.VerifyOptions)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrUnsupportedAlgorithm": reflect.ValueOf(&q.ErrUnsupportedAlgorithm), + "IncorrectPasswordError": reflect.ValueOf(&q.IncorrectPasswordError), + }, + Funcs: map[string]reflect.Value{ + "CreateCertificate": reflect.ValueOf(q.CreateCertificate), + "CreateCertificateRequest": reflect.ValueOf(q.CreateCertificateRequest), + "CreateRevocationList": reflect.ValueOf(q.CreateRevocationList), + "DecryptPEMBlock": reflect.ValueOf(q.DecryptPEMBlock), + "EncryptPEMBlock": reflect.ValueOf(q.EncryptPEMBlock), + "IsEncryptedPEMBlock": reflect.ValueOf(q.IsEncryptedPEMBlock), + "MarshalECPrivateKey": reflect.ValueOf(q.MarshalECPrivateKey), + "MarshalPKCS1PrivateKey": reflect.ValueOf(q.MarshalPKCS1PrivateKey), + "MarshalPKCS1PublicKey": reflect.ValueOf(q.MarshalPKCS1PublicKey), + "MarshalPKCS8PrivateKey": reflect.ValueOf(q.MarshalPKCS8PrivateKey), + "MarshalPKIXPublicKey": reflect.ValueOf(q.MarshalPKIXPublicKey), + "NewCertPool": reflect.ValueOf(q.NewCertPool), + "OIDFromInts": reflect.ValueOf(q.OIDFromInts), + "ParseCRL": reflect.ValueOf(q.ParseCRL), + "ParseCertificate": reflect.ValueOf(q.ParseCertificate), + "ParseCertificateRequest": reflect.ValueOf(q.ParseCertificateRequest), + "ParseCertificates": reflect.ValueOf(q.ParseCertificates), + "ParseDERCRL": reflect.ValueOf(q.ParseDERCRL), + "ParseECPrivateKey": reflect.ValueOf(q.ParseECPrivateKey), + "ParsePKCS1PrivateKey": reflect.ValueOf(q.ParsePKCS1PrivateKey), + "ParsePKCS1PublicKey": reflect.ValueOf(q.ParsePKCS1PublicKey), + "ParsePKCS8PrivateKey": reflect.ValueOf(q.ParsePKCS8PrivateKey), + "ParsePKIXPublicKey": reflect.ValueOf(q.ParsePKIXPublicKey), + "ParseRevocationList": reflect.ValueOf(q.ParseRevocationList), + "SetFallbackRoots": reflect.ValueOf(q.SetFallbackRoots), + "SystemCertPool": reflect.ValueOf(q.SystemCertPool), + }, + TypedConsts: map[string]igop.TypedConst{ + "CANotAuthorizedForExtKeyUsage": {reflect.TypeOf(q.CANotAuthorizedForExtKeyUsage), constant.MakeInt64(int64(q.CANotAuthorizedForExtKeyUsage))}, + "CANotAuthorizedForThisName": {reflect.TypeOf(q.CANotAuthorizedForThisName), constant.MakeInt64(int64(q.CANotAuthorizedForThisName))}, + "DSA": {reflect.TypeOf(q.DSA), constant.MakeInt64(int64(q.DSA))}, + "DSAWithSHA1": {reflect.TypeOf(q.DSAWithSHA1), constant.MakeInt64(int64(q.DSAWithSHA1))}, + "DSAWithSHA256": {reflect.TypeOf(q.DSAWithSHA256), constant.MakeInt64(int64(q.DSAWithSHA256))}, + "ECDSA": {reflect.TypeOf(q.ECDSA), constant.MakeInt64(int64(q.ECDSA))}, + "ECDSAWithSHA1": {reflect.TypeOf(q.ECDSAWithSHA1), constant.MakeInt64(int64(q.ECDSAWithSHA1))}, + "ECDSAWithSHA256": {reflect.TypeOf(q.ECDSAWithSHA256), constant.MakeInt64(int64(q.ECDSAWithSHA256))}, + "ECDSAWithSHA384": {reflect.TypeOf(q.ECDSAWithSHA384), constant.MakeInt64(int64(q.ECDSAWithSHA384))}, + "ECDSAWithSHA512": {reflect.TypeOf(q.ECDSAWithSHA512), constant.MakeInt64(int64(q.ECDSAWithSHA512))}, + "Ed25519": {reflect.TypeOf(q.Ed25519), constant.MakeInt64(int64(q.Ed25519))}, + "Expired": {reflect.TypeOf(q.Expired), constant.MakeInt64(int64(q.Expired))}, + "ExtKeyUsageAny": {reflect.TypeOf(q.ExtKeyUsageAny), constant.MakeInt64(int64(q.ExtKeyUsageAny))}, + "ExtKeyUsageClientAuth": {reflect.TypeOf(q.ExtKeyUsageClientAuth), constant.MakeInt64(int64(q.ExtKeyUsageClientAuth))}, + "ExtKeyUsageCodeSigning": {reflect.TypeOf(q.ExtKeyUsageCodeSigning), constant.MakeInt64(int64(q.ExtKeyUsageCodeSigning))}, + "ExtKeyUsageEmailProtection": {reflect.TypeOf(q.ExtKeyUsageEmailProtection), constant.MakeInt64(int64(q.ExtKeyUsageEmailProtection))}, + "ExtKeyUsageIPSECEndSystem": {reflect.TypeOf(q.ExtKeyUsageIPSECEndSystem), constant.MakeInt64(int64(q.ExtKeyUsageIPSECEndSystem))}, + "ExtKeyUsageIPSECTunnel": {reflect.TypeOf(q.ExtKeyUsageIPSECTunnel), constant.MakeInt64(int64(q.ExtKeyUsageIPSECTunnel))}, + "ExtKeyUsageIPSECUser": {reflect.TypeOf(q.ExtKeyUsageIPSECUser), constant.MakeInt64(int64(q.ExtKeyUsageIPSECUser))}, + "ExtKeyUsageMicrosoftCommercialCodeSigning": {reflect.TypeOf(q.ExtKeyUsageMicrosoftCommercialCodeSigning), constant.MakeInt64(int64(q.ExtKeyUsageMicrosoftCommercialCodeSigning))}, + "ExtKeyUsageMicrosoftKernelCodeSigning": {reflect.TypeOf(q.ExtKeyUsageMicrosoftKernelCodeSigning), constant.MakeInt64(int64(q.ExtKeyUsageMicrosoftKernelCodeSigning))}, + "ExtKeyUsageMicrosoftServerGatedCrypto": {reflect.TypeOf(q.ExtKeyUsageMicrosoftServerGatedCrypto), constant.MakeInt64(int64(q.ExtKeyUsageMicrosoftServerGatedCrypto))}, + "ExtKeyUsageNetscapeServerGatedCrypto": {reflect.TypeOf(q.ExtKeyUsageNetscapeServerGatedCrypto), constant.MakeInt64(int64(q.ExtKeyUsageNetscapeServerGatedCrypto))}, + "ExtKeyUsageOCSPSigning": {reflect.TypeOf(q.ExtKeyUsageOCSPSigning), constant.MakeInt64(int64(q.ExtKeyUsageOCSPSigning))}, + "ExtKeyUsageServerAuth": {reflect.TypeOf(q.ExtKeyUsageServerAuth), constant.MakeInt64(int64(q.ExtKeyUsageServerAuth))}, + "ExtKeyUsageTimeStamping": {reflect.TypeOf(q.ExtKeyUsageTimeStamping), constant.MakeInt64(int64(q.ExtKeyUsageTimeStamping))}, + "IncompatibleUsage": {reflect.TypeOf(q.IncompatibleUsage), constant.MakeInt64(int64(q.IncompatibleUsage))}, + "KeyUsageCRLSign": {reflect.TypeOf(q.KeyUsageCRLSign), constant.MakeInt64(int64(q.KeyUsageCRLSign))}, + "KeyUsageCertSign": {reflect.TypeOf(q.KeyUsageCertSign), constant.MakeInt64(int64(q.KeyUsageCertSign))}, + "KeyUsageContentCommitment": {reflect.TypeOf(q.KeyUsageContentCommitment), constant.MakeInt64(int64(q.KeyUsageContentCommitment))}, + "KeyUsageDataEncipherment": {reflect.TypeOf(q.KeyUsageDataEncipherment), constant.MakeInt64(int64(q.KeyUsageDataEncipherment))}, + "KeyUsageDecipherOnly": {reflect.TypeOf(q.KeyUsageDecipherOnly), constant.MakeInt64(int64(q.KeyUsageDecipherOnly))}, + "KeyUsageDigitalSignature": {reflect.TypeOf(q.KeyUsageDigitalSignature), constant.MakeInt64(int64(q.KeyUsageDigitalSignature))}, + "KeyUsageEncipherOnly": {reflect.TypeOf(q.KeyUsageEncipherOnly), constant.MakeInt64(int64(q.KeyUsageEncipherOnly))}, + "KeyUsageKeyAgreement": {reflect.TypeOf(q.KeyUsageKeyAgreement), constant.MakeInt64(int64(q.KeyUsageKeyAgreement))}, + "KeyUsageKeyEncipherment": {reflect.TypeOf(q.KeyUsageKeyEncipherment), constant.MakeInt64(int64(q.KeyUsageKeyEncipherment))}, + "MD2WithRSA": {reflect.TypeOf(q.MD2WithRSA), constant.MakeInt64(int64(q.MD2WithRSA))}, + "MD5WithRSA": {reflect.TypeOf(q.MD5WithRSA), constant.MakeInt64(int64(q.MD5WithRSA))}, + "NameConstraintsWithoutSANs": {reflect.TypeOf(q.NameConstraintsWithoutSANs), constant.MakeInt64(int64(q.NameConstraintsWithoutSANs))}, + "NameMismatch": {reflect.TypeOf(q.NameMismatch), constant.MakeInt64(int64(q.NameMismatch))}, + "NotAuthorizedToSign": {reflect.TypeOf(q.NotAuthorizedToSign), constant.MakeInt64(int64(q.NotAuthorizedToSign))}, + "PEMCipher3DES": {reflect.TypeOf(q.PEMCipher3DES), constant.MakeInt64(int64(q.PEMCipher3DES))}, + "PEMCipherAES128": {reflect.TypeOf(q.PEMCipherAES128), constant.MakeInt64(int64(q.PEMCipherAES128))}, + "PEMCipherAES192": {reflect.TypeOf(q.PEMCipherAES192), constant.MakeInt64(int64(q.PEMCipherAES192))}, + "PEMCipherAES256": {reflect.TypeOf(q.PEMCipherAES256), constant.MakeInt64(int64(q.PEMCipherAES256))}, + "PEMCipherDES": {reflect.TypeOf(q.PEMCipherDES), constant.MakeInt64(int64(q.PEMCipherDES))}, + "PureEd25519": {reflect.TypeOf(q.PureEd25519), constant.MakeInt64(int64(q.PureEd25519))}, + "RSA": {reflect.TypeOf(q.RSA), constant.MakeInt64(int64(q.RSA))}, + "SHA1WithRSA": {reflect.TypeOf(q.SHA1WithRSA), constant.MakeInt64(int64(q.SHA1WithRSA))}, + "SHA256WithRSA": {reflect.TypeOf(q.SHA256WithRSA), constant.MakeInt64(int64(q.SHA256WithRSA))}, + "SHA256WithRSAPSS": {reflect.TypeOf(q.SHA256WithRSAPSS), constant.MakeInt64(int64(q.SHA256WithRSAPSS))}, + "SHA384WithRSA": {reflect.TypeOf(q.SHA384WithRSA), constant.MakeInt64(int64(q.SHA384WithRSA))}, + "SHA384WithRSAPSS": {reflect.TypeOf(q.SHA384WithRSAPSS), constant.MakeInt64(int64(q.SHA384WithRSAPSS))}, + "SHA512WithRSA": {reflect.TypeOf(q.SHA512WithRSA), constant.MakeInt64(int64(q.SHA512WithRSA))}, + "SHA512WithRSAPSS": {reflect.TypeOf(q.SHA512WithRSAPSS), constant.MakeInt64(int64(q.SHA512WithRSAPSS))}, + "TooManyConstraints": {reflect.TypeOf(q.TooManyConstraints), constant.MakeInt64(int64(q.TooManyConstraints))}, + "TooManyIntermediates": {reflect.TypeOf(q.TooManyIntermediates), constant.MakeInt64(int64(q.TooManyIntermediates))}, + "UnconstrainedName": {reflect.TypeOf(q.UnconstrainedName), constant.MakeInt64(int64(q.UnconstrainedName))}, + "UnknownPublicKeyAlgorithm": {reflect.TypeOf(q.UnknownPublicKeyAlgorithm), constant.MakeInt64(int64(q.UnknownPublicKeyAlgorithm))}, + "UnknownSignatureAlgorithm": {reflect.TypeOf(q.UnknownSignatureAlgorithm), constant.MakeInt64(int64(q.UnknownSignatureAlgorithm))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/x509/go123_export.go b/pkg/crypto/x509/go123_export.go new file mode 100755 index 00000000..36df60e6 --- /dev/null +++ b/pkg/crypto/x509/go123_export.go @@ -0,0 +1,186 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package x509 + +import ( + q "crypto/x509" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "x509", + Path: "crypto/x509", + Deps: map[string]string{ + "bytes": "bytes", + "crypto": "crypto", + "crypto/aes": "aes", + "crypto/cipher": "cipher", + "crypto/des": "des", + "crypto/dsa": "dsa", + "crypto/ecdh": "ecdh", + "crypto/ecdsa": "ecdsa", + "crypto/ed25519": "ed25519", + "crypto/elliptic": "elliptic", + "crypto/md5": "md5", + "crypto/rsa": "rsa", + "crypto/sha1": "sha1", + "crypto/sha256": "sha256", + "crypto/sha512": "sha512", + "crypto/x509/internal/macos": "macOS", + "crypto/x509/pkix": "pkix", + "encoding/asn1": "asn1", + "encoding/hex": "hex", + "encoding/pem": "pem", + "errors": "errors", + "fmt": "fmt", + "internal/godebug": "godebug", + "io": "io", + "math": "math", + "math/big": "big", + "math/bits": "bits", + "net": "net", + "net/netip": "netip", + "net/url": "url", + "reflect": "reflect", + "runtime": "runtime", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "time": "time", + "unicode": "unicode", + "unicode/utf16": "utf16", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + "vendor/golang.org/x/crypto/cryptobyte": "cryptobyte", + "vendor/golang.org/x/crypto/cryptobyte/asn1": "asn1", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "CertPool": reflect.TypeOf((*q.CertPool)(nil)).Elem(), + "Certificate": reflect.TypeOf((*q.Certificate)(nil)).Elem(), + "CertificateInvalidError": reflect.TypeOf((*q.CertificateInvalidError)(nil)).Elem(), + "CertificateRequest": reflect.TypeOf((*q.CertificateRequest)(nil)).Elem(), + "ConstraintViolationError": reflect.TypeOf((*q.ConstraintViolationError)(nil)).Elem(), + "ExtKeyUsage": reflect.TypeOf((*q.ExtKeyUsage)(nil)).Elem(), + "HostnameError": reflect.TypeOf((*q.HostnameError)(nil)).Elem(), + "InsecureAlgorithmError": reflect.TypeOf((*q.InsecureAlgorithmError)(nil)).Elem(), + "InvalidReason": reflect.TypeOf((*q.InvalidReason)(nil)).Elem(), + "KeyUsage": reflect.TypeOf((*q.KeyUsage)(nil)).Elem(), + "OID": reflect.TypeOf((*q.OID)(nil)).Elem(), + "PEMCipher": reflect.TypeOf((*q.PEMCipher)(nil)).Elem(), + "PublicKeyAlgorithm": reflect.TypeOf((*q.PublicKeyAlgorithm)(nil)).Elem(), + "RevocationList": reflect.TypeOf((*q.RevocationList)(nil)).Elem(), + "RevocationListEntry": reflect.TypeOf((*q.RevocationListEntry)(nil)).Elem(), + "SignatureAlgorithm": reflect.TypeOf((*q.SignatureAlgorithm)(nil)).Elem(), + "SystemRootsError": reflect.TypeOf((*q.SystemRootsError)(nil)).Elem(), + "UnhandledCriticalExtension": reflect.TypeOf((*q.UnhandledCriticalExtension)(nil)).Elem(), + "UnknownAuthorityError": reflect.TypeOf((*q.UnknownAuthorityError)(nil)).Elem(), + "VerifyOptions": reflect.TypeOf((*q.VerifyOptions)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrUnsupportedAlgorithm": reflect.ValueOf(&q.ErrUnsupportedAlgorithm), + "IncorrectPasswordError": reflect.ValueOf(&q.IncorrectPasswordError), + }, + Funcs: map[string]reflect.Value{ + "CreateCertificate": reflect.ValueOf(q.CreateCertificate), + "CreateCertificateRequest": reflect.ValueOf(q.CreateCertificateRequest), + "CreateRevocationList": reflect.ValueOf(q.CreateRevocationList), + "DecryptPEMBlock": reflect.ValueOf(q.DecryptPEMBlock), + "EncryptPEMBlock": reflect.ValueOf(q.EncryptPEMBlock), + "IsEncryptedPEMBlock": reflect.ValueOf(q.IsEncryptedPEMBlock), + "MarshalECPrivateKey": reflect.ValueOf(q.MarshalECPrivateKey), + "MarshalPKCS1PrivateKey": reflect.ValueOf(q.MarshalPKCS1PrivateKey), + "MarshalPKCS1PublicKey": reflect.ValueOf(q.MarshalPKCS1PublicKey), + "MarshalPKCS8PrivateKey": reflect.ValueOf(q.MarshalPKCS8PrivateKey), + "MarshalPKIXPublicKey": reflect.ValueOf(q.MarshalPKIXPublicKey), + "NewCertPool": reflect.ValueOf(q.NewCertPool), + "OIDFromInts": reflect.ValueOf(q.OIDFromInts), + "ParseCRL": reflect.ValueOf(q.ParseCRL), + "ParseCertificate": reflect.ValueOf(q.ParseCertificate), + "ParseCertificateRequest": reflect.ValueOf(q.ParseCertificateRequest), + "ParseCertificates": reflect.ValueOf(q.ParseCertificates), + "ParseDERCRL": reflect.ValueOf(q.ParseDERCRL), + "ParseECPrivateKey": reflect.ValueOf(q.ParseECPrivateKey), + "ParseOID": reflect.ValueOf(q.ParseOID), + "ParsePKCS1PrivateKey": reflect.ValueOf(q.ParsePKCS1PrivateKey), + "ParsePKCS1PublicKey": reflect.ValueOf(q.ParsePKCS1PublicKey), + "ParsePKCS8PrivateKey": reflect.ValueOf(q.ParsePKCS8PrivateKey), + "ParsePKIXPublicKey": reflect.ValueOf(q.ParsePKIXPublicKey), + "ParseRevocationList": reflect.ValueOf(q.ParseRevocationList), + "SetFallbackRoots": reflect.ValueOf(q.SetFallbackRoots), + "SystemCertPool": reflect.ValueOf(q.SystemCertPool), + }, + TypedConsts: map[string]igop.TypedConst{ + "CANotAuthorizedForExtKeyUsage": {reflect.TypeOf(q.CANotAuthorizedForExtKeyUsage), constant.MakeInt64(int64(q.CANotAuthorizedForExtKeyUsage))}, + "CANotAuthorizedForThisName": {reflect.TypeOf(q.CANotAuthorizedForThisName), constant.MakeInt64(int64(q.CANotAuthorizedForThisName))}, + "DSA": {reflect.TypeOf(q.DSA), constant.MakeInt64(int64(q.DSA))}, + "DSAWithSHA1": {reflect.TypeOf(q.DSAWithSHA1), constant.MakeInt64(int64(q.DSAWithSHA1))}, + "DSAWithSHA256": {reflect.TypeOf(q.DSAWithSHA256), constant.MakeInt64(int64(q.DSAWithSHA256))}, + "ECDSA": {reflect.TypeOf(q.ECDSA), constant.MakeInt64(int64(q.ECDSA))}, + "ECDSAWithSHA1": {reflect.TypeOf(q.ECDSAWithSHA1), constant.MakeInt64(int64(q.ECDSAWithSHA1))}, + "ECDSAWithSHA256": {reflect.TypeOf(q.ECDSAWithSHA256), constant.MakeInt64(int64(q.ECDSAWithSHA256))}, + "ECDSAWithSHA384": {reflect.TypeOf(q.ECDSAWithSHA384), constant.MakeInt64(int64(q.ECDSAWithSHA384))}, + "ECDSAWithSHA512": {reflect.TypeOf(q.ECDSAWithSHA512), constant.MakeInt64(int64(q.ECDSAWithSHA512))}, + "Ed25519": {reflect.TypeOf(q.Ed25519), constant.MakeInt64(int64(q.Ed25519))}, + "Expired": {reflect.TypeOf(q.Expired), constant.MakeInt64(int64(q.Expired))}, + "ExtKeyUsageAny": {reflect.TypeOf(q.ExtKeyUsageAny), constant.MakeInt64(int64(q.ExtKeyUsageAny))}, + "ExtKeyUsageClientAuth": {reflect.TypeOf(q.ExtKeyUsageClientAuth), constant.MakeInt64(int64(q.ExtKeyUsageClientAuth))}, + "ExtKeyUsageCodeSigning": {reflect.TypeOf(q.ExtKeyUsageCodeSigning), constant.MakeInt64(int64(q.ExtKeyUsageCodeSigning))}, + "ExtKeyUsageEmailProtection": {reflect.TypeOf(q.ExtKeyUsageEmailProtection), constant.MakeInt64(int64(q.ExtKeyUsageEmailProtection))}, + "ExtKeyUsageIPSECEndSystem": {reflect.TypeOf(q.ExtKeyUsageIPSECEndSystem), constant.MakeInt64(int64(q.ExtKeyUsageIPSECEndSystem))}, + "ExtKeyUsageIPSECTunnel": {reflect.TypeOf(q.ExtKeyUsageIPSECTunnel), constant.MakeInt64(int64(q.ExtKeyUsageIPSECTunnel))}, + "ExtKeyUsageIPSECUser": {reflect.TypeOf(q.ExtKeyUsageIPSECUser), constant.MakeInt64(int64(q.ExtKeyUsageIPSECUser))}, + "ExtKeyUsageMicrosoftCommercialCodeSigning": {reflect.TypeOf(q.ExtKeyUsageMicrosoftCommercialCodeSigning), constant.MakeInt64(int64(q.ExtKeyUsageMicrosoftCommercialCodeSigning))}, + "ExtKeyUsageMicrosoftKernelCodeSigning": {reflect.TypeOf(q.ExtKeyUsageMicrosoftKernelCodeSigning), constant.MakeInt64(int64(q.ExtKeyUsageMicrosoftKernelCodeSigning))}, + "ExtKeyUsageMicrosoftServerGatedCrypto": {reflect.TypeOf(q.ExtKeyUsageMicrosoftServerGatedCrypto), constant.MakeInt64(int64(q.ExtKeyUsageMicrosoftServerGatedCrypto))}, + "ExtKeyUsageNetscapeServerGatedCrypto": {reflect.TypeOf(q.ExtKeyUsageNetscapeServerGatedCrypto), constant.MakeInt64(int64(q.ExtKeyUsageNetscapeServerGatedCrypto))}, + "ExtKeyUsageOCSPSigning": {reflect.TypeOf(q.ExtKeyUsageOCSPSigning), constant.MakeInt64(int64(q.ExtKeyUsageOCSPSigning))}, + "ExtKeyUsageServerAuth": {reflect.TypeOf(q.ExtKeyUsageServerAuth), constant.MakeInt64(int64(q.ExtKeyUsageServerAuth))}, + "ExtKeyUsageTimeStamping": {reflect.TypeOf(q.ExtKeyUsageTimeStamping), constant.MakeInt64(int64(q.ExtKeyUsageTimeStamping))}, + "IncompatibleUsage": {reflect.TypeOf(q.IncompatibleUsage), constant.MakeInt64(int64(q.IncompatibleUsage))}, + "KeyUsageCRLSign": {reflect.TypeOf(q.KeyUsageCRLSign), constant.MakeInt64(int64(q.KeyUsageCRLSign))}, + "KeyUsageCertSign": {reflect.TypeOf(q.KeyUsageCertSign), constant.MakeInt64(int64(q.KeyUsageCertSign))}, + "KeyUsageContentCommitment": {reflect.TypeOf(q.KeyUsageContentCommitment), constant.MakeInt64(int64(q.KeyUsageContentCommitment))}, + "KeyUsageDataEncipherment": {reflect.TypeOf(q.KeyUsageDataEncipherment), constant.MakeInt64(int64(q.KeyUsageDataEncipherment))}, + "KeyUsageDecipherOnly": {reflect.TypeOf(q.KeyUsageDecipherOnly), constant.MakeInt64(int64(q.KeyUsageDecipherOnly))}, + "KeyUsageDigitalSignature": {reflect.TypeOf(q.KeyUsageDigitalSignature), constant.MakeInt64(int64(q.KeyUsageDigitalSignature))}, + "KeyUsageEncipherOnly": {reflect.TypeOf(q.KeyUsageEncipherOnly), constant.MakeInt64(int64(q.KeyUsageEncipherOnly))}, + "KeyUsageKeyAgreement": {reflect.TypeOf(q.KeyUsageKeyAgreement), constant.MakeInt64(int64(q.KeyUsageKeyAgreement))}, + "KeyUsageKeyEncipherment": {reflect.TypeOf(q.KeyUsageKeyEncipherment), constant.MakeInt64(int64(q.KeyUsageKeyEncipherment))}, + "MD2WithRSA": {reflect.TypeOf(q.MD2WithRSA), constant.MakeInt64(int64(q.MD2WithRSA))}, + "MD5WithRSA": {reflect.TypeOf(q.MD5WithRSA), constant.MakeInt64(int64(q.MD5WithRSA))}, + "NameConstraintsWithoutSANs": {reflect.TypeOf(q.NameConstraintsWithoutSANs), constant.MakeInt64(int64(q.NameConstraintsWithoutSANs))}, + "NameMismatch": {reflect.TypeOf(q.NameMismatch), constant.MakeInt64(int64(q.NameMismatch))}, + "NotAuthorizedToSign": {reflect.TypeOf(q.NotAuthorizedToSign), constant.MakeInt64(int64(q.NotAuthorizedToSign))}, + "PEMCipher3DES": {reflect.TypeOf(q.PEMCipher3DES), constant.MakeInt64(int64(q.PEMCipher3DES))}, + "PEMCipherAES128": {reflect.TypeOf(q.PEMCipherAES128), constant.MakeInt64(int64(q.PEMCipherAES128))}, + "PEMCipherAES192": {reflect.TypeOf(q.PEMCipherAES192), constant.MakeInt64(int64(q.PEMCipherAES192))}, + "PEMCipherAES256": {reflect.TypeOf(q.PEMCipherAES256), constant.MakeInt64(int64(q.PEMCipherAES256))}, + "PEMCipherDES": {reflect.TypeOf(q.PEMCipherDES), constant.MakeInt64(int64(q.PEMCipherDES))}, + "PureEd25519": {reflect.TypeOf(q.PureEd25519), constant.MakeInt64(int64(q.PureEd25519))}, + "RSA": {reflect.TypeOf(q.RSA), constant.MakeInt64(int64(q.RSA))}, + "SHA1WithRSA": {reflect.TypeOf(q.SHA1WithRSA), constant.MakeInt64(int64(q.SHA1WithRSA))}, + "SHA256WithRSA": {reflect.TypeOf(q.SHA256WithRSA), constant.MakeInt64(int64(q.SHA256WithRSA))}, + "SHA256WithRSAPSS": {reflect.TypeOf(q.SHA256WithRSAPSS), constant.MakeInt64(int64(q.SHA256WithRSAPSS))}, + "SHA384WithRSA": {reflect.TypeOf(q.SHA384WithRSA), constant.MakeInt64(int64(q.SHA384WithRSA))}, + "SHA384WithRSAPSS": {reflect.TypeOf(q.SHA384WithRSAPSS), constant.MakeInt64(int64(q.SHA384WithRSAPSS))}, + "SHA512WithRSA": {reflect.TypeOf(q.SHA512WithRSA), constant.MakeInt64(int64(q.SHA512WithRSA))}, + "SHA512WithRSAPSS": {reflect.TypeOf(q.SHA512WithRSAPSS), constant.MakeInt64(int64(q.SHA512WithRSAPSS))}, + "TooManyConstraints": {reflect.TypeOf(q.TooManyConstraints), constant.MakeInt64(int64(q.TooManyConstraints))}, + "TooManyIntermediates": {reflect.TypeOf(q.TooManyIntermediates), constant.MakeInt64(int64(q.TooManyIntermediates))}, + "UnconstrainedName": {reflect.TypeOf(q.UnconstrainedName), constant.MakeInt64(int64(q.UnconstrainedName))}, + "UnknownPublicKeyAlgorithm": {reflect.TypeOf(q.UnknownPublicKeyAlgorithm), constant.MakeInt64(int64(q.UnknownPublicKeyAlgorithm))}, + "UnknownSignatureAlgorithm": {reflect.TypeOf(q.UnknownSignatureAlgorithm), constant.MakeInt64(int64(q.UnknownSignatureAlgorithm))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/x509/pkix/go121_export.go b/pkg/crypto/x509/pkix/go121_export.go index e008b947..569977ea 100755 --- a/pkg/crypto/x509/pkix/go121_export.go +++ b/pkg/crypto/x509/pkix/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package pkix diff --git a/pkg/crypto/x509/pkix/go122_export.go b/pkg/crypto/x509/pkix/go122_export.go new file mode 100755 index 00000000..9473e2f6 --- /dev/null +++ b/pkg/crypto/x509/pkix/go122_export.go @@ -0,0 +1,46 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package pkix + +import ( + q "crypto/x509/pkix" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "pkix", + Path: "crypto/x509/pkix", + Deps: map[string]string{ + "encoding/asn1": "asn1", + "encoding/hex": "hex", + "fmt": "fmt", + "math/big": "big", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "AlgorithmIdentifier": reflect.TypeOf((*q.AlgorithmIdentifier)(nil)).Elem(), + "AttributeTypeAndValue": reflect.TypeOf((*q.AttributeTypeAndValue)(nil)).Elem(), + "AttributeTypeAndValueSET": reflect.TypeOf((*q.AttributeTypeAndValueSET)(nil)).Elem(), + "CertificateList": reflect.TypeOf((*q.CertificateList)(nil)).Elem(), + "Extension": reflect.TypeOf((*q.Extension)(nil)).Elem(), + "Name": reflect.TypeOf((*q.Name)(nil)).Elem(), + "RDNSequence": reflect.TypeOf((*q.RDNSequence)(nil)).Elem(), + "RelativeDistinguishedNameSET": reflect.TypeOf((*q.RelativeDistinguishedNameSET)(nil)).Elem(), + "RevokedCertificate": reflect.TypeOf((*q.RevokedCertificate)(nil)).Elem(), + "TBSCertificateList": reflect.TypeOf((*q.TBSCertificateList)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{}, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/crypto/x509/pkix/go123_export.go b/pkg/crypto/x509/pkix/go123_export.go new file mode 100755 index 00000000..d8a0a585 --- /dev/null +++ b/pkg/crypto/x509/pkix/go123_export.go @@ -0,0 +1,46 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package pkix + +import ( + q "crypto/x509/pkix" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "pkix", + Path: "crypto/x509/pkix", + Deps: map[string]string{ + "encoding/asn1": "asn1", + "encoding/hex": "hex", + "fmt": "fmt", + "math/big": "big", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "AlgorithmIdentifier": reflect.TypeOf((*q.AlgorithmIdentifier)(nil)).Elem(), + "AttributeTypeAndValue": reflect.TypeOf((*q.AttributeTypeAndValue)(nil)).Elem(), + "AttributeTypeAndValueSET": reflect.TypeOf((*q.AttributeTypeAndValueSET)(nil)).Elem(), + "CertificateList": reflect.TypeOf((*q.CertificateList)(nil)).Elem(), + "Extension": reflect.TypeOf((*q.Extension)(nil)).Elem(), + "Name": reflect.TypeOf((*q.Name)(nil)).Elem(), + "RDNSequence": reflect.TypeOf((*q.RDNSequence)(nil)).Elem(), + "RelativeDistinguishedNameSET": reflect.TypeOf((*q.RelativeDistinguishedNameSET)(nil)).Elem(), + "RevokedCertificate": reflect.TypeOf((*q.RevokedCertificate)(nil)).Elem(), + "TBSCertificateList": reflect.TypeOf((*q.TBSCertificateList)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{}, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/database/sql/driver/go121_export.go b/pkg/database/sql/driver/go121_export.go index db785527..f9e937f0 100755 --- a/pkg/database/sql/driver/go121_export.go +++ b/pkg/database/sql/driver/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package driver diff --git a/pkg/database/sql/driver/go122_export.go b/pkg/database/sql/driver/go122_export.go new file mode 100755 index 00000000..e7e4dc37 --- /dev/null +++ b/pkg/database/sql/driver/go122_export.go @@ -0,0 +1,86 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package driver + +import ( + q "database/sql/driver" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "driver", + Path: "database/sql/driver", + Deps: map[string]string{ + "context": "context", + "errors": "errors", + "fmt": "fmt", + "reflect": "reflect", + "strconv": "strconv", + "time": "time", + }, + Interfaces: map[string]reflect.Type{ + "ColumnConverter": reflect.TypeOf((*q.ColumnConverter)(nil)).Elem(), + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "ConnBeginTx": reflect.TypeOf((*q.ConnBeginTx)(nil)).Elem(), + "ConnPrepareContext": reflect.TypeOf((*q.ConnPrepareContext)(nil)).Elem(), + "Connector": reflect.TypeOf((*q.Connector)(nil)).Elem(), + "Driver": reflect.TypeOf((*q.Driver)(nil)).Elem(), + "DriverContext": reflect.TypeOf((*q.DriverContext)(nil)).Elem(), + "Execer": reflect.TypeOf((*q.Execer)(nil)).Elem(), + "ExecerContext": reflect.TypeOf((*q.ExecerContext)(nil)).Elem(), + "NamedValueChecker": reflect.TypeOf((*q.NamedValueChecker)(nil)).Elem(), + "Pinger": reflect.TypeOf((*q.Pinger)(nil)).Elem(), + "Queryer": reflect.TypeOf((*q.Queryer)(nil)).Elem(), + "QueryerContext": reflect.TypeOf((*q.QueryerContext)(nil)).Elem(), + "Result": reflect.TypeOf((*q.Result)(nil)).Elem(), + "Rows": reflect.TypeOf((*q.Rows)(nil)).Elem(), + "RowsColumnTypeDatabaseTypeName": reflect.TypeOf((*q.RowsColumnTypeDatabaseTypeName)(nil)).Elem(), + "RowsColumnTypeLength": reflect.TypeOf((*q.RowsColumnTypeLength)(nil)).Elem(), + "RowsColumnTypeNullable": reflect.TypeOf((*q.RowsColumnTypeNullable)(nil)).Elem(), + "RowsColumnTypePrecisionScale": reflect.TypeOf((*q.RowsColumnTypePrecisionScale)(nil)).Elem(), + "RowsColumnTypeScanType": reflect.TypeOf((*q.RowsColumnTypeScanType)(nil)).Elem(), + "RowsNextResultSet": reflect.TypeOf((*q.RowsNextResultSet)(nil)).Elem(), + "SessionResetter": reflect.TypeOf((*q.SessionResetter)(nil)).Elem(), + "Stmt": reflect.TypeOf((*q.Stmt)(nil)).Elem(), + "StmtExecContext": reflect.TypeOf((*q.StmtExecContext)(nil)).Elem(), + "StmtQueryContext": reflect.TypeOf((*q.StmtQueryContext)(nil)).Elem(), + "Tx": reflect.TypeOf((*q.Tx)(nil)).Elem(), + "Validator": reflect.TypeOf((*q.Validator)(nil)).Elem(), + "Value": reflect.TypeOf((*q.Value)(nil)).Elem(), + "ValueConverter": reflect.TypeOf((*q.ValueConverter)(nil)).Elem(), + "Valuer": reflect.TypeOf((*q.Valuer)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "IsolationLevel": reflect.TypeOf((*q.IsolationLevel)(nil)).Elem(), + "NamedValue": reflect.TypeOf((*q.NamedValue)(nil)).Elem(), + "NotNull": reflect.TypeOf((*q.NotNull)(nil)).Elem(), + "Null": reflect.TypeOf((*q.Null)(nil)).Elem(), + "RowsAffected": reflect.TypeOf((*q.RowsAffected)(nil)).Elem(), + "TxOptions": reflect.TypeOf((*q.TxOptions)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Bool": reflect.ValueOf(&q.Bool), + "DefaultParameterConverter": reflect.ValueOf(&q.DefaultParameterConverter), + "ErrBadConn": reflect.ValueOf(&q.ErrBadConn), + "ErrRemoveArgument": reflect.ValueOf(&q.ErrRemoveArgument), + "ErrSkip": reflect.ValueOf(&q.ErrSkip), + "Int32": reflect.ValueOf(&q.Int32), + "ResultNoRows": reflect.ValueOf(&q.ResultNoRows), + "String": reflect.ValueOf(&q.String), + }, + Funcs: map[string]reflect.Value{ + "IsScanValue": reflect.ValueOf(q.IsScanValue), + "IsValue": reflect.ValueOf(q.IsValue), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/database/sql/driver/go123_export.go b/pkg/database/sql/driver/go123_export.go new file mode 100755 index 00000000..1818dfcd --- /dev/null +++ b/pkg/database/sql/driver/go123_export.go @@ -0,0 +1,86 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package driver + +import ( + q "database/sql/driver" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "driver", + Path: "database/sql/driver", + Deps: map[string]string{ + "context": "context", + "errors": "errors", + "fmt": "fmt", + "reflect": "reflect", + "strconv": "strconv", + "time": "time", + }, + Interfaces: map[string]reflect.Type{ + "ColumnConverter": reflect.TypeOf((*q.ColumnConverter)(nil)).Elem(), + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "ConnBeginTx": reflect.TypeOf((*q.ConnBeginTx)(nil)).Elem(), + "ConnPrepareContext": reflect.TypeOf((*q.ConnPrepareContext)(nil)).Elem(), + "Connector": reflect.TypeOf((*q.Connector)(nil)).Elem(), + "Driver": reflect.TypeOf((*q.Driver)(nil)).Elem(), + "DriverContext": reflect.TypeOf((*q.DriverContext)(nil)).Elem(), + "Execer": reflect.TypeOf((*q.Execer)(nil)).Elem(), + "ExecerContext": reflect.TypeOf((*q.ExecerContext)(nil)).Elem(), + "NamedValueChecker": reflect.TypeOf((*q.NamedValueChecker)(nil)).Elem(), + "Pinger": reflect.TypeOf((*q.Pinger)(nil)).Elem(), + "Queryer": reflect.TypeOf((*q.Queryer)(nil)).Elem(), + "QueryerContext": reflect.TypeOf((*q.QueryerContext)(nil)).Elem(), + "Result": reflect.TypeOf((*q.Result)(nil)).Elem(), + "Rows": reflect.TypeOf((*q.Rows)(nil)).Elem(), + "RowsColumnTypeDatabaseTypeName": reflect.TypeOf((*q.RowsColumnTypeDatabaseTypeName)(nil)).Elem(), + "RowsColumnTypeLength": reflect.TypeOf((*q.RowsColumnTypeLength)(nil)).Elem(), + "RowsColumnTypeNullable": reflect.TypeOf((*q.RowsColumnTypeNullable)(nil)).Elem(), + "RowsColumnTypePrecisionScale": reflect.TypeOf((*q.RowsColumnTypePrecisionScale)(nil)).Elem(), + "RowsColumnTypeScanType": reflect.TypeOf((*q.RowsColumnTypeScanType)(nil)).Elem(), + "RowsNextResultSet": reflect.TypeOf((*q.RowsNextResultSet)(nil)).Elem(), + "SessionResetter": reflect.TypeOf((*q.SessionResetter)(nil)).Elem(), + "Stmt": reflect.TypeOf((*q.Stmt)(nil)).Elem(), + "StmtExecContext": reflect.TypeOf((*q.StmtExecContext)(nil)).Elem(), + "StmtQueryContext": reflect.TypeOf((*q.StmtQueryContext)(nil)).Elem(), + "Tx": reflect.TypeOf((*q.Tx)(nil)).Elem(), + "Validator": reflect.TypeOf((*q.Validator)(nil)).Elem(), + "Value": reflect.TypeOf((*q.Value)(nil)).Elem(), + "ValueConverter": reflect.TypeOf((*q.ValueConverter)(nil)).Elem(), + "Valuer": reflect.TypeOf((*q.Valuer)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "IsolationLevel": reflect.TypeOf((*q.IsolationLevel)(nil)).Elem(), + "NamedValue": reflect.TypeOf((*q.NamedValue)(nil)).Elem(), + "NotNull": reflect.TypeOf((*q.NotNull)(nil)).Elem(), + "Null": reflect.TypeOf((*q.Null)(nil)).Elem(), + "RowsAffected": reflect.TypeOf((*q.RowsAffected)(nil)).Elem(), + "TxOptions": reflect.TypeOf((*q.TxOptions)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Bool": reflect.ValueOf(&q.Bool), + "DefaultParameterConverter": reflect.ValueOf(&q.DefaultParameterConverter), + "ErrBadConn": reflect.ValueOf(&q.ErrBadConn), + "ErrRemoveArgument": reflect.ValueOf(&q.ErrRemoveArgument), + "ErrSkip": reflect.ValueOf(&q.ErrSkip), + "Int32": reflect.ValueOf(&q.Int32), + "ResultNoRows": reflect.ValueOf(&q.ResultNoRows), + "String": reflect.ValueOf(&q.String), + }, + Funcs: map[string]reflect.Value{ + "IsScanValue": reflect.ValueOf(q.IsScanValue), + "IsValue": reflect.ValueOf(q.IsValue), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/database/sql/go121_export.go b/pkg/database/sql/go121_export.go index 79fceb9c..94037776 100755 --- a/pkg/database/sql/go121_export.go +++ b/pkg/database/sql/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package sql diff --git a/pkg/database/sql/go122_export.go b/pkg/database/sql/go122_export.go new file mode 100755 index 00000000..fa8c914f --- /dev/null +++ b/pkg/database/sql/go122_export.go @@ -0,0 +1,90 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package sql + +import ( + q "database/sql" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "sql", + Path: "database/sql", + Deps: map[string]string{ + "bytes": "bytes", + "context": "context", + "database/sql/driver": "driver", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "reflect": "reflect", + "runtime": "runtime", + "sort": "sort", + "strconv": "strconv", + "sync": "sync", + "sync/atomic": "atomic", + "time": "time", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "Result": reflect.TypeOf((*q.Result)(nil)).Elem(), + "Scanner": reflect.TypeOf((*q.Scanner)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "ColumnType": reflect.TypeOf((*q.ColumnType)(nil)).Elem(), + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "DB": reflect.TypeOf((*q.DB)(nil)).Elem(), + "DBStats": reflect.TypeOf((*q.DBStats)(nil)).Elem(), + "IsolationLevel": reflect.TypeOf((*q.IsolationLevel)(nil)).Elem(), + "NamedArg": reflect.TypeOf((*q.NamedArg)(nil)).Elem(), + "NullBool": reflect.TypeOf((*q.NullBool)(nil)).Elem(), + "NullByte": reflect.TypeOf((*q.NullByte)(nil)).Elem(), + "NullFloat64": reflect.TypeOf((*q.NullFloat64)(nil)).Elem(), + "NullInt16": reflect.TypeOf((*q.NullInt16)(nil)).Elem(), + "NullInt32": reflect.TypeOf((*q.NullInt32)(nil)).Elem(), + "NullInt64": reflect.TypeOf((*q.NullInt64)(nil)).Elem(), + "NullString": reflect.TypeOf((*q.NullString)(nil)).Elem(), + "NullTime": reflect.TypeOf((*q.NullTime)(nil)).Elem(), + "Out": reflect.TypeOf((*q.Out)(nil)).Elem(), + "RawBytes": reflect.TypeOf((*q.RawBytes)(nil)).Elem(), + "Row": reflect.TypeOf((*q.Row)(nil)).Elem(), + "Rows": reflect.TypeOf((*q.Rows)(nil)).Elem(), + "Stmt": reflect.TypeOf((*q.Stmt)(nil)).Elem(), + "Tx": reflect.TypeOf((*q.Tx)(nil)).Elem(), + "TxOptions": reflect.TypeOf((*q.TxOptions)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrConnDone": reflect.ValueOf(&q.ErrConnDone), + "ErrNoRows": reflect.ValueOf(&q.ErrNoRows), + "ErrTxDone": reflect.ValueOf(&q.ErrTxDone), + }, + Funcs: map[string]reflect.Value{ + "Drivers": reflect.ValueOf(q.Drivers), + "Named": reflect.ValueOf(q.Named), + "Open": reflect.ValueOf(q.Open), + "OpenDB": reflect.ValueOf(q.OpenDB), + "Register": reflect.ValueOf(q.Register), + }, + TypedConsts: map[string]igop.TypedConst{ + "LevelDefault": {reflect.TypeOf(q.LevelDefault), constant.MakeInt64(int64(q.LevelDefault))}, + "LevelLinearizable": {reflect.TypeOf(q.LevelLinearizable), constant.MakeInt64(int64(q.LevelLinearizable))}, + "LevelReadCommitted": {reflect.TypeOf(q.LevelReadCommitted), constant.MakeInt64(int64(q.LevelReadCommitted))}, + "LevelReadUncommitted": {reflect.TypeOf(q.LevelReadUncommitted), constant.MakeInt64(int64(q.LevelReadUncommitted))}, + "LevelRepeatableRead": {reflect.TypeOf(q.LevelRepeatableRead), constant.MakeInt64(int64(q.LevelRepeatableRead))}, + "LevelSerializable": {reflect.TypeOf(q.LevelSerializable), constant.MakeInt64(int64(q.LevelSerializable))}, + "LevelSnapshot": {reflect.TypeOf(q.LevelSnapshot), constant.MakeInt64(int64(q.LevelSnapshot))}, + "LevelWriteCommitted": {reflect.TypeOf(q.LevelWriteCommitted), constant.MakeInt64(int64(q.LevelWriteCommitted))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/database/sql/go123_export.go b/pkg/database/sql/go123_export.go new file mode 100755 index 00000000..95227dcc --- /dev/null +++ b/pkg/database/sql/go123_export.go @@ -0,0 +1,92 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package sql + +import ( + q "database/sql" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "sql", + Path: "database/sql", + Deps: map[string]string{ + "bytes": "bytes", + "context": "context", + "database/sql/driver": "driver", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "math/rand/v2": "rand", + "reflect": "reflect", + "runtime": "runtime", + "slices": "slices", + "strconv": "strconv", + "sync": "sync", + "sync/atomic": "atomic", + "time": "time", + "unicode": "unicode", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Result": reflect.TypeOf((*q.Result)(nil)).Elem(), + "Scanner": reflect.TypeOf((*q.Scanner)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "ColumnType": reflect.TypeOf((*q.ColumnType)(nil)).Elem(), + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "DB": reflect.TypeOf((*q.DB)(nil)).Elem(), + "DBStats": reflect.TypeOf((*q.DBStats)(nil)).Elem(), + "IsolationLevel": reflect.TypeOf((*q.IsolationLevel)(nil)).Elem(), + "NamedArg": reflect.TypeOf((*q.NamedArg)(nil)).Elem(), + "NullBool": reflect.TypeOf((*q.NullBool)(nil)).Elem(), + "NullByte": reflect.TypeOf((*q.NullByte)(nil)).Elem(), + "NullFloat64": reflect.TypeOf((*q.NullFloat64)(nil)).Elem(), + "NullInt16": reflect.TypeOf((*q.NullInt16)(nil)).Elem(), + "NullInt32": reflect.TypeOf((*q.NullInt32)(nil)).Elem(), + "NullInt64": reflect.TypeOf((*q.NullInt64)(nil)).Elem(), + "NullString": reflect.TypeOf((*q.NullString)(nil)).Elem(), + "NullTime": reflect.TypeOf((*q.NullTime)(nil)).Elem(), + "Out": reflect.TypeOf((*q.Out)(nil)).Elem(), + "RawBytes": reflect.TypeOf((*q.RawBytes)(nil)).Elem(), + "Row": reflect.TypeOf((*q.Row)(nil)).Elem(), + "Rows": reflect.TypeOf((*q.Rows)(nil)).Elem(), + "Stmt": reflect.TypeOf((*q.Stmt)(nil)).Elem(), + "Tx": reflect.TypeOf((*q.Tx)(nil)).Elem(), + "TxOptions": reflect.TypeOf((*q.TxOptions)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrConnDone": reflect.ValueOf(&q.ErrConnDone), + "ErrNoRows": reflect.ValueOf(&q.ErrNoRows), + "ErrTxDone": reflect.ValueOf(&q.ErrTxDone), + }, + Funcs: map[string]reflect.Value{ + "Drivers": reflect.ValueOf(q.Drivers), + "Named": reflect.ValueOf(q.Named), + "Open": reflect.ValueOf(q.Open), + "OpenDB": reflect.ValueOf(q.OpenDB), + "Register": reflect.ValueOf(q.Register), + }, + TypedConsts: map[string]igop.TypedConst{ + "LevelDefault": {reflect.TypeOf(q.LevelDefault), constant.MakeInt64(int64(q.LevelDefault))}, + "LevelLinearizable": {reflect.TypeOf(q.LevelLinearizable), constant.MakeInt64(int64(q.LevelLinearizable))}, + "LevelReadCommitted": {reflect.TypeOf(q.LevelReadCommitted), constant.MakeInt64(int64(q.LevelReadCommitted))}, + "LevelReadUncommitted": {reflect.TypeOf(q.LevelReadUncommitted), constant.MakeInt64(int64(q.LevelReadUncommitted))}, + "LevelRepeatableRead": {reflect.TypeOf(q.LevelRepeatableRead), constant.MakeInt64(int64(q.LevelRepeatableRead))}, + "LevelSerializable": {reflect.TypeOf(q.LevelSerializable), constant.MakeInt64(int64(q.LevelSerializable))}, + "LevelSnapshot": {reflect.TypeOf(q.LevelSnapshot), constant.MakeInt64(int64(q.LevelSnapshot))}, + "LevelWriteCommitted": {reflect.TypeOf(q.LevelWriteCommitted), constant.MakeInt64(int64(q.LevelWriteCommitted))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/debug/buildinfo/go121_export.go b/pkg/debug/buildinfo/go121_export.go index 864306eb..0502a9c0 100755 --- a/pkg/debug/buildinfo/go121_export.go +++ b/pkg/debug/buildinfo/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package buildinfo diff --git a/pkg/debug/buildinfo/go122_export.go b/pkg/debug/buildinfo/go122_export.go new file mode 100755 index 00000000..12f28674 --- /dev/null +++ b/pkg/debug/buildinfo/go122_export.go @@ -0,0 +1,49 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package buildinfo + +import ( + q "debug/buildinfo" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "buildinfo", + Path: "debug/buildinfo", + Deps: map[string]string{ + "bytes": "bytes", + "debug/elf": "elf", + "debug/macho": "macho", + "debug/pe": "pe", + "debug/plan9obj": "plan9obj", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "internal/saferio": "saferio", + "internal/xcoff": "xcoff", + "io": "io", + "io/fs": "fs", + "os": "os", + "runtime/debug": "debug", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{ + "BuildInfo": reflect.TypeOf((*q.BuildInfo)(nil)).Elem(), + }, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Read": reflect.ValueOf(q.Read), + "ReadFile": reflect.ValueOf(q.ReadFile), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/debug/buildinfo/go123_export.go b/pkg/debug/buildinfo/go123_export.go new file mode 100755 index 00000000..f1c227c9 --- /dev/null +++ b/pkg/debug/buildinfo/go123_export.go @@ -0,0 +1,50 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package buildinfo + +import ( + q "debug/buildinfo" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "buildinfo", + Path: "debug/buildinfo", + Deps: map[string]string{ + "bytes": "bytes", + "debug/elf": "elf", + "debug/macho": "macho", + "debug/pe": "pe", + "debug/plan9obj": "plan9obj", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "internal/saferio": "saferio", + "internal/xcoff": "xcoff", + "io": "io", + "io/fs": "fs", + "os": "os", + "runtime/debug": "debug", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{ + "BuildInfo": reflect.TypeOf((*q.BuildInfo)(nil)).Elem(), + }, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Read": reflect.ValueOf(q.Read), + "ReadFile": reflect.ValueOf(q.ReadFile), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/debug/dwarf/go121_export.go b/pkg/debug/dwarf/go121_export.go index 83990cee..ad62e441 100755 --- a/pkg/debug/dwarf/go121_export.go +++ b/pkg/debug/dwarf/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package dwarf diff --git a/pkg/debug/dwarf/go122_export.go b/pkg/debug/dwarf/go122_export.go new file mode 100755 index 00000000..2d62b3cc --- /dev/null +++ b/pkg/debug/dwarf/go122_export.go @@ -0,0 +1,294 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package dwarf + +import ( + q "debug/dwarf" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "dwarf", + Path: "debug/dwarf", + Deps: map[string]string{ + "bytes": "bytes", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "path": "path", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{ + "Type": reflect.TypeOf((*q.Type)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "AddrType": reflect.TypeOf((*q.AddrType)(nil)).Elem(), + "ArrayType": reflect.TypeOf((*q.ArrayType)(nil)).Elem(), + "Attr": reflect.TypeOf((*q.Attr)(nil)).Elem(), + "BasicType": reflect.TypeOf((*q.BasicType)(nil)).Elem(), + "BoolType": reflect.TypeOf((*q.BoolType)(nil)).Elem(), + "CharType": reflect.TypeOf((*q.CharType)(nil)).Elem(), + "Class": reflect.TypeOf((*q.Class)(nil)).Elem(), + "CommonType": reflect.TypeOf((*q.CommonType)(nil)).Elem(), + "ComplexType": reflect.TypeOf((*q.ComplexType)(nil)).Elem(), + "Data": reflect.TypeOf((*q.Data)(nil)).Elem(), + "DecodeError": reflect.TypeOf((*q.DecodeError)(nil)).Elem(), + "DotDotDotType": reflect.TypeOf((*q.DotDotDotType)(nil)).Elem(), + "Entry": reflect.TypeOf((*q.Entry)(nil)).Elem(), + "EnumType": reflect.TypeOf((*q.EnumType)(nil)).Elem(), + "EnumValue": reflect.TypeOf((*q.EnumValue)(nil)).Elem(), + "Field": reflect.TypeOf((*q.Field)(nil)).Elem(), + "FloatType": reflect.TypeOf((*q.FloatType)(nil)).Elem(), + "FuncType": reflect.TypeOf((*q.FuncType)(nil)).Elem(), + "IntType": reflect.TypeOf((*q.IntType)(nil)).Elem(), + "LineEntry": reflect.TypeOf((*q.LineEntry)(nil)).Elem(), + "LineFile": reflect.TypeOf((*q.LineFile)(nil)).Elem(), + "LineReader": reflect.TypeOf((*q.LineReader)(nil)).Elem(), + "LineReaderPos": reflect.TypeOf((*q.LineReaderPos)(nil)).Elem(), + "Offset": reflect.TypeOf((*q.Offset)(nil)).Elem(), + "PtrType": reflect.TypeOf((*q.PtrType)(nil)).Elem(), + "QualType": reflect.TypeOf((*q.QualType)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "StructField": reflect.TypeOf((*q.StructField)(nil)).Elem(), + "StructType": reflect.TypeOf((*q.StructType)(nil)).Elem(), + "Tag": reflect.TypeOf((*q.Tag)(nil)).Elem(), + "TypedefType": reflect.TypeOf((*q.TypedefType)(nil)).Elem(), + "UcharType": reflect.TypeOf((*q.UcharType)(nil)).Elem(), + "UintType": reflect.TypeOf((*q.UintType)(nil)).Elem(), + "UnspecifiedType": reflect.TypeOf((*q.UnspecifiedType)(nil)).Elem(), + "UnsupportedType": reflect.TypeOf((*q.UnsupportedType)(nil)).Elem(), + "VoidType": reflect.TypeOf((*q.VoidType)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrUnknownPC": reflect.ValueOf(&q.ErrUnknownPC), + }, + Funcs: map[string]reflect.Value{ + "New": reflect.ValueOf(q.New), + }, + TypedConsts: map[string]igop.TypedConst{ + "AttrAbstractOrigin": {reflect.TypeOf(q.AttrAbstractOrigin), constant.MakeInt64(int64(q.AttrAbstractOrigin))}, + "AttrAccessibility": {reflect.TypeOf(q.AttrAccessibility), constant.MakeInt64(int64(q.AttrAccessibility))}, + "AttrAddrBase": {reflect.TypeOf(q.AttrAddrBase), constant.MakeInt64(int64(q.AttrAddrBase))}, + "AttrAddrClass": {reflect.TypeOf(q.AttrAddrClass), constant.MakeInt64(int64(q.AttrAddrClass))}, + "AttrAlignment": {reflect.TypeOf(q.AttrAlignment), constant.MakeInt64(int64(q.AttrAlignment))}, + "AttrAllocated": {reflect.TypeOf(q.AttrAllocated), constant.MakeInt64(int64(q.AttrAllocated))}, + "AttrArtificial": {reflect.TypeOf(q.AttrArtificial), constant.MakeInt64(int64(q.AttrArtificial))}, + "AttrAssociated": {reflect.TypeOf(q.AttrAssociated), constant.MakeInt64(int64(q.AttrAssociated))}, + "AttrBaseTypes": {reflect.TypeOf(q.AttrBaseTypes), constant.MakeInt64(int64(q.AttrBaseTypes))}, + "AttrBinaryScale": {reflect.TypeOf(q.AttrBinaryScale), constant.MakeInt64(int64(q.AttrBinaryScale))}, + "AttrBitOffset": {reflect.TypeOf(q.AttrBitOffset), constant.MakeInt64(int64(q.AttrBitOffset))}, + "AttrBitSize": {reflect.TypeOf(q.AttrBitSize), constant.MakeInt64(int64(q.AttrBitSize))}, + "AttrByteSize": {reflect.TypeOf(q.AttrByteSize), constant.MakeInt64(int64(q.AttrByteSize))}, + "AttrCallAllCalls": {reflect.TypeOf(q.AttrCallAllCalls), constant.MakeInt64(int64(q.AttrCallAllCalls))}, + "AttrCallAllSourceCalls": {reflect.TypeOf(q.AttrCallAllSourceCalls), constant.MakeInt64(int64(q.AttrCallAllSourceCalls))}, + "AttrCallAllTailCalls": {reflect.TypeOf(q.AttrCallAllTailCalls), constant.MakeInt64(int64(q.AttrCallAllTailCalls))}, + "AttrCallColumn": {reflect.TypeOf(q.AttrCallColumn), constant.MakeInt64(int64(q.AttrCallColumn))}, + "AttrCallDataLocation": {reflect.TypeOf(q.AttrCallDataLocation), constant.MakeInt64(int64(q.AttrCallDataLocation))}, + "AttrCallDataValue": {reflect.TypeOf(q.AttrCallDataValue), constant.MakeInt64(int64(q.AttrCallDataValue))}, + "AttrCallFile": {reflect.TypeOf(q.AttrCallFile), constant.MakeInt64(int64(q.AttrCallFile))}, + "AttrCallLine": {reflect.TypeOf(q.AttrCallLine), constant.MakeInt64(int64(q.AttrCallLine))}, + "AttrCallOrigin": {reflect.TypeOf(q.AttrCallOrigin), constant.MakeInt64(int64(q.AttrCallOrigin))}, + "AttrCallPC": {reflect.TypeOf(q.AttrCallPC), constant.MakeInt64(int64(q.AttrCallPC))}, + "AttrCallParameter": {reflect.TypeOf(q.AttrCallParameter), constant.MakeInt64(int64(q.AttrCallParameter))}, + "AttrCallReturnPC": {reflect.TypeOf(q.AttrCallReturnPC), constant.MakeInt64(int64(q.AttrCallReturnPC))}, + "AttrCallTailCall": {reflect.TypeOf(q.AttrCallTailCall), constant.MakeInt64(int64(q.AttrCallTailCall))}, + "AttrCallTarget": {reflect.TypeOf(q.AttrCallTarget), constant.MakeInt64(int64(q.AttrCallTarget))}, + "AttrCallTargetClobbered": {reflect.TypeOf(q.AttrCallTargetClobbered), constant.MakeInt64(int64(q.AttrCallTargetClobbered))}, + "AttrCallValue": {reflect.TypeOf(q.AttrCallValue), constant.MakeInt64(int64(q.AttrCallValue))}, + "AttrCalling": {reflect.TypeOf(q.AttrCalling), constant.MakeInt64(int64(q.AttrCalling))}, + "AttrCommonRef": {reflect.TypeOf(q.AttrCommonRef), constant.MakeInt64(int64(q.AttrCommonRef))}, + "AttrCompDir": {reflect.TypeOf(q.AttrCompDir), constant.MakeInt64(int64(q.AttrCompDir))}, + "AttrConstExpr": {reflect.TypeOf(q.AttrConstExpr), constant.MakeInt64(int64(q.AttrConstExpr))}, + "AttrConstValue": {reflect.TypeOf(q.AttrConstValue), constant.MakeInt64(int64(q.AttrConstValue))}, + "AttrContainingType": {reflect.TypeOf(q.AttrContainingType), constant.MakeInt64(int64(q.AttrContainingType))}, + "AttrCount": {reflect.TypeOf(q.AttrCount), constant.MakeInt64(int64(q.AttrCount))}, + "AttrDataBitOffset": {reflect.TypeOf(q.AttrDataBitOffset), constant.MakeInt64(int64(q.AttrDataBitOffset))}, + "AttrDataLocation": {reflect.TypeOf(q.AttrDataLocation), constant.MakeInt64(int64(q.AttrDataLocation))}, + "AttrDataMemberLoc": {reflect.TypeOf(q.AttrDataMemberLoc), constant.MakeInt64(int64(q.AttrDataMemberLoc))}, + "AttrDecimalScale": {reflect.TypeOf(q.AttrDecimalScale), constant.MakeInt64(int64(q.AttrDecimalScale))}, + "AttrDecimalSign": {reflect.TypeOf(q.AttrDecimalSign), constant.MakeInt64(int64(q.AttrDecimalSign))}, + "AttrDeclColumn": {reflect.TypeOf(q.AttrDeclColumn), constant.MakeInt64(int64(q.AttrDeclColumn))}, + "AttrDeclFile": {reflect.TypeOf(q.AttrDeclFile), constant.MakeInt64(int64(q.AttrDeclFile))}, + "AttrDeclLine": {reflect.TypeOf(q.AttrDeclLine), constant.MakeInt64(int64(q.AttrDeclLine))}, + "AttrDeclaration": {reflect.TypeOf(q.AttrDeclaration), constant.MakeInt64(int64(q.AttrDeclaration))}, + "AttrDefaultValue": {reflect.TypeOf(q.AttrDefaultValue), constant.MakeInt64(int64(q.AttrDefaultValue))}, + "AttrDefaulted": {reflect.TypeOf(q.AttrDefaulted), constant.MakeInt64(int64(q.AttrDefaulted))}, + "AttrDeleted": {reflect.TypeOf(q.AttrDeleted), constant.MakeInt64(int64(q.AttrDeleted))}, + "AttrDescription": {reflect.TypeOf(q.AttrDescription), constant.MakeInt64(int64(q.AttrDescription))}, + "AttrDigitCount": {reflect.TypeOf(q.AttrDigitCount), constant.MakeInt64(int64(q.AttrDigitCount))}, + "AttrDiscr": {reflect.TypeOf(q.AttrDiscr), constant.MakeInt64(int64(q.AttrDiscr))}, + "AttrDiscrList": {reflect.TypeOf(q.AttrDiscrList), constant.MakeInt64(int64(q.AttrDiscrList))}, + "AttrDiscrValue": {reflect.TypeOf(q.AttrDiscrValue), constant.MakeInt64(int64(q.AttrDiscrValue))}, + "AttrDwoName": {reflect.TypeOf(q.AttrDwoName), constant.MakeInt64(int64(q.AttrDwoName))}, + "AttrElemental": {reflect.TypeOf(q.AttrElemental), constant.MakeInt64(int64(q.AttrElemental))}, + "AttrEncoding": {reflect.TypeOf(q.AttrEncoding), constant.MakeInt64(int64(q.AttrEncoding))}, + "AttrEndianity": {reflect.TypeOf(q.AttrEndianity), constant.MakeInt64(int64(q.AttrEndianity))}, + "AttrEntrypc": {reflect.TypeOf(q.AttrEntrypc), constant.MakeInt64(int64(q.AttrEntrypc))}, + "AttrEnumClass": {reflect.TypeOf(q.AttrEnumClass), constant.MakeInt64(int64(q.AttrEnumClass))}, + "AttrExplicit": {reflect.TypeOf(q.AttrExplicit), constant.MakeInt64(int64(q.AttrExplicit))}, + "AttrExportSymbols": {reflect.TypeOf(q.AttrExportSymbols), constant.MakeInt64(int64(q.AttrExportSymbols))}, + "AttrExtension": {reflect.TypeOf(q.AttrExtension), constant.MakeInt64(int64(q.AttrExtension))}, + "AttrExternal": {reflect.TypeOf(q.AttrExternal), constant.MakeInt64(int64(q.AttrExternal))}, + "AttrFrameBase": {reflect.TypeOf(q.AttrFrameBase), constant.MakeInt64(int64(q.AttrFrameBase))}, + "AttrFriend": {reflect.TypeOf(q.AttrFriend), constant.MakeInt64(int64(q.AttrFriend))}, + "AttrHighpc": {reflect.TypeOf(q.AttrHighpc), constant.MakeInt64(int64(q.AttrHighpc))}, + "AttrIdentifierCase": {reflect.TypeOf(q.AttrIdentifierCase), constant.MakeInt64(int64(q.AttrIdentifierCase))}, + "AttrImport": {reflect.TypeOf(q.AttrImport), constant.MakeInt64(int64(q.AttrImport))}, + "AttrInline": {reflect.TypeOf(q.AttrInline), constant.MakeInt64(int64(q.AttrInline))}, + "AttrIsOptional": {reflect.TypeOf(q.AttrIsOptional), constant.MakeInt64(int64(q.AttrIsOptional))}, + "AttrLanguage": {reflect.TypeOf(q.AttrLanguage), constant.MakeInt64(int64(q.AttrLanguage))}, + "AttrLinkageName": {reflect.TypeOf(q.AttrLinkageName), constant.MakeInt64(int64(q.AttrLinkageName))}, + "AttrLocation": {reflect.TypeOf(q.AttrLocation), constant.MakeInt64(int64(q.AttrLocation))}, + "AttrLoclistsBase": {reflect.TypeOf(q.AttrLoclistsBase), constant.MakeInt64(int64(q.AttrLoclistsBase))}, + "AttrLowerBound": {reflect.TypeOf(q.AttrLowerBound), constant.MakeInt64(int64(q.AttrLowerBound))}, + "AttrLowpc": {reflect.TypeOf(q.AttrLowpc), constant.MakeInt64(int64(q.AttrLowpc))}, + "AttrMacroInfo": {reflect.TypeOf(q.AttrMacroInfo), constant.MakeInt64(int64(q.AttrMacroInfo))}, + "AttrMacros": {reflect.TypeOf(q.AttrMacros), constant.MakeInt64(int64(q.AttrMacros))}, + "AttrMainSubprogram": {reflect.TypeOf(q.AttrMainSubprogram), constant.MakeInt64(int64(q.AttrMainSubprogram))}, + "AttrMutable": {reflect.TypeOf(q.AttrMutable), constant.MakeInt64(int64(q.AttrMutable))}, + "AttrName": {reflect.TypeOf(q.AttrName), constant.MakeInt64(int64(q.AttrName))}, + "AttrNamelistItem": {reflect.TypeOf(q.AttrNamelistItem), constant.MakeInt64(int64(q.AttrNamelistItem))}, + "AttrNoreturn": {reflect.TypeOf(q.AttrNoreturn), constant.MakeInt64(int64(q.AttrNoreturn))}, + "AttrObjectPointer": {reflect.TypeOf(q.AttrObjectPointer), constant.MakeInt64(int64(q.AttrObjectPointer))}, + "AttrOrdering": {reflect.TypeOf(q.AttrOrdering), constant.MakeInt64(int64(q.AttrOrdering))}, + "AttrPictureString": {reflect.TypeOf(q.AttrPictureString), constant.MakeInt64(int64(q.AttrPictureString))}, + "AttrPriority": {reflect.TypeOf(q.AttrPriority), constant.MakeInt64(int64(q.AttrPriority))}, + "AttrProducer": {reflect.TypeOf(q.AttrProducer), constant.MakeInt64(int64(q.AttrProducer))}, + "AttrPrototyped": {reflect.TypeOf(q.AttrPrototyped), constant.MakeInt64(int64(q.AttrPrototyped))}, + "AttrPure": {reflect.TypeOf(q.AttrPure), constant.MakeInt64(int64(q.AttrPure))}, + "AttrRanges": {reflect.TypeOf(q.AttrRanges), constant.MakeInt64(int64(q.AttrRanges))}, + "AttrRank": {reflect.TypeOf(q.AttrRank), constant.MakeInt64(int64(q.AttrRank))}, + "AttrRecursive": {reflect.TypeOf(q.AttrRecursive), constant.MakeInt64(int64(q.AttrRecursive))}, + "AttrReference": {reflect.TypeOf(q.AttrReference), constant.MakeInt64(int64(q.AttrReference))}, + "AttrReturnAddr": {reflect.TypeOf(q.AttrReturnAddr), constant.MakeInt64(int64(q.AttrReturnAddr))}, + "AttrRnglistsBase": {reflect.TypeOf(q.AttrRnglistsBase), constant.MakeInt64(int64(q.AttrRnglistsBase))}, + "AttrRvalueReference": {reflect.TypeOf(q.AttrRvalueReference), constant.MakeInt64(int64(q.AttrRvalueReference))}, + "AttrSegment": {reflect.TypeOf(q.AttrSegment), constant.MakeInt64(int64(q.AttrSegment))}, + "AttrSibling": {reflect.TypeOf(q.AttrSibling), constant.MakeInt64(int64(q.AttrSibling))}, + "AttrSignature": {reflect.TypeOf(q.AttrSignature), constant.MakeInt64(int64(q.AttrSignature))}, + "AttrSmall": {reflect.TypeOf(q.AttrSmall), constant.MakeInt64(int64(q.AttrSmall))}, + "AttrSpecification": {reflect.TypeOf(q.AttrSpecification), constant.MakeInt64(int64(q.AttrSpecification))}, + "AttrStartScope": {reflect.TypeOf(q.AttrStartScope), constant.MakeInt64(int64(q.AttrStartScope))}, + "AttrStaticLink": {reflect.TypeOf(q.AttrStaticLink), constant.MakeInt64(int64(q.AttrStaticLink))}, + "AttrStmtList": {reflect.TypeOf(q.AttrStmtList), constant.MakeInt64(int64(q.AttrStmtList))}, + "AttrStrOffsetsBase": {reflect.TypeOf(q.AttrStrOffsetsBase), constant.MakeInt64(int64(q.AttrStrOffsetsBase))}, + "AttrStride": {reflect.TypeOf(q.AttrStride), constant.MakeInt64(int64(q.AttrStride))}, + "AttrStrideSize": {reflect.TypeOf(q.AttrStrideSize), constant.MakeInt64(int64(q.AttrStrideSize))}, + "AttrStringLength": {reflect.TypeOf(q.AttrStringLength), constant.MakeInt64(int64(q.AttrStringLength))}, + "AttrStringLengthBitSize": {reflect.TypeOf(q.AttrStringLengthBitSize), constant.MakeInt64(int64(q.AttrStringLengthBitSize))}, + "AttrStringLengthByteSize": {reflect.TypeOf(q.AttrStringLengthByteSize), constant.MakeInt64(int64(q.AttrStringLengthByteSize))}, + "AttrThreadsScaled": {reflect.TypeOf(q.AttrThreadsScaled), constant.MakeInt64(int64(q.AttrThreadsScaled))}, + "AttrTrampoline": {reflect.TypeOf(q.AttrTrampoline), constant.MakeInt64(int64(q.AttrTrampoline))}, + "AttrType": {reflect.TypeOf(q.AttrType), constant.MakeInt64(int64(q.AttrType))}, + "AttrUpperBound": {reflect.TypeOf(q.AttrUpperBound), constant.MakeInt64(int64(q.AttrUpperBound))}, + "AttrUseLocation": {reflect.TypeOf(q.AttrUseLocation), constant.MakeInt64(int64(q.AttrUseLocation))}, + "AttrUseUTF8": {reflect.TypeOf(q.AttrUseUTF8), constant.MakeInt64(int64(q.AttrUseUTF8))}, + "AttrVarParam": {reflect.TypeOf(q.AttrVarParam), constant.MakeInt64(int64(q.AttrVarParam))}, + "AttrVirtuality": {reflect.TypeOf(q.AttrVirtuality), constant.MakeInt64(int64(q.AttrVirtuality))}, + "AttrVisibility": {reflect.TypeOf(q.AttrVisibility), constant.MakeInt64(int64(q.AttrVisibility))}, + "AttrVtableElemLoc": {reflect.TypeOf(q.AttrVtableElemLoc), constant.MakeInt64(int64(q.AttrVtableElemLoc))}, + "ClassAddrPtr": {reflect.TypeOf(q.ClassAddrPtr), constant.MakeInt64(int64(q.ClassAddrPtr))}, + "ClassAddress": {reflect.TypeOf(q.ClassAddress), constant.MakeInt64(int64(q.ClassAddress))}, + "ClassBlock": {reflect.TypeOf(q.ClassBlock), constant.MakeInt64(int64(q.ClassBlock))}, + "ClassConstant": {reflect.TypeOf(q.ClassConstant), constant.MakeInt64(int64(q.ClassConstant))}, + "ClassExprLoc": {reflect.TypeOf(q.ClassExprLoc), constant.MakeInt64(int64(q.ClassExprLoc))}, + "ClassFlag": {reflect.TypeOf(q.ClassFlag), constant.MakeInt64(int64(q.ClassFlag))}, + "ClassLinePtr": {reflect.TypeOf(q.ClassLinePtr), constant.MakeInt64(int64(q.ClassLinePtr))}, + "ClassLocList": {reflect.TypeOf(q.ClassLocList), constant.MakeInt64(int64(q.ClassLocList))}, + "ClassLocListPtr": {reflect.TypeOf(q.ClassLocListPtr), constant.MakeInt64(int64(q.ClassLocListPtr))}, + "ClassMacPtr": {reflect.TypeOf(q.ClassMacPtr), constant.MakeInt64(int64(q.ClassMacPtr))}, + "ClassRangeListPtr": {reflect.TypeOf(q.ClassRangeListPtr), constant.MakeInt64(int64(q.ClassRangeListPtr))}, + "ClassReference": {reflect.TypeOf(q.ClassReference), constant.MakeInt64(int64(q.ClassReference))}, + "ClassReferenceAlt": {reflect.TypeOf(q.ClassReferenceAlt), constant.MakeInt64(int64(q.ClassReferenceAlt))}, + "ClassReferenceSig": {reflect.TypeOf(q.ClassReferenceSig), constant.MakeInt64(int64(q.ClassReferenceSig))}, + "ClassRngList": {reflect.TypeOf(q.ClassRngList), constant.MakeInt64(int64(q.ClassRngList))}, + "ClassRngListsPtr": {reflect.TypeOf(q.ClassRngListsPtr), constant.MakeInt64(int64(q.ClassRngListsPtr))}, + "ClassStrOffsetsPtr": {reflect.TypeOf(q.ClassStrOffsetsPtr), constant.MakeInt64(int64(q.ClassStrOffsetsPtr))}, + "ClassString": {reflect.TypeOf(q.ClassString), constant.MakeInt64(int64(q.ClassString))}, + "ClassStringAlt": {reflect.TypeOf(q.ClassStringAlt), constant.MakeInt64(int64(q.ClassStringAlt))}, + "ClassUnknown": {reflect.TypeOf(q.ClassUnknown), constant.MakeInt64(int64(q.ClassUnknown))}, + "TagAccessDeclaration": {reflect.TypeOf(q.TagAccessDeclaration), constant.MakeInt64(int64(q.TagAccessDeclaration))}, + "TagArrayType": {reflect.TypeOf(q.TagArrayType), constant.MakeInt64(int64(q.TagArrayType))}, + "TagAtomicType": {reflect.TypeOf(q.TagAtomicType), constant.MakeInt64(int64(q.TagAtomicType))}, + "TagBaseType": {reflect.TypeOf(q.TagBaseType), constant.MakeInt64(int64(q.TagBaseType))}, + "TagCallSite": {reflect.TypeOf(q.TagCallSite), constant.MakeInt64(int64(q.TagCallSite))}, + "TagCallSiteParameter": {reflect.TypeOf(q.TagCallSiteParameter), constant.MakeInt64(int64(q.TagCallSiteParameter))}, + "TagCatchDwarfBlock": {reflect.TypeOf(q.TagCatchDwarfBlock), constant.MakeInt64(int64(q.TagCatchDwarfBlock))}, + "TagClassType": {reflect.TypeOf(q.TagClassType), constant.MakeInt64(int64(q.TagClassType))}, + "TagCoarrayType": {reflect.TypeOf(q.TagCoarrayType), constant.MakeInt64(int64(q.TagCoarrayType))}, + "TagCommonDwarfBlock": {reflect.TypeOf(q.TagCommonDwarfBlock), constant.MakeInt64(int64(q.TagCommonDwarfBlock))}, + "TagCommonInclusion": {reflect.TypeOf(q.TagCommonInclusion), constant.MakeInt64(int64(q.TagCommonInclusion))}, + "TagCompileUnit": {reflect.TypeOf(q.TagCompileUnit), constant.MakeInt64(int64(q.TagCompileUnit))}, + "TagCondition": {reflect.TypeOf(q.TagCondition), constant.MakeInt64(int64(q.TagCondition))}, + "TagConstType": {reflect.TypeOf(q.TagConstType), constant.MakeInt64(int64(q.TagConstType))}, + "TagConstant": {reflect.TypeOf(q.TagConstant), constant.MakeInt64(int64(q.TagConstant))}, + "TagDwarfProcedure": {reflect.TypeOf(q.TagDwarfProcedure), constant.MakeInt64(int64(q.TagDwarfProcedure))}, + "TagDynamicType": {reflect.TypeOf(q.TagDynamicType), constant.MakeInt64(int64(q.TagDynamicType))}, + "TagEntryPoint": {reflect.TypeOf(q.TagEntryPoint), constant.MakeInt64(int64(q.TagEntryPoint))}, + "TagEnumerationType": {reflect.TypeOf(q.TagEnumerationType), constant.MakeInt64(int64(q.TagEnumerationType))}, + "TagEnumerator": {reflect.TypeOf(q.TagEnumerator), constant.MakeInt64(int64(q.TagEnumerator))}, + "TagFileType": {reflect.TypeOf(q.TagFileType), constant.MakeInt64(int64(q.TagFileType))}, + "TagFormalParameter": {reflect.TypeOf(q.TagFormalParameter), constant.MakeInt64(int64(q.TagFormalParameter))}, + "TagFriend": {reflect.TypeOf(q.TagFriend), constant.MakeInt64(int64(q.TagFriend))}, + "TagGenericSubrange": {reflect.TypeOf(q.TagGenericSubrange), constant.MakeInt64(int64(q.TagGenericSubrange))}, + "TagImmutableType": {reflect.TypeOf(q.TagImmutableType), constant.MakeInt64(int64(q.TagImmutableType))}, + "TagImportedDeclaration": {reflect.TypeOf(q.TagImportedDeclaration), constant.MakeInt64(int64(q.TagImportedDeclaration))}, + "TagImportedModule": {reflect.TypeOf(q.TagImportedModule), constant.MakeInt64(int64(q.TagImportedModule))}, + "TagImportedUnit": {reflect.TypeOf(q.TagImportedUnit), constant.MakeInt64(int64(q.TagImportedUnit))}, + "TagInheritance": {reflect.TypeOf(q.TagInheritance), constant.MakeInt64(int64(q.TagInheritance))}, + "TagInlinedSubroutine": {reflect.TypeOf(q.TagInlinedSubroutine), constant.MakeInt64(int64(q.TagInlinedSubroutine))}, + "TagInterfaceType": {reflect.TypeOf(q.TagInterfaceType), constant.MakeInt64(int64(q.TagInterfaceType))}, + "TagLabel": {reflect.TypeOf(q.TagLabel), constant.MakeInt64(int64(q.TagLabel))}, + "TagLexDwarfBlock": {reflect.TypeOf(q.TagLexDwarfBlock), constant.MakeInt64(int64(q.TagLexDwarfBlock))}, + "TagMember": {reflect.TypeOf(q.TagMember), constant.MakeInt64(int64(q.TagMember))}, + "TagModule": {reflect.TypeOf(q.TagModule), constant.MakeInt64(int64(q.TagModule))}, + "TagMutableType": {reflect.TypeOf(q.TagMutableType), constant.MakeInt64(int64(q.TagMutableType))}, + "TagNamelist": {reflect.TypeOf(q.TagNamelist), constant.MakeInt64(int64(q.TagNamelist))}, + "TagNamelistItem": {reflect.TypeOf(q.TagNamelistItem), constant.MakeInt64(int64(q.TagNamelistItem))}, + "TagNamespace": {reflect.TypeOf(q.TagNamespace), constant.MakeInt64(int64(q.TagNamespace))}, + "TagPackedType": {reflect.TypeOf(q.TagPackedType), constant.MakeInt64(int64(q.TagPackedType))}, + "TagPartialUnit": {reflect.TypeOf(q.TagPartialUnit), constant.MakeInt64(int64(q.TagPartialUnit))}, + "TagPointerType": {reflect.TypeOf(q.TagPointerType), constant.MakeInt64(int64(q.TagPointerType))}, + "TagPtrToMemberType": {reflect.TypeOf(q.TagPtrToMemberType), constant.MakeInt64(int64(q.TagPtrToMemberType))}, + "TagReferenceType": {reflect.TypeOf(q.TagReferenceType), constant.MakeInt64(int64(q.TagReferenceType))}, + "TagRestrictType": {reflect.TypeOf(q.TagRestrictType), constant.MakeInt64(int64(q.TagRestrictType))}, + "TagRvalueReferenceType": {reflect.TypeOf(q.TagRvalueReferenceType), constant.MakeInt64(int64(q.TagRvalueReferenceType))}, + "TagSetType": {reflect.TypeOf(q.TagSetType), constant.MakeInt64(int64(q.TagSetType))}, + "TagSharedType": {reflect.TypeOf(q.TagSharedType), constant.MakeInt64(int64(q.TagSharedType))}, + "TagSkeletonUnit": {reflect.TypeOf(q.TagSkeletonUnit), constant.MakeInt64(int64(q.TagSkeletonUnit))}, + "TagStringType": {reflect.TypeOf(q.TagStringType), constant.MakeInt64(int64(q.TagStringType))}, + "TagStructType": {reflect.TypeOf(q.TagStructType), constant.MakeInt64(int64(q.TagStructType))}, + "TagSubprogram": {reflect.TypeOf(q.TagSubprogram), constant.MakeInt64(int64(q.TagSubprogram))}, + "TagSubrangeType": {reflect.TypeOf(q.TagSubrangeType), constant.MakeInt64(int64(q.TagSubrangeType))}, + "TagSubroutineType": {reflect.TypeOf(q.TagSubroutineType), constant.MakeInt64(int64(q.TagSubroutineType))}, + "TagTemplateAlias": {reflect.TypeOf(q.TagTemplateAlias), constant.MakeInt64(int64(q.TagTemplateAlias))}, + "TagTemplateTypeParameter": {reflect.TypeOf(q.TagTemplateTypeParameter), constant.MakeInt64(int64(q.TagTemplateTypeParameter))}, + "TagTemplateValueParameter": {reflect.TypeOf(q.TagTemplateValueParameter), constant.MakeInt64(int64(q.TagTemplateValueParameter))}, + "TagThrownType": {reflect.TypeOf(q.TagThrownType), constant.MakeInt64(int64(q.TagThrownType))}, + "TagTryDwarfBlock": {reflect.TypeOf(q.TagTryDwarfBlock), constant.MakeInt64(int64(q.TagTryDwarfBlock))}, + "TagTypeUnit": {reflect.TypeOf(q.TagTypeUnit), constant.MakeInt64(int64(q.TagTypeUnit))}, + "TagTypedef": {reflect.TypeOf(q.TagTypedef), constant.MakeInt64(int64(q.TagTypedef))}, + "TagUnionType": {reflect.TypeOf(q.TagUnionType), constant.MakeInt64(int64(q.TagUnionType))}, + "TagUnspecifiedParameters": {reflect.TypeOf(q.TagUnspecifiedParameters), constant.MakeInt64(int64(q.TagUnspecifiedParameters))}, + "TagUnspecifiedType": {reflect.TypeOf(q.TagUnspecifiedType), constant.MakeInt64(int64(q.TagUnspecifiedType))}, + "TagVariable": {reflect.TypeOf(q.TagVariable), constant.MakeInt64(int64(q.TagVariable))}, + "TagVariant": {reflect.TypeOf(q.TagVariant), constant.MakeInt64(int64(q.TagVariant))}, + "TagVariantPart": {reflect.TypeOf(q.TagVariantPart), constant.MakeInt64(int64(q.TagVariantPart))}, + "TagVolatileType": {reflect.TypeOf(q.TagVolatileType), constant.MakeInt64(int64(q.TagVolatileType))}, + "TagWithStmt": {reflect.TypeOf(q.TagWithStmt), constant.MakeInt64(int64(q.TagWithStmt))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/debug/dwarf/go123_export.go b/pkg/debug/dwarf/go123_export.go new file mode 100755 index 00000000..de9b4602 --- /dev/null +++ b/pkg/debug/dwarf/go123_export.go @@ -0,0 +1,294 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package dwarf + +import ( + q "debug/dwarf" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "dwarf", + Path: "debug/dwarf", + Deps: map[string]string{ + "bytes": "bytes", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "path": "path", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{ + "Type": reflect.TypeOf((*q.Type)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "AddrType": reflect.TypeOf((*q.AddrType)(nil)).Elem(), + "ArrayType": reflect.TypeOf((*q.ArrayType)(nil)).Elem(), + "Attr": reflect.TypeOf((*q.Attr)(nil)).Elem(), + "BasicType": reflect.TypeOf((*q.BasicType)(nil)).Elem(), + "BoolType": reflect.TypeOf((*q.BoolType)(nil)).Elem(), + "CharType": reflect.TypeOf((*q.CharType)(nil)).Elem(), + "Class": reflect.TypeOf((*q.Class)(nil)).Elem(), + "CommonType": reflect.TypeOf((*q.CommonType)(nil)).Elem(), + "ComplexType": reflect.TypeOf((*q.ComplexType)(nil)).Elem(), + "Data": reflect.TypeOf((*q.Data)(nil)).Elem(), + "DecodeError": reflect.TypeOf((*q.DecodeError)(nil)).Elem(), + "DotDotDotType": reflect.TypeOf((*q.DotDotDotType)(nil)).Elem(), + "Entry": reflect.TypeOf((*q.Entry)(nil)).Elem(), + "EnumType": reflect.TypeOf((*q.EnumType)(nil)).Elem(), + "EnumValue": reflect.TypeOf((*q.EnumValue)(nil)).Elem(), + "Field": reflect.TypeOf((*q.Field)(nil)).Elem(), + "FloatType": reflect.TypeOf((*q.FloatType)(nil)).Elem(), + "FuncType": reflect.TypeOf((*q.FuncType)(nil)).Elem(), + "IntType": reflect.TypeOf((*q.IntType)(nil)).Elem(), + "LineEntry": reflect.TypeOf((*q.LineEntry)(nil)).Elem(), + "LineFile": reflect.TypeOf((*q.LineFile)(nil)).Elem(), + "LineReader": reflect.TypeOf((*q.LineReader)(nil)).Elem(), + "LineReaderPos": reflect.TypeOf((*q.LineReaderPos)(nil)).Elem(), + "Offset": reflect.TypeOf((*q.Offset)(nil)).Elem(), + "PtrType": reflect.TypeOf((*q.PtrType)(nil)).Elem(), + "QualType": reflect.TypeOf((*q.QualType)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "StructField": reflect.TypeOf((*q.StructField)(nil)).Elem(), + "StructType": reflect.TypeOf((*q.StructType)(nil)).Elem(), + "Tag": reflect.TypeOf((*q.Tag)(nil)).Elem(), + "TypedefType": reflect.TypeOf((*q.TypedefType)(nil)).Elem(), + "UcharType": reflect.TypeOf((*q.UcharType)(nil)).Elem(), + "UintType": reflect.TypeOf((*q.UintType)(nil)).Elem(), + "UnspecifiedType": reflect.TypeOf((*q.UnspecifiedType)(nil)).Elem(), + "UnsupportedType": reflect.TypeOf((*q.UnsupportedType)(nil)).Elem(), + "VoidType": reflect.TypeOf((*q.VoidType)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrUnknownPC": reflect.ValueOf(&q.ErrUnknownPC), + }, + Funcs: map[string]reflect.Value{ + "New": reflect.ValueOf(q.New), + }, + TypedConsts: map[string]igop.TypedConst{ + "AttrAbstractOrigin": {reflect.TypeOf(q.AttrAbstractOrigin), constant.MakeInt64(int64(q.AttrAbstractOrigin))}, + "AttrAccessibility": {reflect.TypeOf(q.AttrAccessibility), constant.MakeInt64(int64(q.AttrAccessibility))}, + "AttrAddrBase": {reflect.TypeOf(q.AttrAddrBase), constant.MakeInt64(int64(q.AttrAddrBase))}, + "AttrAddrClass": {reflect.TypeOf(q.AttrAddrClass), constant.MakeInt64(int64(q.AttrAddrClass))}, + "AttrAlignment": {reflect.TypeOf(q.AttrAlignment), constant.MakeInt64(int64(q.AttrAlignment))}, + "AttrAllocated": {reflect.TypeOf(q.AttrAllocated), constant.MakeInt64(int64(q.AttrAllocated))}, + "AttrArtificial": {reflect.TypeOf(q.AttrArtificial), constant.MakeInt64(int64(q.AttrArtificial))}, + "AttrAssociated": {reflect.TypeOf(q.AttrAssociated), constant.MakeInt64(int64(q.AttrAssociated))}, + "AttrBaseTypes": {reflect.TypeOf(q.AttrBaseTypes), constant.MakeInt64(int64(q.AttrBaseTypes))}, + "AttrBinaryScale": {reflect.TypeOf(q.AttrBinaryScale), constant.MakeInt64(int64(q.AttrBinaryScale))}, + "AttrBitOffset": {reflect.TypeOf(q.AttrBitOffset), constant.MakeInt64(int64(q.AttrBitOffset))}, + "AttrBitSize": {reflect.TypeOf(q.AttrBitSize), constant.MakeInt64(int64(q.AttrBitSize))}, + "AttrByteSize": {reflect.TypeOf(q.AttrByteSize), constant.MakeInt64(int64(q.AttrByteSize))}, + "AttrCallAllCalls": {reflect.TypeOf(q.AttrCallAllCalls), constant.MakeInt64(int64(q.AttrCallAllCalls))}, + "AttrCallAllSourceCalls": {reflect.TypeOf(q.AttrCallAllSourceCalls), constant.MakeInt64(int64(q.AttrCallAllSourceCalls))}, + "AttrCallAllTailCalls": {reflect.TypeOf(q.AttrCallAllTailCalls), constant.MakeInt64(int64(q.AttrCallAllTailCalls))}, + "AttrCallColumn": {reflect.TypeOf(q.AttrCallColumn), constant.MakeInt64(int64(q.AttrCallColumn))}, + "AttrCallDataLocation": {reflect.TypeOf(q.AttrCallDataLocation), constant.MakeInt64(int64(q.AttrCallDataLocation))}, + "AttrCallDataValue": {reflect.TypeOf(q.AttrCallDataValue), constant.MakeInt64(int64(q.AttrCallDataValue))}, + "AttrCallFile": {reflect.TypeOf(q.AttrCallFile), constant.MakeInt64(int64(q.AttrCallFile))}, + "AttrCallLine": {reflect.TypeOf(q.AttrCallLine), constant.MakeInt64(int64(q.AttrCallLine))}, + "AttrCallOrigin": {reflect.TypeOf(q.AttrCallOrigin), constant.MakeInt64(int64(q.AttrCallOrigin))}, + "AttrCallPC": {reflect.TypeOf(q.AttrCallPC), constant.MakeInt64(int64(q.AttrCallPC))}, + "AttrCallParameter": {reflect.TypeOf(q.AttrCallParameter), constant.MakeInt64(int64(q.AttrCallParameter))}, + "AttrCallReturnPC": {reflect.TypeOf(q.AttrCallReturnPC), constant.MakeInt64(int64(q.AttrCallReturnPC))}, + "AttrCallTailCall": {reflect.TypeOf(q.AttrCallTailCall), constant.MakeInt64(int64(q.AttrCallTailCall))}, + "AttrCallTarget": {reflect.TypeOf(q.AttrCallTarget), constant.MakeInt64(int64(q.AttrCallTarget))}, + "AttrCallTargetClobbered": {reflect.TypeOf(q.AttrCallTargetClobbered), constant.MakeInt64(int64(q.AttrCallTargetClobbered))}, + "AttrCallValue": {reflect.TypeOf(q.AttrCallValue), constant.MakeInt64(int64(q.AttrCallValue))}, + "AttrCalling": {reflect.TypeOf(q.AttrCalling), constant.MakeInt64(int64(q.AttrCalling))}, + "AttrCommonRef": {reflect.TypeOf(q.AttrCommonRef), constant.MakeInt64(int64(q.AttrCommonRef))}, + "AttrCompDir": {reflect.TypeOf(q.AttrCompDir), constant.MakeInt64(int64(q.AttrCompDir))}, + "AttrConstExpr": {reflect.TypeOf(q.AttrConstExpr), constant.MakeInt64(int64(q.AttrConstExpr))}, + "AttrConstValue": {reflect.TypeOf(q.AttrConstValue), constant.MakeInt64(int64(q.AttrConstValue))}, + "AttrContainingType": {reflect.TypeOf(q.AttrContainingType), constant.MakeInt64(int64(q.AttrContainingType))}, + "AttrCount": {reflect.TypeOf(q.AttrCount), constant.MakeInt64(int64(q.AttrCount))}, + "AttrDataBitOffset": {reflect.TypeOf(q.AttrDataBitOffset), constant.MakeInt64(int64(q.AttrDataBitOffset))}, + "AttrDataLocation": {reflect.TypeOf(q.AttrDataLocation), constant.MakeInt64(int64(q.AttrDataLocation))}, + "AttrDataMemberLoc": {reflect.TypeOf(q.AttrDataMemberLoc), constant.MakeInt64(int64(q.AttrDataMemberLoc))}, + "AttrDecimalScale": {reflect.TypeOf(q.AttrDecimalScale), constant.MakeInt64(int64(q.AttrDecimalScale))}, + "AttrDecimalSign": {reflect.TypeOf(q.AttrDecimalSign), constant.MakeInt64(int64(q.AttrDecimalSign))}, + "AttrDeclColumn": {reflect.TypeOf(q.AttrDeclColumn), constant.MakeInt64(int64(q.AttrDeclColumn))}, + "AttrDeclFile": {reflect.TypeOf(q.AttrDeclFile), constant.MakeInt64(int64(q.AttrDeclFile))}, + "AttrDeclLine": {reflect.TypeOf(q.AttrDeclLine), constant.MakeInt64(int64(q.AttrDeclLine))}, + "AttrDeclaration": {reflect.TypeOf(q.AttrDeclaration), constant.MakeInt64(int64(q.AttrDeclaration))}, + "AttrDefaultValue": {reflect.TypeOf(q.AttrDefaultValue), constant.MakeInt64(int64(q.AttrDefaultValue))}, + "AttrDefaulted": {reflect.TypeOf(q.AttrDefaulted), constant.MakeInt64(int64(q.AttrDefaulted))}, + "AttrDeleted": {reflect.TypeOf(q.AttrDeleted), constant.MakeInt64(int64(q.AttrDeleted))}, + "AttrDescription": {reflect.TypeOf(q.AttrDescription), constant.MakeInt64(int64(q.AttrDescription))}, + "AttrDigitCount": {reflect.TypeOf(q.AttrDigitCount), constant.MakeInt64(int64(q.AttrDigitCount))}, + "AttrDiscr": {reflect.TypeOf(q.AttrDiscr), constant.MakeInt64(int64(q.AttrDiscr))}, + "AttrDiscrList": {reflect.TypeOf(q.AttrDiscrList), constant.MakeInt64(int64(q.AttrDiscrList))}, + "AttrDiscrValue": {reflect.TypeOf(q.AttrDiscrValue), constant.MakeInt64(int64(q.AttrDiscrValue))}, + "AttrDwoName": {reflect.TypeOf(q.AttrDwoName), constant.MakeInt64(int64(q.AttrDwoName))}, + "AttrElemental": {reflect.TypeOf(q.AttrElemental), constant.MakeInt64(int64(q.AttrElemental))}, + "AttrEncoding": {reflect.TypeOf(q.AttrEncoding), constant.MakeInt64(int64(q.AttrEncoding))}, + "AttrEndianity": {reflect.TypeOf(q.AttrEndianity), constant.MakeInt64(int64(q.AttrEndianity))}, + "AttrEntrypc": {reflect.TypeOf(q.AttrEntrypc), constant.MakeInt64(int64(q.AttrEntrypc))}, + "AttrEnumClass": {reflect.TypeOf(q.AttrEnumClass), constant.MakeInt64(int64(q.AttrEnumClass))}, + "AttrExplicit": {reflect.TypeOf(q.AttrExplicit), constant.MakeInt64(int64(q.AttrExplicit))}, + "AttrExportSymbols": {reflect.TypeOf(q.AttrExportSymbols), constant.MakeInt64(int64(q.AttrExportSymbols))}, + "AttrExtension": {reflect.TypeOf(q.AttrExtension), constant.MakeInt64(int64(q.AttrExtension))}, + "AttrExternal": {reflect.TypeOf(q.AttrExternal), constant.MakeInt64(int64(q.AttrExternal))}, + "AttrFrameBase": {reflect.TypeOf(q.AttrFrameBase), constant.MakeInt64(int64(q.AttrFrameBase))}, + "AttrFriend": {reflect.TypeOf(q.AttrFriend), constant.MakeInt64(int64(q.AttrFriend))}, + "AttrHighpc": {reflect.TypeOf(q.AttrHighpc), constant.MakeInt64(int64(q.AttrHighpc))}, + "AttrIdentifierCase": {reflect.TypeOf(q.AttrIdentifierCase), constant.MakeInt64(int64(q.AttrIdentifierCase))}, + "AttrImport": {reflect.TypeOf(q.AttrImport), constant.MakeInt64(int64(q.AttrImport))}, + "AttrInline": {reflect.TypeOf(q.AttrInline), constant.MakeInt64(int64(q.AttrInline))}, + "AttrIsOptional": {reflect.TypeOf(q.AttrIsOptional), constant.MakeInt64(int64(q.AttrIsOptional))}, + "AttrLanguage": {reflect.TypeOf(q.AttrLanguage), constant.MakeInt64(int64(q.AttrLanguage))}, + "AttrLinkageName": {reflect.TypeOf(q.AttrLinkageName), constant.MakeInt64(int64(q.AttrLinkageName))}, + "AttrLocation": {reflect.TypeOf(q.AttrLocation), constant.MakeInt64(int64(q.AttrLocation))}, + "AttrLoclistsBase": {reflect.TypeOf(q.AttrLoclistsBase), constant.MakeInt64(int64(q.AttrLoclistsBase))}, + "AttrLowerBound": {reflect.TypeOf(q.AttrLowerBound), constant.MakeInt64(int64(q.AttrLowerBound))}, + "AttrLowpc": {reflect.TypeOf(q.AttrLowpc), constant.MakeInt64(int64(q.AttrLowpc))}, + "AttrMacroInfo": {reflect.TypeOf(q.AttrMacroInfo), constant.MakeInt64(int64(q.AttrMacroInfo))}, + "AttrMacros": {reflect.TypeOf(q.AttrMacros), constant.MakeInt64(int64(q.AttrMacros))}, + "AttrMainSubprogram": {reflect.TypeOf(q.AttrMainSubprogram), constant.MakeInt64(int64(q.AttrMainSubprogram))}, + "AttrMutable": {reflect.TypeOf(q.AttrMutable), constant.MakeInt64(int64(q.AttrMutable))}, + "AttrName": {reflect.TypeOf(q.AttrName), constant.MakeInt64(int64(q.AttrName))}, + "AttrNamelistItem": {reflect.TypeOf(q.AttrNamelistItem), constant.MakeInt64(int64(q.AttrNamelistItem))}, + "AttrNoreturn": {reflect.TypeOf(q.AttrNoreturn), constant.MakeInt64(int64(q.AttrNoreturn))}, + "AttrObjectPointer": {reflect.TypeOf(q.AttrObjectPointer), constant.MakeInt64(int64(q.AttrObjectPointer))}, + "AttrOrdering": {reflect.TypeOf(q.AttrOrdering), constant.MakeInt64(int64(q.AttrOrdering))}, + "AttrPictureString": {reflect.TypeOf(q.AttrPictureString), constant.MakeInt64(int64(q.AttrPictureString))}, + "AttrPriority": {reflect.TypeOf(q.AttrPriority), constant.MakeInt64(int64(q.AttrPriority))}, + "AttrProducer": {reflect.TypeOf(q.AttrProducer), constant.MakeInt64(int64(q.AttrProducer))}, + "AttrPrototyped": {reflect.TypeOf(q.AttrPrototyped), constant.MakeInt64(int64(q.AttrPrototyped))}, + "AttrPure": {reflect.TypeOf(q.AttrPure), constant.MakeInt64(int64(q.AttrPure))}, + "AttrRanges": {reflect.TypeOf(q.AttrRanges), constant.MakeInt64(int64(q.AttrRanges))}, + "AttrRank": {reflect.TypeOf(q.AttrRank), constant.MakeInt64(int64(q.AttrRank))}, + "AttrRecursive": {reflect.TypeOf(q.AttrRecursive), constant.MakeInt64(int64(q.AttrRecursive))}, + "AttrReference": {reflect.TypeOf(q.AttrReference), constant.MakeInt64(int64(q.AttrReference))}, + "AttrReturnAddr": {reflect.TypeOf(q.AttrReturnAddr), constant.MakeInt64(int64(q.AttrReturnAddr))}, + "AttrRnglistsBase": {reflect.TypeOf(q.AttrRnglistsBase), constant.MakeInt64(int64(q.AttrRnglistsBase))}, + "AttrRvalueReference": {reflect.TypeOf(q.AttrRvalueReference), constant.MakeInt64(int64(q.AttrRvalueReference))}, + "AttrSegment": {reflect.TypeOf(q.AttrSegment), constant.MakeInt64(int64(q.AttrSegment))}, + "AttrSibling": {reflect.TypeOf(q.AttrSibling), constant.MakeInt64(int64(q.AttrSibling))}, + "AttrSignature": {reflect.TypeOf(q.AttrSignature), constant.MakeInt64(int64(q.AttrSignature))}, + "AttrSmall": {reflect.TypeOf(q.AttrSmall), constant.MakeInt64(int64(q.AttrSmall))}, + "AttrSpecification": {reflect.TypeOf(q.AttrSpecification), constant.MakeInt64(int64(q.AttrSpecification))}, + "AttrStartScope": {reflect.TypeOf(q.AttrStartScope), constant.MakeInt64(int64(q.AttrStartScope))}, + "AttrStaticLink": {reflect.TypeOf(q.AttrStaticLink), constant.MakeInt64(int64(q.AttrStaticLink))}, + "AttrStmtList": {reflect.TypeOf(q.AttrStmtList), constant.MakeInt64(int64(q.AttrStmtList))}, + "AttrStrOffsetsBase": {reflect.TypeOf(q.AttrStrOffsetsBase), constant.MakeInt64(int64(q.AttrStrOffsetsBase))}, + "AttrStride": {reflect.TypeOf(q.AttrStride), constant.MakeInt64(int64(q.AttrStride))}, + "AttrStrideSize": {reflect.TypeOf(q.AttrStrideSize), constant.MakeInt64(int64(q.AttrStrideSize))}, + "AttrStringLength": {reflect.TypeOf(q.AttrStringLength), constant.MakeInt64(int64(q.AttrStringLength))}, + "AttrStringLengthBitSize": {reflect.TypeOf(q.AttrStringLengthBitSize), constant.MakeInt64(int64(q.AttrStringLengthBitSize))}, + "AttrStringLengthByteSize": {reflect.TypeOf(q.AttrStringLengthByteSize), constant.MakeInt64(int64(q.AttrStringLengthByteSize))}, + "AttrThreadsScaled": {reflect.TypeOf(q.AttrThreadsScaled), constant.MakeInt64(int64(q.AttrThreadsScaled))}, + "AttrTrampoline": {reflect.TypeOf(q.AttrTrampoline), constant.MakeInt64(int64(q.AttrTrampoline))}, + "AttrType": {reflect.TypeOf(q.AttrType), constant.MakeInt64(int64(q.AttrType))}, + "AttrUpperBound": {reflect.TypeOf(q.AttrUpperBound), constant.MakeInt64(int64(q.AttrUpperBound))}, + "AttrUseLocation": {reflect.TypeOf(q.AttrUseLocation), constant.MakeInt64(int64(q.AttrUseLocation))}, + "AttrUseUTF8": {reflect.TypeOf(q.AttrUseUTF8), constant.MakeInt64(int64(q.AttrUseUTF8))}, + "AttrVarParam": {reflect.TypeOf(q.AttrVarParam), constant.MakeInt64(int64(q.AttrVarParam))}, + "AttrVirtuality": {reflect.TypeOf(q.AttrVirtuality), constant.MakeInt64(int64(q.AttrVirtuality))}, + "AttrVisibility": {reflect.TypeOf(q.AttrVisibility), constant.MakeInt64(int64(q.AttrVisibility))}, + "AttrVtableElemLoc": {reflect.TypeOf(q.AttrVtableElemLoc), constant.MakeInt64(int64(q.AttrVtableElemLoc))}, + "ClassAddrPtr": {reflect.TypeOf(q.ClassAddrPtr), constant.MakeInt64(int64(q.ClassAddrPtr))}, + "ClassAddress": {reflect.TypeOf(q.ClassAddress), constant.MakeInt64(int64(q.ClassAddress))}, + "ClassBlock": {reflect.TypeOf(q.ClassBlock), constant.MakeInt64(int64(q.ClassBlock))}, + "ClassConstant": {reflect.TypeOf(q.ClassConstant), constant.MakeInt64(int64(q.ClassConstant))}, + "ClassExprLoc": {reflect.TypeOf(q.ClassExprLoc), constant.MakeInt64(int64(q.ClassExprLoc))}, + "ClassFlag": {reflect.TypeOf(q.ClassFlag), constant.MakeInt64(int64(q.ClassFlag))}, + "ClassLinePtr": {reflect.TypeOf(q.ClassLinePtr), constant.MakeInt64(int64(q.ClassLinePtr))}, + "ClassLocList": {reflect.TypeOf(q.ClassLocList), constant.MakeInt64(int64(q.ClassLocList))}, + "ClassLocListPtr": {reflect.TypeOf(q.ClassLocListPtr), constant.MakeInt64(int64(q.ClassLocListPtr))}, + "ClassMacPtr": {reflect.TypeOf(q.ClassMacPtr), constant.MakeInt64(int64(q.ClassMacPtr))}, + "ClassRangeListPtr": {reflect.TypeOf(q.ClassRangeListPtr), constant.MakeInt64(int64(q.ClassRangeListPtr))}, + "ClassReference": {reflect.TypeOf(q.ClassReference), constant.MakeInt64(int64(q.ClassReference))}, + "ClassReferenceAlt": {reflect.TypeOf(q.ClassReferenceAlt), constant.MakeInt64(int64(q.ClassReferenceAlt))}, + "ClassReferenceSig": {reflect.TypeOf(q.ClassReferenceSig), constant.MakeInt64(int64(q.ClassReferenceSig))}, + "ClassRngList": {reflect.TypeOf(q.ClassRngList), constant.MakeInt64(int64(q.ClassRngList))}, + "ClassRngListsPtr": {reflect.TypeOf(q.ClassRngListsPtr), constant.MakeInt64(int64(q.ClassRngListsPtr))}, + "ClassStrOffsetsPtr": {reflect.TypeOf(q.ClassStrOffsetsPtr), constant.MakeInt64(int64(q.ClassStrOffsetsPtr))}, + "ClassString": {reflect.TypeOf(q.ClassString), constant.MakeInt64(int64(q.ClassString))}, + "ClassStringAlt": {reflect.TypeOf(q.ClassStringAlt), constant.MakeInt64(int64(q.ClassStringAlt))}, + "ClassUnknown": {reflect.TypeOf(q.ClassUnknown), constant.MakeInt64(int64(q.ClassUnknown))}, + "TagAccessDeclaration": {reflect.TypeOf(q.TagAccessDeclaration), constant.MakeInt64(int64(q.TagAccessDeclaration))}, + "TagArrayType": {reflect.TypeOf(q.TagArrayType), constant.MakeInt64(int64(q.TagArrayType))}, + "TagAtomicType": {reflect.TypeOf(q.TagAtomicType), constant.MakeInt64(int64(q.TagAtomicType))}, + "TagBaseType": {reflect.TypeOf(q.TagBaseType), constant.MakeInt64(int64(q.TagBaseType))}, + "TagCallSite": {reflect.TypeOf(q.TagCallSite), constant.MakeInt64(int64(q.TagCallSite))}, + "TagCallSiteParameter": {reflect.TypeOf(q.TagCallSiteParameter), constant.MakeInt64(int64(q.TagCallSiteParameter))}, + "TagCatchDwarfBlock": {reflect.TypeOf(q.TagCatchDwarfBlock), constant.MakeInt64(int64(q.TagCatchDwarfBlock))}, + "TagClassType": {reflect.TypeOf(q.TagClassType), constant.MakeInt64(int64(q.TagClassType))}, + "TagCoarrayType": {reflect.TypeOf(q.TagCoarrayType), constant.MakeInt64(int64(q.TagCoarrayType))}, + "TagCommonDwarfBlock": {reflect.TypeOf(q.TagCommonDwarfBlock), constant.MakeInt64(int64(q.TagCommonDwarfBlock))}, + "TagCommonInclusion": {reflect.TypeOf(q.TagCommonInclusion), constant.MakeInt64(int64(q.TagCommonInclusion))}, + "TagCompileUnit": {reflect.TypeOf(q.TagCompileUnit), constant.MakeInt64(int64(q.TagCompileUnit))}, + "TagCondition": {reflect.TypeOf(q.TagCondition), constant.MakeInt64(int64(q.TagCondition))}, + "TagConstType": {reflect.TypeOf(q.TagConstType), constant.MakeInt64(int64(q.TagConstType))}, + "TagConstant": {reflect.TypeOf(q.TagConstant), constant.MakeInt64(int64(q.TagConstant))}, + "TagDwarfProcedure": {reflect.TypeOf(q.TagDwarfProcedure), constant.MakeInt64(int64(q.TagDwarfProcedure))}, + "TagDynamicType": {reflect.TypeOf(q.TagDynamicType), constant.MakeInt64(int64(q.TagDynamicType))}, + "TagEntryPoint": {reflect.TypeOf(q.TagEntryPoint), constant.MakeInt64(int64(q.TagEntryPoint))}, + "TagEnumerationType": {reflect.TypeOf(q.TagEnumerationType), constant.MakeInt64(int64(q.TagEnumerationType))}, + "TagEnumerator": {reflect.TypeOf(q.TagEnumerator), constant.MakeInt64(int64(q.TagEnumerator))}, + "TagFileType": {reflect.TypeOf(q.TagFileType), constant.MakeInt64(int64(q.TagFileType))}, + "TagFormalParameter": {reflect.TypeOf(q.TagFormalParameter), constant.MakeInt64(int64(q.TagFormalParameter))}, + "TagFriend": {reflect.TypeOf(q.TagFriend), constant.MakeInt64(int64(q.TagFriend))}, + "TagGenericSubrange": {reflect.TypeOf(q.TagGenericSubrange), constant.MakeInt64(int64(q.TagGenericSubrange))}, + "TagImmutableType": {reflect.TypeOf(q.TagImmutableType), constant.MakeInt64(int64(q.TagImmutableType))}, + "TagImportedDeclaration": {reflect.TypeOf(q.TagImportedDeclaration), constant.MakeInt64(int64(q.TagImportedDeclaration))}, + "TagImportedModule": {reflect.TypeOf(q.TagImportedModule), constant.MakeInt64(int64(q.TagImportedModule))}, + "TagImportedUnit": {reflect.TypeOf(q.TagImportedUnit), constant.MakeInt64(int64(q.TagImportedUnit))}, + "TagInheritance": {reflect.TypeOf(q.TagInheritance), constant.MakeInt64(int64(q.TagInheritance))}, + "TagInlinedSubroutine": {reflect.TypeOf(q.TagInlinedSubroutine), constant.MakeInt64(int64(q.TagInlinedSubroutine))}, + "TagInterfaceType": {reflect.TypeOf(q.TagInterfaceType), constant.MakeInt64(int64(q.TagInterfaceType))}, + "TagLabel": {reflect.TypeOf(q.TagLabel), constant.MakeInt64(int64(q.TagLabel))}, + "TagLexDwarfBlock": {reflect.TypeOf(q.TagLexDwarfBlock), constant.MakeInt64(int64(q.TagLexDwarfBlock))}, + "TagMember": {reflect.TypeOf(q.TagMember), constant.MakeInt64(int64(q.TagMember))}, + "TagModule": {reflect.TypeOf(q.TagModule), constant.MakeInt64(int64(q.TagModule))}, + "TagMutableType": {reflect.TypeOf(q.TagMutableType), constant.MakeInt64(int64(q.TagMutableType))}, + "TagNamelist": {reflect.TypeOf(q.TagNamelist), constant.MakeInt64(int64(q.TagNamelist))}, + "TagNamelistItem": {reflect.TypeOf(q.TagNamelistItem), constant.MakeInt64(int64(q.TagNamelistItem))}, + "TagNamespace": {reflect.TypeOf(q.TagNamespace), constant.MakeInt64(int64(q.TagNamespace))}, + "TagPackedType": {reflect.TypeOf(q.TagPackedType), constant.MakeInt64(int64(q.TagPackedType))}, + "TagPartialUnit": {reflect.TypeOf(q.TagPartialUnit), constant.MakeInt64(int64(q.TagPartialUnit))}, + "TagPointerType": {reflect.TypeOf(q.TagPointerType), constant.MakeInt64(int64(q.TagPointerType))}, + "TagPtrToMemberType": {reflect.TypeOf(q.TagPtrToMemberType), constant.MakeInt64(int64(q.TagPtrToMemberType))}, + "TagReferenceType": {reflect.TypeOf(q.TagReferenceType), constant.MakeInt64(int64(q.TagReferenceType))}, + "TagRestrictType": {reflect.TypeOf(q.TagRestrictType), constant.MakeInt64(int64(q.TagRestrictType))}, + "TagRvalueReferenceType": {reflect.TypeOf(q.TagRvalueReferenceType), constant.MakeInt64(int64(q.TagRvalueReferenceType))}, + "TagSetType": {reflect.TypeOf(q.TagSetType), constant.MakeInt64(int64(q.TagSetType))}, + "TagSharedType": {reflect.TypeOf(q.TagSharedType), constant.MakeInt64(int64(q.TagSharedType))}, + "TagSkeletonUnit": {reflect.TypeOf(q.TagSkeletonUnit), constant.MakeInt64(int64(q.TagSkeletonUnit))}, + "TagStringType": {reflect.TypeOf(q.TagStringType), constant.MakeInt64(int64(q.TagStringType))}, + "TagStructType": {reflect.TypeOf(q.TagStructType), constant.MakeInt64(int64(q.TagStructType))}, + "TagSubprogram": {reflect.TypeOf(q.TagSubprogram), constant.MakeInt64(int64(q.TagSubprogram))}, + "TagSubrangeType": {reflect.TypeOf(q.TagSubrangeType), constant.MakeInt64(int64(q.TagSubrangeType))}, + "TagSubroutineType": {reflect.TypeOf(q.TagSubroutineType), constant.MakeInt64(int64(q.TagSubroutineType))}, + "TagTemplateAlias": {reflect.TypeOf(q.TagTemplateAlias), constant.MakeInt64(int64(q.TagTemplateAlias))}, + "TagTemplateTypeParameter": {reflect.TypeOf(q.TagTemplateTypeParameter), constant.MakeInt64(int64(q.TagTemplateTypeParameter))}, + "TagTemplateValueParameter": {reflect.TypeOf(q.TagTemplateValueParameter), constant.MakeInt64(int64(q.TagTemplateValueParameter))}, + "TagThrownType": {reflect.TypeOf(q.TagThrownType), constant.MakeInt64(int64(q.TagThrownType))}, + "TagTryDwarfBlock": {reflect.TypeOf(q.TagTryDwarfBlock), constant.MakeInt64(int64(q.TagTryDwarfBlock))}, + "TagTypeUnit": {reflect.TypeOf(q.TagTypeUnit), constant.MakeInt64(int64(q.TagTypeUnit))}, + "TagTypedef": {reflect.TypeOf(q.TagTypedef), constant.MakeInt64(int64(q.TagTypedef))}, + "TagUnionType": {reflect.TypeOf(q.TagUnionType), constant.MakeInt64(int64(q.TagUnionType))}, + "TagUnspecifiedParameters": {reflect.TypeOf(q.TagUnspecifiedParameters), constant.MakeInt64(int64(q.TagUnspecifiedParameters))}, + "TagUnspecifiedType": {reflect.TypeOf(q.TagUnspecifiedType), constant.MakeInt64(int64(q.TagUnspecifiedType))}, + "TagVariable": {reflect.TypeOf(q.TagVariable), constant.MakeInt64(int64(q.TagVariable))}, + "TagVariant": {reflect.TypeOf(q.TagVariant), constant.MakeInt64(int64(q.TagVariant))}, + "TagVariantPart": {reflect.TypeOf(q.TagVariantPart), constant.MakeInt64(int64(q.TagVariantPart))}, + "TagVolatileType": {reflect.TypeOf(q.TagVolatileType), constant.MakeInt64(int64(q.TagVolatileType))}, + "TagWithStmt": {reflect.TypeOf(q.TagWithStmt), constant.MakeInt64(int64(q.TagWithStmt))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/debug/elf/go121_export.go b/pkg/debug/elf/go121_export.go index b26eadba..a5fb4659 100755 --- a/pkg/debug/elf/go121_export.go +++ b/pkg/debug/elf/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package elf diff --git a/pkg/debug/elf/go122_export.go b/pkg/debug/elf/go122_export.go new file mode 100755 index 00000000..1a9f3436 --- /dev/null +++ b/pkg/debug/elf/go122_export.go @@ -0,0 +1,1582 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package elf + +import ( + q "debug/elf" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "elf", + Path: "debug/elf", + Deps: map[string]string{ + "bytes": "bytes", + "compress/zlib": "zlib", + "debug/dwarf": "dwarf", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "internal/saferio": "saferio", + "internal/zstd": "zstd", + "io": "io", + "os": "os", + "strconv": "strconv", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Chdr32": reflect.TypeOf((*q.Chdr32)(nil)).Elem(), + "Chdr64": reflect.TypeOf((*q.Chdr64)(nil)).Elem(), + "Class": reflect.TypeOf((*q.Class)(nil)).Elem(), + "CompressionType": reflect.TypeOf((*q.CompressionType)(nil)).Elem(), + "Data": reflect.TypeOf((*q.Data)(nil)).Elem(), + "Dyn32": reflect.TypeOf((*q.Dyn32)(nil)).Elem(), + "Dyn64": reflect.TypeOf((*q.Dyn64)(nil)).Elem(), + "DynFlag": reflect.TypeOf((*q.DynFlag)(nil)).Elem(), + "DynFlag1": reflect.TypeOf((*q.DynFlag1)(nil)).Elem(), + "DynTag": reflect.TypeOf((*q.DynTag)(nil)).Elem(), + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "FileHeader": reflect.TypeOf((*q.FileHeader)(nil)).Elem(), + "FormatError": reflect.TypeOf((*q.FormatError)(nil)).Elem(), + "Header32": reflect.TypeOf((*q.Header32)(nil)).Elem(), + "Header64": reflect.TypeOf((*q.Header64)(nil)).Elem(), + "ImportedSymbol": reflect.TypeOf((*q.ImportedSymbol)(nil)).Elem(), + "Machine": reflect.TypeOf((*q.Machine)(nil)).Elem(), + "NType": reflect.TypeOf((*q.NType)(nil)).Elem(), + "OSABI": reflect.TypeOf((*q.OSABI)(nil)).Elem(), + "Prog": reflect.TypeOf((*q.Prog)(nil)).Elem(), + "Prog32": reflect.TypeOf((*q.Prog32)(nil)).Elem(), + "Prog64": reflect.TypeOf((*q.Prog64)(nil)).Elem(), + "ProgFlag": reflect.TypeOf((*q.ProgFlag)(nil)).Elem(), + "ProgHeader": reflect.TypeOf((*q.ProgHeader)(nil)).Elem(), + "ProgType": reflect.TypeOf((*q.ProgType)(nil)).Elem(), + "R_386": reflect.TypeOf((*q.R_386)(nil)).Elem(), + "R_390": reflect.TypeOf((*q.R_390)(nil)).Elem(), + "R_AARCH64": reflect.TypeOf((*q.R_AARCH64)(nil)).Elem(), + "R_ALPHA": reflect.TypeOf((*q.R_ALPHA)(nil)).Elem(), + "R_ARM": reflect.TypeOf((*q.R_ARM)(nil)).Elem(), + "R_LARCH": reflect.TypeOf((*q.R_LARCH)(nil)).Elem(), + "R_MIPS": reflect.TypeOf((*q.R_MIPS)(nil)).Elem(), + "R_PPC": reflect.TypeOf((*q.R_PPC)(nil)).Elem(), + "R_PPC64": reflect.TypeOf((*q.R_PPC64)(nil)).Elem(), + "R_RISCV": reflect.TypeOf((*q.R_RISCV)(nil)).Elem(), + "R_SPARC": reflect.TypeOf((*q.R_SPARC)(nil)).Elem(), + "R_X86_64": reflect.TypeOf((*q.R_X86_64)(nil)).Elem(), + "Rel32": reflect.TypeOf((*q.Rel32)(nil)).Elem(), + "Rel64": reflect.TypeOf((*q.Rel64)(nil)).Elem(), + "Rela32": reflect.TypeOf((*q.Rela32)(nil)).Elem(), + "Rela64": reflect.TypeOf((*q.Rela64)(nil)).Elem(), + "Section": reflect.TypeOf((*q.Section)(nil)).Elem(), + "Section32": reflect.TypeOf((*q.Section32)(nil)).Elem(), + "Section64": reflect.TypeOf((*q.Section64)(nil)).Elem(), + "SectionFlag": reflect.TypeOf((*q.SectionFlag)(nil)).Elem(), + "SectionHeader": reflect.TypeOf((*q.SectionHeader)(nil)).Elem(), + "SectionIndex": reflect.TypeOf((*q.SectionIndex)(nil)).Elem(), + "SectionType": reflect.TypeOf((*q.SectionType)(nil)).Elem(), + "Sym32": reflect.TypeOf((*q.Sym32)(nil)).Elem(), + "Sym64": reflect.TypeOf((*q.Sym64)(nil)).Elem(), + "SymBind": reflect.TypeOf((*q.SymBind)(nil)).Elem(), + "SymType": reflect.TypeOf((*q.SymType)(nil)).Elem(), + "SymVis": reflect.TypeOf((*q.SymVis)(nil)).Elem(), + "Symbol": reflect.TypeOf((*q.Symbol)(nil)).Elem(), + "Type": reflect.TypeOf((*q.Type)(nil)).Elem(), + "Version": reflect.TypeOf((*q.Version)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrNoSymbols": reflect.ValueOf(&q.ErrNoSymbols), + }, + Funcs: map[string]reflect.Value{ + "NewFile": reflect.ValueOf(q.NewFile), + "Open": reflect.ValueOf(q.Open), + "R_INFO": reflect.ValueOf(q.R_INFO), + "R_INFO32": reflect.ValueOf(q.R_INFO32), + "R_SYM32": reflect.ValueOf(q.R_SYM32), + "R_SYM64": reflect.ValueOf(q.R_SYM64), + "R_TYPE32": reflect.ValueOf(q.R_TYPE32), + "R_TYPE64": reflect.ValueOf(q.R_TYPE64), + "ST_BIND": reflect.ValueOf(q.ST_BIND), + "ST_INFO": reflect.ValueOf(q.ST_INFO), + "ST_TYPE": reflect.ValueOf(q.ST_TYPE), + "ST_VISIBILITY": reflect.ValueOf(q.ST_VISIBILITY), + }, + TypedConsts: map[string]igop.TypedConst{ + "COMPRESS_HIOS": {reflect.TypeOf(q.COMPRESS_HIOS), constant.MakeInt64(int64(q.COMPRESS_HIOS))}, + "COMPRESS_HIPROC": {reflect.TypeOf(q.COMPRESS_HIPROC), constant.MakeInt64(int64(q.COMPRESS_HIPROC))}, + "COMPRESS_LOOS": {reflect.TypeOf(q.COMPRESS_LOOS), constant.MakeInt64(int64(q.COMPRESS_LOOS))}, + "COMPRESS_LOPROC": {reflect.TypeOf(q.COMPRESS_LOPROC), constant.MakeInt64(int64(q.COMPRESS_LOPROC))}, + "COMPRESS_ZLIB": {reflect.TypeOf(q.COMPRESS_ZLIB), constant.MakeInt64(int64(q.COMPRESS_ZLIB))}, + "COMPRESS_ZSTD": {reflect.TypeOf(q.COMPRESS_ZSTD), constant.MakeInt64(int64(q.COMPRESS_ZSTD))}, + "DF_1_CONFALT": {reflect.TypeOf(q.DF_1_CONFALT), constant.MakeInt64(int64(q.DF_1_CONFALT))}, + "DF_1_DIRECT": {reflect.TypeOf(q.DF_1_DIRECT), constant.MakeInt64(int64(q.DF_1_DIRECT))}, + "DF_1_DISPRELDNE": {reflect.TypeOf(q.DF_1_DISPRELDNE), constant.MakeInt64(int64(q.DF_1_DISPRELDNE))}, + "DF_1_DISPRELPND": {reflect.TypeOf(q.DF_1_DISPRELPND), constant.MakeInt64(int64(q.DF_1_DISPRELPND))}, + "DF_1_EDITED": {reflect.TypeOf(q.DF_1_EDITED), constant.MakeInt64(int64(q.DF_1_EDITED))}, + "DF_1_ENDFILTEE": {reflect.TypeOf(q.DF_1_ENDFILTEE), constant.MakeInt64(int64(q.DF_1_ENDFILTEE))}, + "DF_1_GLOBAL": {reflect.TypeOf(q.DF_1_GLOBAL), constant.MakeInt64(int64(q.DF_1_GLOBAL))}, + "DF_1_GLOBAUDIT": {reflect.TypeOf(q.DF_1_GLOBAUDIT), constant.MakeInt64(int64(q.DF_1_GLOBAUDIT))}, + "DF_1_GROUP": {reflect.TypeOf(q.DF_1_GROUP), constant.MakeInt64(int64(q.DF_1_GROUP))}, + "DF_1_IGNMULDEF": {reflect.TypeOf(q.DF_1_IGNMULDEF), constant.MakeInt64(int64(q.DF_1_IGNMULDEF))}, + "DF_1_INITFIRST": {reflect.TypeOf(q.DF_1_INITFIRST), constant.MakeInt64(int64(q.DF_1_INITFIRST))}, + "DF_1_INTERPOSE": {reflect.TypeOf(q.DF_1_INTERPOSE), constant.MakeInt64(int64(q.DF_1_INTERPOSE))}, + "DF_1_KMOD": {reflect.TypeOf(q.DF_1_KMOD), constant.MakeInt64(int64(q.DF_1_KMOD))}, + "DF_1_LOADFLTR": {reflect.TypeOf(q.DF_1_LOADFLTR), constant.MakeInt64(int64(q.DF_1_LOADFLTR))}, + "DF_1_NOCOMMON": {reflect.TypeOf(q.DF_1_NOCOMMON), constant.MakeInt64(int64(q.DF_1_NOCOMMON))}, + "DF_1_NODEFLIB": {reflect.TypeOf(q.DF_1_NODEFLIB), constant.MakeInt64(int64(q.DF_1_NODEFLIB))}, + "DF_1_NODELETE": {reflect.TypeOf(q.DF_1_NODELETE), constant.MakeInt64(int64(q.DF_1_NODELETE))}, + "DF_1_NODIRECT": {reflect.TypeOf(q.DF_1_NODIRECT), constant.MakeInt64(int64(q.DF_1_NODIRECT))}, + "DF_1_NODUMP": {reflect.TypeOf(q.DF_1_NODUMP), constant.MakeInt64(int64(q.DF_1_NODUMP))}, + "DF_1_NOHDR": {reflect.TypeOf(q.DF_1_NOHDR), constant.MakeInt64(int64(q.DF_1_NOHDR))}, + "DF_1_NOKSYMS": {reflect.TypeOf(q.DF_1_NOKSYMS), constant.MakeInt64(int64(q.DF_1_NOKSYMS))}, + "DF_1_NOOPEN": {reflect.TypeOf(q.DF_1_NOOPEN), constant.MakeInt64(int64(q.DF_1_NOOPEN))}, + "DF_1_NORELOC": {reflect.TypeOf(q.DF_1_NORELOC), constant.MakeInt64(int64(q.DF_1_NORELOC))}, + "DF_1_NOW": {reflect.TypeOf(q.DF_1_NOW), constant.MakeInt64(int64(q.DF_1_NOW))}, + "DF_1_ORIGIN": {reflect.TypeOf(q.DF_1_ORIGIN), constant.MakeInt64(int64(q.DF_1_ORIGIN))}, + "DF_1_PIE": {reflect.TypeOf(q.DF_1_PIE), constant.MakeInt64(int64(q.DF_1_PIE))}, + "DF_1_SINGLETON": {reflect.TypeOf(q.DF_1_SINGLETON), constant.MakeInt64(int64(q.DF_1_SINGLETON))}, + "DF_1_STUB": {reflect.TypeOf(q.DF_1_STUB), constant.MakeInt64(int64(q.DF_1_STUB))}, + "DF_1_SYMINTPOSE": {reflect.TypeOf(q.DF_1_SYMINTPOSE), constant.MakeInt64(int64(q.DF_1_SYMINTPOSE))}, + "DF_1_TRANS": {reflect.TypeOf(q.DF_1_TRANS), constant.MakeInt64(int64(q.DF_1_TRANS))}, + "DF_1_WEAKFILTER": {reflect.TypeOf(q.DF_1_WEAKFILTER), constant.MakeInt64(int64(q.DF_1_WEAKFILTER))}, + "DF_BIND_NOW": {reflect.TypeOf(q.DF_BIND_NOW), constant.MakeInt64(int64(q.DF_BIND_NOW))}, + "DF_ORIGIN": {reflect.TypeOf(q.DF_ORIGIN), constant.MakeInt64(int64(q.DF_ORIGIN))}, + "DF_STATIC_TLS": {reflect.TypeOf(q.DF_STATIC_TLS), constant.MakeInt64(int64(q.DF_STATIC_TLS))}, + "DF_SYMBOLIC": {reflect.TypeOf(q.DF_SYMBOLIC), constant.MakeInt64(int64(q.DF_SYMBOLIC))}, + "DF_TEXTREL": {reflect.TypeOf(q.DF_TEXTREL), constant.MakeInt64(int64(q.DF_TEXTREL))}, + "DT_ADDRRNGHI": {reflect.TypeOf(q.DT_ADDRRNGHI), constant.MakeInt64(int64(q.DT_ADDRRNGHI))}, + "DT_ADDRRNGLO": {reflect.TypeOf(q.DT_ADDRRNGLO), constant.MakeInt64(int64(q.DT_ADDRRNGLO))}, + "DT_AUDIT": {reflect.TypeOf(q.DT_AUDIT), constant.MakeInt64(int64(q.DT_AUDIT))}, + "DT_AUXILIARY": {reflect.TypeOf(q.DT_AUXILIARY), constant.MakeInt64(int64(q.DT_AUXILIARY))}, + "DT_BIND_NOW": {reflect.TypeOf(q.DT_BIND_NOW), constant.MakeInt64(int64(q.DT_BIND_NOW))}, + "DT_CHECKSUM": {reflect.TypeOf(q.DT_CHECKSUM), constant.MakeInt64(int64(q.DT_CHECKSUM))}, + "DT_CONFIG": {reflect.TypeOf(q.DT_CONFIG), constant.MakeInt64(int64(q.DT_CONFIG))}, + "DT_DEBUG": {reflect.TypeOf(q.DT_DEBUG), constant.MakeInt64(int64(q.DT_DEBUG))}, + "DT_DEPAUDIT": {reflect.TypeOf(q.DT_DEPAUDIT), constant.MakeInt64(int64(q.DT_DEPAUDIT))}, + "DT_ENCODING": {reflect.TypeOf(q.DT_ENCODING), constant.MakeInt64(int64(q.DT_ENCODING))}, + "DT_FEATURE": {reflect.TypeOf(q.DT_FEATURE), constant.MakeInt64(int64(q.DT_FEATURE))}, + "DT_FILTER": {reflect.TypeOf(q.DT_FILTER), constant.MakeInt64(int64(q.DT_FILTER))}, + "DT_FINI": {reflect.TypeOf(q.DT_FINI), constant.MakeInt64(int64(q.DT_FINI))}, + "DT_FINI_ARRAY": {reflect.TypeOf(q.DT_FINI_ARRAY), constant.MakeInt64(int64(q.DT_FINI_ARRAY))}, + "DT_FINI_ARRAYSZ": {reflect.TypeOf(q.DT_FINI_ARRAYSZ), constant.MakeInt64(int64(q.DT_FINI_ARRAYSZ))}, + "DT_FLAGS": {reflect.TypeOf(q.DT_FLAGS), constant.MakeInt64(int64(q.DT_FLAGS))}, + "DT_FLAGS_1": {reflect.TypeOf(q.DT_FLAGS_1), constant.MakeInt64(int64(q.DT_FLAGS_1))}, + "DT_GNU_CONFLICT": {reflect.TypeOf(q.DT_GNU_CONFLICT), constant.MakeInt64(int64(q.DT_GNU_CONFLICT))}, + "DT_GNU_CONFLICTSZ": {reflect.TypeOf(q.DT_GNU_CONFLICTSZ), constant.MakeInt64(int64(q.DT_GNU_CONFLICTSZ))}, + "DT_GNU_HASH": {reflect.TypeOf(q.DT_GNU_HASH), constant.MakeInt64(int64(q.DT_GNU_HASH))}, + "DT_GNU_LIBLIST": {reflect.TypeOf(q.DT_GNU_LIBLIST), constant.MakeInt64(int64(q.DT_GNU_LIBLIST))}, + "DT_GNU_LIBLISTSZ": {reflect.TypeOf(q.DT_GNU_LIBLISTSZ), constant.MakeInt64(int64(q.DT_GNU_LIBLISTSZ))}, + "DT_GNU_PRELINKED": {reflect.TypeOf(q.DT_GNU_PRELINKED), constant.MakeInt64(int64(q.DT_GNU_PRELINKED))}, + "DT_HASH": {reflect.TypeOf(q.DT_HASH), constant.MakeInt64(int64(q.DT_HASH))}, + "DT_HIOS": {reflect.TypeOf(q.DT_HIOS), constant.MakeInt64(int64(q.DT_HIOS))}, + "DT_HIPROC": {reflect.TypeOf(q.DT_HIPROC), constant.MakeInt64(int64(q.DT_HIPROC))}, + "DT_INIT": {reflect.TypeOf(q.DT_INIT), constant.MakeInt64(int64(q.DT_INIT))}, + "DT_INIT_ARRAY": {reflect.TypeOf(q.DT_INIT_ARRAY), constant.MakeInt64(int64(q.DT_INIT_ARRAY))}, + "DT_INIT_ARRAYSZ": {reflect.TypeOf(q.DT_INIT_ARRAYSZ), constant.MakeInt64(int64(q.DT_INIT_ARRAYSZ))}, + "DT_JMPREL": {reflect.TypeOf(q.DT_JMPREL), constant.MakeInt64(int64(q.DT_JMPREL))}, + "DT_LOOS": {reflect.TypeOf(q.DT_LOOS), constant.MakeInt64(int64(q.DT_LOOS))}, + "DT_LOPROC": {reflect.TypeOf(q.DT_LOPROC), constant.MakeInt64(int64(q.DT_LOPROC))}, + "DT_MIPS_AUX_DYNAMIC": {reflect.TypeOf(q.DT_MIPS_AUX_DYNAMIC), constant.MakeInt64(int64(q.DT_MIPS_AUX_DYNAMIC))}, + "DT_MIPS_BASE_ADDRESS": {reflect.TypeOf(q.DT_MIPS_BASE_ADDRESS), constant.MakeInt64(int64(q.DT_MIPS_BASE_ADDRESS))}, + "DT_MIPS_COMPACT_SIZE": {reflect.TypeOf(q.DT_MIPS_COMPACT_SIZE), constant.MakeInt64(int64(q.DT_MIPS_COMPACT_SIZE))}, + "DT_MIPS_CONFLICT": {reflect.TypeOf(q.DT_MIPS_CONFLICT), constant.MakeInt64(int64(q.DT_MIPS_CONFLICT))}, + "DT_MIPS_CONFLICTNO": {reflect.TypeOf(q.DT_MIPS_CONFLICTNO), constant.MakeInt64(int64(q.DT_MIPS_CONFLICTNO))}, + "DT_MIPS_CXX_FLAGS": {reflect.TypeOf(q.DT_MIPS_CXX_FLAGS), constant.MakeInt64(int64(q.DT_MIPS_CXX_FLAGS))}, + "DT_MIPS_DELTA_CLASS": {reflect.TypeOf(q.DT_MIPS_DELTA_CLASS), constant.MakeInt64(int64(q.DT_MIPS_DELTA_CLASS))}, + "DT_MIPS_DELTA_CLASSSYM": {reflect.TypeOf(q.DT_MIPS_DELTA_CLASSSYM), constant.MakeInt64(int64(q.DT_MIPS_DELTA_CLASSSYM))}, + "DT_MIPS_DELTA_CLASSSYM_NO": {reflect.TypeOf(q.DT_MIPS_DELTA_CLASSSYM_NO), constant.MakeInt64(int64(q.DT_MIPS_DELTA_CLASSSYM_NO))}, + "DT_MIPS_DELTA_CLASS_NO": {reflect.TypeOf(q.DT_MIPS_DELTA_CLASS_NO), constant.MakeInt64(int64(q.DT_MIPS_DELTA_CLASS_NO))}, + "DT_MIPS_DELTA_INSTANCE": {reflect.TypeOf(q.DT_MIPS_DELTA_INSTANCE), constant.MakeInt64(int64(q.DT_MIPS_DELTA_INSTANCE))}, + "DT_MIPS_DELTA_INSTANCE_NO": {reflect.TypeOf(q.DT_MIPS_DELTA_INSTANCE_NO), constant.MakeInt64(int64(q.DT_MIPS_DELTA_INSTANCE_NO))}, + "DT_MIPS_DELTA_RELOC": {reflect.TypeOf(q.DT_MIPS_DELTA_RELOC), constant.MakeInt64(int64(q.DT_MIPS_DELTA_RELOC))}, + "DT_MIPS_DELTA_RELOC_NO": {reflect.TypeOf(q.DT_MIPS_DELTA_RELOC_NO), constant.MakeInt64(int64(q.DT_MIPS_DELTA_RELOC_NO))}, + "DT_MIPS_DELTA_SYM": {reflect.TypeOf(q.DT_MIPS_DELTA_SYM), constant.MakeInt64(int64(q.DT_MIPS_DELTA_SYM))}, + "DT_MIPS_DELTA_SYM_NO": {reflect.TypeOf(q.DT_MIPS_DELTA_SYM_NO), constant.MakeInt64(int64(q.DT_MIPS_DELTA_SYM_NO))}, + "DT_MIPS_DYNSTR_ALIGN": {reflect.TypeOf(q.DT_MIPS_DYNSTR_ALIGN), constant.MakeInt64(int64(q.DT_MIPS_DYNSTR_ALIGN))}, + "DT_MIPS_FLAGS": {reflect.TypeOf(q.DT_MIPS_FLAGS), constant.MakeInt64(int64(q.DT_MIPS_FLAGS))}, + "DT_MIPS_GOTSYM": {reflect.TypeOf(q.DT_MIPS_GOTSYM), constant.MakeInt64(int64(q.DT_MIPS_GOTSYM))}, + "DT_MIPS_GP_VALUE": {reflect.TypeOf(q.DT_MIPS_GP_VALUE), constant.MakeInt64(int64(q.DT_MIPS_GP_VALUE))}, + "DT_MIPS_HIDDEN_GOTIDX": {reflect.TypeOf(q.DT_MIPS_HIDDEN_GOTIDX), constant.MakeInt64(int64(q.DT_MIPS_HIDDEN_GOTIDX))}, + "DT_MIPS_HIPAGENO": {reflect.TypeOf(q.DT_MIPS_HIPAGENO), constant.MakeInt64(int64(q.DT_MIPS_HIPAGENO))}, + "DT_MIPS_ICHECKSUM": {reflect.TypeOf(q.DT_MIPS_ICHECKSUM), constant.MakeInt64(int64(q.DT_MIPS_ICHECKSUM))}, + "DT_MIPS_INTERFACE": {reflect.TypeOf(q.DT_MIPS_INTERFACE), constant.MakeInt64(int64(q.DT_MIPS_INTERFACE))}, + "DT_MIPS_INTERFACE_SIZE": {reflect.TypeOf(q.DT_MIPS_INTERFACE_SIZE), constant.MakeInt64(int64(q.DT_MIPS_INTERFACE_SIZE))}, + "DT_MIPS_IVERSION": {reflect.TypeOf(q.DT_MIPS_IVERSION), constant.MakeInt64(int64(q.DT_MIPS_IVERSION))}, + "DT_MIPS_LIBLIST": {reflect.TypeOf(q.DT_MIPS_LIBLIST), constant.MakeInt64(int64(q.DT_MIPS_LIBLIST))}, + "DT_MIPS_LIBLISTNO": {reflect.TypeOf(q.DT_MIPS_LIBLISTNO), constant.MakeInt64(int64(q.DT_MIPS_LIBLISTNO))}, + "DT_MIPS_LOCALPAGE_GOTIDX": {reflect.TypeOf(q.DT_MIPS_LOCALPAGE_GOTIDX), constant.MakeInt64(int64(q.DT_MIPS_LOCALPAGE_GOTIDX))}, + "DT_MIPS_LOCAL_GOTIDX": {reflect.TypeOf(q.DT_MIPS_LOCAL_GOTIDX), constant.MakeInt64(int64(q.DT_MIPS_LOCAL_GOTIDX))}, + "DT_MIPS_LOCAL_GOTNO": {reflect.TypeOf(q.DT_MIPS_LOCAL_GOTNO), constant.MakeInt64(int64(q.DT_MIPS_LOCAL_GOTNO))}, + "DT_MIPS_MSYM": {reflect.TypeOf(q.DT_MIPS_MSYM), constant.MakeInt64(int64(q.DT_MIPS_MSYM))}, + "DT_MIPS_OPTIONS": {reflect.TypeOf(q.DT_MIPS_OPTIONS), constant.MakeInt64(int64(q.DT_MIPS_OPTIONS))}, + "DT_MIPS_PERF_SUFFIX": {reflect.TypeOf(q.DT_MIPS_PERF_SUFFIX), constant.MakeInt64(int64(q.DT_MIPS_PERF_SUFFIX))}, + "DT_MIPS_PIXIE_INIT": {reflect.TypeOf(q.DT_MIPS_PIXIE_INIT), constant.MakeInt64(int64(q.DT_MIPS_PIXIE_INIT))}, + "DT_MIPS_PLTGOT": {reflect.TypeOf(q.DT_MIPS_PLTGOT), constant.MakeInt64(int64(q.DT_MIPS_PLTGOT))}, + "DT_MIPS_PROTECTED_GOTIDX": {reflect.TypeOf(q.DT_MIPS_PROTECTED_GOTIDX), constant.MakeInt64(int64(q.DT_MIPS_PROTECTED_GOTIDX))}, + "DT_MIPS_RLD_MAP": {reflect.TypeOf(q.DT_MIPS_RLD_MAP), constant.MakeInt64(int64(q.DT_MIPS_RLD_MAP))}, + "DT_MIPS_RLD_MAP_REL": {reflect.TypeOf(q.DT_MIPS_RLD_MAP_REL), constant.MakeInt64(int64(q.DT_MIPS_RLD_MAP_REL))}, + "DT_MIPS_RLD_TEXT_RESOLVE_ADDR": {reflect.TypeOf(q.DT_MIPS_RLD_TEXT_RESOLVE_ADDR), constant.MakeInt64(int64(q.DT_MIPS_RLD_TEXT_RESOLVE_ADDR))}, + "DT_MIPS_RLD_VERSION": {reflect.TypeOf(q.DT_MIPS_RLD_VERSION), constant.MakeInt64(int64(q.DT_MIPS_RLD_VERSION))}, + "DT_MIPS_RWPLT": {reflect.TypeOf(q.DT_MIPS_RWPLT), constant.MakeInt64(int64(q.DT_MIPS_RWPLT))}, + "DT_MIPS_SYMBOL_LIB": {reflect.TypeOf(q.DT_MIPS_SYMBOL_LIB), constant.MakeInt64(int64(q.DT_MIPS_SYMBOL_LIB))}, + "DT_MIPS_SYMTABNO": {reflect.TypeOf(q.DT_MIPS_SYMTABNO), constant.MakeInt64(int64(q.DT_MIPS_SYMTABNO))}, + "DT_MIPS_TIME_STAMP": {reflect.TypeOf(q.DT_MIPS_TIME_STAMP), constant.MakeInt64(int64(q.DT_MIPS_TIME_STAMP))}, + "DT_MIPS_UNREFEXTNO": {reflect.TypeOf(q.DT_MIPS_UNREFEXTNO), constant.MakeInt64(int64(q.DT_MIPS_UNREFEXTNO))}, + "DT_MOVEENT": {reflect.TypeOf(q.DT_MOVEENT), constant.MakeInt64(int64(q.DT_MOVEENT))}, + "DT_MOVESZ": {reflect.TypeOf(q.DT_MOVESZ), constant.MakeInt64(int64(q.DT_MOVESZ))}, + "DT_MOVETAB": {reflect.TypeOf(q.DT_MOVETAB), constant.MakeInt64(int64(q.DT_MOVETAB))}, + "DT_NEEDED": {reflect.TypeOf(q.DT_NEEDED), constant.MakeInt64(int64(q.DT_NEEDED))}, + "DT_NULL": {reflect.TypeOf(q.DT_NULL), constant.MakeInt64(int64(q.DT_NULL))}, + "DT_PLTGOT": {reflect.TypeOf(q.DT_PLTGOT), constant.MakeInt64(int64(q.DT_PLTGOT))}, + "DT_PLTPAD": {reflect.TypeOf(q.DT_PLTPAD), constant.MakeInt64(int64(q.DT_PLTPAD))}, + "DT_PLTPADSZ": {reflect.TypeOf(q.DT_PLTPADSZ), constant.MakeInt64(int64(q.DT_PLTPADSZ))}, + "DT_PLTREL": {reflect.TypeOf(q.DT_PLTREL), constant.MakeInt64(int64(q.DT_PLTREL))}, + "DT_PLTRELSZ": {reflect.TypeOf(q.DT_PLTRELSZ), constant.MakeInt64(int64(q.DT_PLTRELSZ))}, + "DT_POSFLAG_1": {reflect.TypeOf(q.DT_POSFLAG_1), constant.MakeInt64(int64(q.DT_POSFLAG_1))}, + "DT_PPC64_GLINK": {reflect.TypeOf(q.DT_PPC64_GLINK), constant.MakeInt64(int64(q.DT_PPC64_GLINK))}, + "DT_PPC64_OPD": {reflect.TypeOf(q.DT_PPC64_OPD), constant.MakeInt64(int64(q.DT_PPC64_OPD))}, + "DT_PPC64_OPDSZ": {reflect.TypeOf(q.DT_PPC64_OPDSZ), constant.MakeInt64(int64(q.DT_PPC64_OPDSZ))}, + "DT_PPC64_OPT": {reflect.TypeOf(q.DT_PPC64_OPT), constant.MakeInt64(int64(q.DT_PPC64_OPT))}, + "DT_PPC_GOT": {reflect.TypeOf(q.DT_PPC_GOT), constant.MakeInt64(int64(q.DT_PPC_GOT))}, + "DT_PPC_OPT": {reflect.TypeOf(q.DT_PPC_OPT), constant.MakeInt64(int64(q.DT_PPC_OPT))}, + "DT_PREINIT_ARRAY": {reflect.TypeOf(q.DT_PREINIT_ARRAY), constant.MakeInt64(int64(q.DT_PREINIT_ARRAY))}, + "DT_PREINIT_ARRAYSZ": {reflect.TypeOf(q.DT_PREINIT_ARRAYSZ), constant.MakeInt64(int64(q.DT_PREINIT_ARRAYSZ))}, + "DT_REL": {reflect.TypeOf(q.DT_REL), constant.MakeInt64(int64(q.DT_REL))}, + "DT_RELA": {reflect.TypeOf(q.DT_RELA), constant.MakeInt64(int64(q.DT_RELA))}, + "DT_RELACOUNT": {reflect.TypeOf(q.DT_RELACOUNT), constant.MakeInt64(int64(q.DT_RELACOUNT))}, + "DT_RELAENT": {reflect.TypeOf(q.DT_RELAENT), constant.MakeInt64(int64(q.DT_RELAENT))}, + "DT_RELASZ": {reflect.TypeOf(q.DT_RELASZ), constant.MakeInt64(int64(q.DT_RELASZ))}, + "DT_RELCOUNT": {reflect.TypeOf(q.DT_RELCOUNT), constant.MakeInt64(int64(q.DT_RELCOUNT))}, + "DT_RELENT": {reflect.TypeOf(q.DT_RELENT), constant.MakeInt64(int64(q.DT_RELENT))}, + "DT_RELSZ": {reflect.TypeOf(q.DT_RELSZ), constant.MakeInt64(int64(q.DT_RELSZ))}, + "DT_RPATH": {reflect.TypeOf(q.DT_RPATH), constant.MakeInt64(int64(q.DT_RPATH))}, + "DT_RUNPATH": {reflect.TypeOf(q.DT_RUNPATH), constant.MakeInt64(int64(q.DT_RUNPATH))}, + "DT_SONAME": {reflect.TypeOf(q.DT_SONAME), constant.MakeInt64(int64(q.DT_SONAME))}, + "DT_SPARC_REGISTER": {reflect.TypeOf(q.DT_SPARC_REGISTER), constant.MakeInt64(int64(q.DT_SPARC_REGISTER))}, + "DT_STRSZ": {reflect.TypeOf(q.DT_STRSZ), constant.MakeInt64(int64(q.DT_STRSZ))}, + "DT_STRTAB": {reflect.TypeOf(q.DT_STRTAB), constant.MakeInt64(int64(q.DT_STRTAB))}, + "DT_SYMBOLIC": {reflect.TypeOf(q.DT_SYMBOLIC), constant.MakeInt64(int64(q.DT_SYMBOLIC))}, + "DT_SYMENT": {reflect.TypeOf(q.DT_SYMENT), constant.MakeInt64(int64(q.DT_SYMENT))}, + "DT_SYMINENT": {reflect.TypeOf(q.DT_SYMINENT), constant.MakeInt64(int64(q.DT_SYMINENT))}, + "DT_SYMINFO": {reflect.TypeOf(q.DT_SYMINFO), constant.MakeInt64(int64(q.DT_SYMINFO))}, + "DT_SYMINSZ": {reflect.TypeOf(q.DT_SYMINSZ), constant.MakeInt64(int64(q.DT_SYMINSZ))}, + "DT_SYMTAB": {reflect.TypeOf(q.DT_SYMTAB), constant.MakeInt64(int64(q.DT_SYMTAB))}, + "DT_SYMTAB_SHNDX": {reflect.TypeOf(q.DT_SYMTAB_SHNDX), constant.MakeInt64(int64(q.DT_SYMTAB_SHNDX))}, + "DT_TEXTREL": {reflect.TypeOf(q.DT_TEXTREL), constant.MakeInt64(int64(q.DT_TEXTREL))}, + "DT_TLSDESC_GOT": {reflect.TypeOf(q.DT_TLSDESC_GOT), constant.MakeInt64(int64(q.DT_TLSDESC_GOT))}, + "DT_TLSDESC_PLT": {reflect.TypeOf(q.DT_TLSDESC_PLT), constant.MakeInt64(int64(q.DT_TLSDESC_PLT))}, + "DT_USED": {reflect.TypeOf(q.DT_USED), constant.MakeInt64(int64(q.DT_USED))}, + "DT_VALRNGHI": {reflect.TypeOf(q.DT_VALRNGHI), constant.MakeInt64(int64(q.DT_VALRNGHI))}, + "DT_VALRNGLO": {reflect.TypeOf(q.DT_VALRNGLO), constant.MakeInt64(int64(q.DT_VALRNGLO))}, + "DT_VERDEF": {reflect.TypeOf(q.DT_VERDEF), constant.MakeInt64(int64(q.DT_VERDEF))}, + "DT_VERDEFNUM": {reflect.TypeOf(q.DT_VERDEFNUM), constant.MakeInt64(int64(q.DT_VERDEFNUM))}, + "DT_VERNEED": {reflect.TypeOf(q.DT_VERNEED), constant.MakeInt64(int64(q.DT_VERNEED))}, + "DT_VERNEEDNUM": {reflect.TypeOf(q.DT_VERNEEDNUM), constant.MakeInt64(int64(q.DT_VERNEEDNUM))}, + "DT_VERSYM": {reflect.TypeOf(q.DT_VERSYM), constant.MakeInt64(int64(q.DT_VERSYM))}, + "ELFCLASS32": {reflect.TypeOf(q.ELFCLASS32), constant.MakeInt64(int64(q.ELFCLASS32))}, + "ELFCLASS64": {reflect.TypeOf(q.ELFCLASS64), constant.MakeInt64(int64(q.ELFCLASS64))}, + "ELFCLASSNONE": {reflect.TypeOf(q.ELFCLASSNONE), constant.MakeInt64(int64(q.ELFCLASSNONE))}, + "ELFDATA2LSB": {reflect.TypeOf(q.ELFDATA2LSB), constant.MakeInt64(int64(q.ELFDATA2LSB))}, + "ELFDATA2MSB": {reflect.TypeOf(q.ELFDATA2MSB), constant.MakeInt64(int64(q.ELFDATA2MSB))}, + "ELFDATANONE": {reflect.TypeOf(q.ELFDATANONE), constant.MakeInt64(int64(q.ELFDATANONE))}, + "ELFOSABI_86OPEN": {reflect.TypeOf(q.ELFOSABI_86OPEN), constant.MakeInt64(int64(q.ELFOSABI_86OPEN))}, + "ELFOSABI_AIX": {reflect.TypeOf(q.ELFOSABI_AIX), constant.MakeInt64(int64(q.ELFOSABI_AIX))}, + "ELFOSABI_ARM": {reflect.TypeOf(q.ELFOSABI_ARM), constant.MakeInt64(int64(q.ELFOSABI_ARM))}, + "ELFOSABI_AROS": {reflect.TypeOf(q.ELFOSABI_AROS), constant.MakeInt64(int64(q.ELFOSABI_AROS))}, + "ELFOSABI_CLOUDABI": {reflect.TypeOf(q.ELFOSABI_CLOUDABI), constant.MakeInt64(int64(q.ELFOSABI_CLOUDABI))}, + "ELFOSABI_FENIXOS": {reflect.TypeOf(q.ELFOSABI_FENIXOS), constant.MakeInt64(int64(q.ELFOSABI_FENIXOS))}, + "ELFOSABI_FREEBSD": {reflect.TypeOf(q.ELFOSABI_FREEBSD), constant.MakeInt64(int64(q.ELFOSABI_FREEBSD))}, + "ELFOSABI_HPUX": {reflect.TypeOf(q.ELFOSABI_HPUX), constant.MakeInt64(int64(q.ELFOSABI_HPUX))}, + "ELFOSABI_HURD": {reflect.TypeOf(q.ELFOSABI_HURD), constant.MakeInt64(int64(q.ELFOSABI_HURD))}, + "ELFOSABI_IRIX": {reflect.TypeOf(q.ELFOSABI_IRIX), constant.MakeInt64(int64(q.ELFOSABI_IRIX))}, + "ELFOSABI_LINUX": {reflect.TypeOf(q.ELFOSABI_LINUX), constant.MakeInt64(int64(q.ELFOSABI_LINUX))}, + "ELFOSABI_MODESTO": {reflect.TypeOf(q.ELFOSABI_MODESTO), constant.MakeInt64(int64(q.ELFOSABI_MODESTO))}, + "ELFOSABI_NETBSD": {reflect.TypeOf(q.ELFOSABI_NETBSD), constant.MakeInt64(int64(q.ELFOSABI_NETBSD))}, + "ELFOSABI_NONE": {reflect.TypeOf(q.ELFOSABI_NONE), constant.MakeInt64(int64(q.ELFOSABI_NONE))}, + "ELFOSABI_NSK": {reflect.TypeOf(q.ELFOSABI_NSK), constant.MakeInt64(int64(q.ELFOSABI_NSK))}, + "ELFOSABI_OPENBSD": {reflect.TypeOf(q.ELFOSABI_OPENBSD), constant.MakeInt64(int64(q.ELFOSABI_OPENBSD))}, + "ELFOSABI_OPENVMS": {reflect.TypeOf(q.ELFOSABI_OPENVMS), constant.MakeInt64(int64(q.ELFOSABI_OPENVMS))}, + "ELFOSABI_SOLARIS": {reflect.TypeOf(q.ELFOSABI_SOLARIS), constant.MakeInt64(int64(q.ELFOSABI_SOLARIS))}, + "ELFOSABI_STANDALONE": {reflect.TypeOf(q.ELFOSABI_STANDALONE), constant.MakeInt64(int64(q.ELFOSABI_STANDALONE))}, + "ELFOSABI_TRU64": {reflect.TypeOf(q.ELFOSABI_TRU64), constant.MakeInt64(int64(q.ELFOSABI_TRU64))}, + "EM_386": {reflect.TypeOf(q.EM_386), constant.MakeInt64(int64(q.EM_386))}, + "EM_486": {reflect.TypeOf(q.EM_486), constant.MakeInt64(int64(q.EM_486))}, + "EM_56800EX": {reflect.TypeOf(q.EM_56800EX), constant.MakeInt64(int64(q.EM_56800EX))}, + "EM_68HC05": {reflect.TypeOf(q.EM_68HC05), constant.MakeInt64(int64(q.EM_68HC05))}, + "EM_68HC08": {reflect.TypeOf(q.EM_68HC08), constant.MakeInt64(int64(q.EM_68HC08))}, + "EM_68HC11": {reflect.TypeOf(q.EM_68HC11), constant.MakeInt64(int64(q.EM_68HC11))}, + "EM_68HC12": {reflect.TypeOf(q.EM_68HC12), constant.MakeInt64(int64(q.EM_68HC12))}, + "EM_68HC16": {reflect.TypeOf(q.EM_68HC16), constant.MakeInt64(int64(q.EM_68HC16))}, + "EM_68K": {reflect.TypeOf(q.EM_68K), constant.MakeInt64(int64(q.EM_68K))}, + "EM_78KOR": {reflect.TypeOf(q.EM_78KOR), constant.MakeInt64(int64(q.EM_78KOR))}, + "EM_8051": {reflect.TypeOf(q.EM_8051), constant.MakeInt64(int64(q.EM_8051))}, + "EM_860": {reflect.TypeOf(q.EM_860), constant.MakeInt64(int64(q.EM_860))}, + "EM_88K": {reflect.TypeOf(q.EM_88K), constant.MakeInt64(int64(q.EM_88K))}, + "EM_960": {reflect.TypeOf(q.EM_960), constant.MakeInt64(int64(q.EM_960))}, + "EM_AARCH64": {reflect.TypeOf(q.EM_AARCH64), constant.MakeInt64(int64(q.EM_AARCH64))}, + "EM_ALPHA": {reflect.TypeOf(q.EM_ALPHA), constant.MakeInt64(int64(q.EM_ALPHA))}, + "EM_ALPHA_STD": {reflect.TypeOf(q.EM_ALPHA_STD), constant.MakeInt64(int64(q.EM_ALPHA_STD))}, + "EM_ALTERA_NIOS2": {reflect.TypeOf(q.EM_ALTERA_NIOS2), constant.MakeInt64(int64(q.EM_ALTERA_NIOS2))}, + "EM_AMDGPU": {reflect.TypeOf(q.EM_AMDGPU), constant.MakeInt64(int64(q.EM_AMDGPU))}, + "EM_ARC": {reflect.TypeOf(q.EM_ARC), constant.MakeInt64(int64(q.EM_ARC))}, + "EM_ARCA": {reflect.TypeOf(q.EM_ARCA), constant.MakeInt64(int64(q.EM_ARCA))}, + "EM_ARC_COMPACT": {reflect.TypeOf(q.EM_ARC_COMPACT), constant.MakeInt64(int64(q.EM_ARC_COMPACT))}, + "EM_ARC_COMPACT2": {reflect.TypeOf(q.EM_ARC_COMPACT2), constant.MakeInt64(int64(q.EM_ARC_COMPACT2))}, + "EM_ARM": {reflect.TypeOf(q.EM_ARM), constant.MakeInt64(int64(q.EM_ARM))}, + "EM_AVR": {reflect.TypeOf(q.EM_AVR), constant.MakeInt64(int64(q.EM_AVR))}, + "EM_AVR32": {reflect.TypeOf(q.EM_AVR32), constant.MakeInt64(int64(q.EM_AVR32))}, + "EM_BA1": {reflect.TypeOf(q.EM_BA1), constant.MakeInt64(int64(q.EM_BA1))}, + "EM_BA2": {reflect.TypeOf(q.EM_BA2), constant.MakeInt64(int64(q.EM_BA2))}, + "EM_BLACKFIN": {reflect.TypeOf(q.EM_BLACKFIN), constant.MakeInt64(int64(q.EM_BLACKFIN))}, + "EM_BPF": {reflect.TypeOf(q.EM_BPF), constant.MakeInt64(int64(q.EM_BPF))}, + "EM_C166": {reflect.TypeOf(q.EM_C166), constant.MakeInt64(int64(q.EM_C166))}, + "EM_CDP": {reflect.TypeOf(q.EM_CDP), constant.MakeInt64(int64(q.EM_CDP))}, + "EM_CE": {reflect.TypeOf(q.EM_CE), constant.MakeInt64(int64(q.EM_CE))}, + "EM_CLOUDSHIELD": {reflect.TypeOf(q.EM_CLOUDSHIELD), constant.MakeInt64(int64(q.EM_CLOUDSHIELD))}, + "EM_COGE": {reflect.TypeOf(q.EM_COGE), constant.MakeInt64(int64(q.EM_COGE))}, + "EM_COLDFIRE": {reflect.TypeOf(q.EM_COLDFIRE), constant.MakeInt64(int64(q.EM_COLDFIRE))}, + "EM_COOL": {reflect.TypeOf(q.EM_COOL), constant.MakeInt64(int64(q.EM_COOL))}, + "EM_COREA_1ST": {reflect.TypeOf(q.EM_COREA_1ST), constant.MakeInt64(int64(q.EM_COREA_1ST))}, + "EM_COREA_2ND": {reflect.TypeOf(q.EM_COREA_2ND), constant.MakeInt64(int64(q.EM_COREA_2ND))}, + "EM_CR": {reflect.TypeOf(q.EM_CR), constant.MakeInt64(int64(q.EM_CR))}, + "EM_CR16": {reflect.TypeOf(q.EM_CR16), constant.MakeInt64(int64(q.EM_CR16))}, + "EM_CRAYNV2": {reflect.TypeOf(q.EM_CRAYNV2), constant.MakeInt64(int64(q.EM_CRAYNV2))}, + "EM_CRIS": {reflect.TypeOf(q.EM_CRIS), constant.MakeInt64(int64(q.EM_CRIS))}, + "EM_CRX": {reflect.TypeOf(q.EM_CRX), constant.MakeInt64(int64(q.EM_CRX))}, + "EM_CSR_KALIMBA": {reflect.TypeOf(q.EM_CSR_KALIMBA), constant.MakeInt64(int64(q.EM_CSR_KALIMBA))}, + "EM_CUDA": {reflect.TypeOf(q.EM_CUDA), constant.MakeInt64(int64(q.EM_CUDA))}, + "EM_CYPRESS_M8C": {reflect.TypeOf(q.EM_CYPRESS_M8C), constant.MakeInt64(int64(q.EM_CYPRESS_M8C))}, + "EM_D10V": {reflect.TypeOf(q.EM_D10V), constant.MakeInt64(int64(q.EM_D10V))}, + "EM_D30V": {reflect.TypeOf(q.EM_D30V), constant.MakeInt64(int64(q.EM_D30V))}, + "EM_DSP24": {reflect.TypeOf(q.EM_DSP24), constant.MakeInt64(int64(q.EM_DSP24))}, + "EM_DSPIC30F": {reflect.TypeOf(q.EM_DSPIC30F), constant.MakeInt64(int64(q.EM_DSPIC30F))}, + "EM_DXP": {reflect.TypeOf(q.EM_DXP), constant.MakeInt64(int64(q.EM_DXP))}, + "EM_ECOG1": {reflect.TypeOf(q.EM_ECOG1), constant.MakeInt64(int64(q.EM_ECOG1))}, + "EM_ECOG16": {reflect.TypeOf(q.EM_ECOG16), constant.MakeInt64(int64(q.EM_ECOG16))}, + "EM_ECOG1X": {reflect.TypeOf(q.EM_ECOG1X), constant.MakeInt64(int64(q.EM_ECOG1X))}, + "EM_ECOG2": {reflect.TypeOf(q.EM_ECOG2), constant.MakeInt64(int64(q.EM_ECOG2))}, + "EM_ETPU": {reflect.TypeOf(q.EM_ETPU), constant.MakeInt64(int64(q.EM_ETPU))}, + "EM_EXCESS": {reflect.TypeOf(q.EM_EXCESS), constant.MakeInt64(int64(q.EM_EXCESS))}, + "EM_F2MC16": {reflect.TypeOf(q.EM_F2MC16), constant.MakeInt64(int64(q.EM_F2MC16))}, + "EM_FIREPATH": {reflect.TypeOf(q.EM_FIREPATH), constant.MakeInt64(int64(q.EM_FIREPATH))}, + "EM_FR20": {reflect.TypeOf(q.EM_FR20), constant.MakeInt64(int64(q.EM_FR20))}, + "EM_FR30": {reflect.TypeOf(q.EM_FR30), constant.MakeInt64(int64(q.EM_FR30))}, + "EM_FT32": {reflect.TypeOf(q.EM_FT32), constant.MakeInt64(int64(q.EM_FT32))}, + "EM_FX66": {reflect.TypeOf(q.EM_FX66), constant.MakeInt64(int64(q.EM_FX66))}, + "EM_H8S": {reflect.TypeOf(q.EM_H8S), constant.MakeInt64(int64(q.EM_H8S))}, + "EM_H8_300": {reflect.TypeOf(q.EM_H8_300), constant.MakeInt64(int64(q.EM_H8_300))}, + "EM_H8_300H": {reflect.TypeOf(q.EM_H8_300H), constant.MakeInt64(int64(q.EM_H8_300H))}, + "EM_H8_500": {reflect.TypeOf(q.EM_H8_500), constant.MakeInt64(int64(q.EM_H8_500))}, + "EM_HUANY": {reflect.TypeOf(q.EM_HUANY), constant.MakeInt64(int64(q.EM_HUANY))}, + "EM_IA_64": {reflect.TypeOf(q.EM_IA_64), constant.MakeInt64(int64(q.EM_IA_64))}, + "EM_INTEL205": {reflect.TypeOf(q.EM_INTEL205), constant.MakeInt64(int64(q.EM_INTEL205))}, + "EM_INTEL206": {reflect.TypeOf(q.EM_INTEL206), constant.MakeInt64(int64(q.EM_INTEL206))}, + "EM_INTEL207": {reflect.TypeOf(q.EM_INTEL207), constant.MakeInt64(int64(q.EM_INTEL207))}, + "EM_INTEL208": {reflect.TypeOf(q.EM_INTEL208), constant.MakeInt64(int64(q.EM_INTEL208))}, + "EM_INTEL209": {reflect.TypeOf(q.EM_INTEL209), constant.MakeInt64(int64(q.EM_INTEL209))}, + "EM_IP2K": {reflect.TypeOf(q.EM_IP2K), constant.MakeInt64(int64(q.EM_IP2K))}, + "EM_JAVELIN": {reflect.TypeOf(q.EM_JAVELIN), constant.MakeInt64(int64(q.EM_JAVELIN))}, + "EM_K10M": {reflect.TypeOf(q.EM_K10M), constant.MakeInt64(int64(q.EM_K10M))}, + "EM_KM32": {reflect.TypeOf(q.EM_KM32), constant.MakeInt64(int64(q.EM_KM32))}, + "EM_KMX16": {reflect.TypeOf(q.EM_KMX16), constant.MakeInt64(int64(q.EM_KMX16))}, + "EM_KMX32": {reflect.TypeOf(q.EM_KMX32), constant.MakeInt64(int64(q.EM_KMX32))}, + "EM_KMX8": {reflect.TypeOf(q.EM_KMX8), constant.MakeInt64(int64(q.EM_KMX8))}, + "EM_KVARC": {reflect.TypeOf(q.EM_KVARC), constant.MakeInt64(int64(q.EM_KVARC))}, + "EM_L10M": {reflect.TypeOf(q.EM_L10M), constant.MakeInt64(int64(q.EM_L10M))}, + "EM_LANAI": {reflect.TypeOf(q.EM_LANAI), constant.MakeInt64(int64(q.EM_LANAI))}, + "EM_LATTICEMICO32": {reflect.TypeOf(q.EM_LATTICEMICO32), constant.MakeInt64(int64(q.EM_LATTICEMICO32))}, + "EM_LOONGARCH": {reflect.TypeOf(q.EM_LOONGARCH), constant.MakeInt64(int64(q.EM_LOONGARCH))}, + "EM_M16C": {reflect.TypeOf(q.EM_M16C), constant.MakeInt64(int64(q.EM_M16C))}, + "EM_M32": {reflect.TypeOf(q.EM_M32), constant.MakeInt64(int64(q.EM_M32))}, + "EM_M32C": {reflect.TypeOf(q.EM_M32C), constant.MakeInt64(int64(q.EM_M32C))}, + "EM_M32R": {reflect.TypeOf(q.EM_M32R), constant.MakeInt64(int64(q.EM_M32R))}, + "EM_MANIK": {reflect.TypeOf(q.EM_MANIK), constant.MakeInt64(int64(q.EM_MANIK))}, + "EM_MAX": {reflect.TypeOf(q.EM_MAX), constant.MakeInt64(int64(q.EM_MAX))}, + "EM_MAXQ30": {reflect.TypeOf(q.EM_MAXQ30), constant.MakeInt64(int64(q.EM_MAXQ30))}, + "EM_MCHP_PIC": {reflect.TypeOf(q.EM_MCHP_PIC), constant.MakeInt64(int64(q.EM_MCHP_PIC))}, + "EM_MCST_ELBRUS": {reflect.TypeOf(q.EM_MCST_ELBRUS), constant.MakeInt64(int64(q.EM_MCST_ELBRUS))}, + "EM_ME16": {reflect.TypeOf(q.EM_ME16), constant.MakeInt64(int64(q.EM_ME16))}, + "EM_METAG": {reflect.TypeOf(q.EM_METAG), constant.MakeInt64(int64(q.EM_METAG))}, + "EM_MICROBLAZE": {reflect.TypeOf(q.EM_MICROBLAZE), constant.MakeInt64(int64(q.EM_MICROBLAZE))}, + "EM_MIPS": {reflect.TypeOf(q.EM_MIPS), constant.MakeInt64(int64(q.EM_MIPS))}, + "EM_MIPS_RS3_LE": {reflect.TypeOf(q.EM_MIPS_RS3_LE), constant.MakeInt64(int64(q.EM_MIPS_RS3_LE))}, + "EM_MIPS_RS4_BE": {reflect.TypeOf(q.EM_MIPS_RS4_BE), constant.MakeInt64(int64(q.EM_MIPS_RS4_BE))}, + "EM_MIPS_X": {reflect.TypeOf(q.EM_MIPS_X), constant.MakeInt64(int64(q.EM_MIPS_X))}, + "EM_MMA": {reflect.TypeOf(q.EM_MMA), constant.MakeInt64(int64(q.EM_MMA))}, + "EM_MMDSP_PLUS": {reflect.TypeOf(q.EM_MMDSP_PLUS), constant.MakeInt64(int64(q.EM_MMDSP_PLUS))}, + "EM_MMIX": {reflect.TypeOf(q.EM_MMIX), constant.MakeInt64(int64(q.EM_MMIX))}, + "EM_MN10200": {reflect.TypeOf(q.EM_MN10200), constant.MakeInt64(int64(q.EM_MN10200))}, + "EM_MN10300": {reflect.TypeOf(q.EM_MN10300), constant.MakeInt64(int64(q.EM_MN10300))}, + "EM_MOXIE": {reflect.TypeOf(q.EM_MOXIE), constant.MakeInt64(int64(q.EM_MOXIE))}, + "EM_MSP430": {reflect.TypeOf(q.EM_MSP430), constant.MakeInt64(int64(q.EM_MSP430))}, + "EM_NCPU": {reflect.TypeOf(q.EM_NCPU), constant.MakeInt64(int64(q.EM_NCPU))}, + "EM_NDR1": {reflect.TypeOf(q.EM_NDR1), constant.MakeInt64(int64(q.EM_NDR1))}, + "EM_NDS32": {reflect.TypeOf(q.EM_NDS32), constant.MakeInt64(int64(q.EM_NDS32))}, + "EM_NONE": {reflect.TypeOf(q.EM_NONE), constant.MakeInt64(int64(q.EM_NONE))}, + "EM_NORC": {reflect.TypeOf(q.EM_NORC), constant.MakeInt64(int64(q.EM_NORC))}, + "EM_NS32K": {reflect.TypeOf(q.EM_NS32K), constant.MakeInt64(int64(q.EM_NS32K))}, + "EM_OPEN8": {reflect.TypeOf(q.EM_OPEN8), constant.MakeInt64(int64(q.EM_OPEN8))}, + "EM_OPENRISC": {reflect.TypeOf(q.EM_OPENRISC), constant.MakeInt64(int64(q.EM_OPENRISC))}, + "EM_PARISC": {reflect.TypeOf(q.EM_PARISC), constant.MakeInt64(int64(q.EM_PARISC))}, + "EM_PCP": {reflect.TypeOf(q.EM_PCP), constant.MakeInt64(int64(q.EM_PCP))}, + "EM_PDP10": {reflect.TypeOf(q.EM_PDP10), constant.MakeInt64(int64(q.EM_PDP10))}, + "EM_PDP11": {reflect.TypeOf(q.EM_PDP11), constant.MakeInt64(int64(q.EM_PDP11))}, + "EM_PDSP": {reflect.TypeOf(q.EM_PDSP), constant.MakeInt64(int64(q.EM_PDSP))}, + "EM_PJ": {reflect.TypeOf(q.EM_PJ), constant.MakeInt64(int64(q.EM_PJ))}, + "EM_PPC": {reflect.TypeOf(q.EM_PPC), constant.MakeInt64(int64(q.EM_PPC))}, + "EM_PPC64": {reflect.TypeOf(q.EM_PPC64), constant.MakeInt64(int64(q.EM_PPC64))}, + "EM_PRISM": {reflect.TypeOf(q.EM_PRISM), constant.MakeInt64(int64(q.EM_PRISM))}, + "EM_QDSP6": {reflect.TypeOf(q.EM_QDSP6), constant.MakeInt64(int64(q.EM_QDSP6))}, + "EM_R32C": {reflect.TypeOf(q.EM_R32C), constant.MakeInt64(int64(q.EM_R32C))}, + "EM_RCE": {reflect.TypeOf(q.EM_RCE), constant.MakeInt64(int64(q.EM_RCE))}, + "EM_RH32": {reflect.TypeOf(q.EM_RH32), constant.MakeInt64(int64(q.EM_RH32))}, + "EM_RISCV": {reflect.TypeOf(q.EM_RISCV), constant.MakeInt64(int64(q.EM_RISCV))}, + "EM_RL78": {reflect.TypeOf(q.EM_RL78), constant.MakeInt64(int64(q.EM_RL78))}, + "EM_RS08": {reflect.TypeOf(q.EM_RS08), constant.MakeInt64(int64(q.EM_RS08))}, + "EM_RX": {reflect.TypeOf(q.EM_RX), constant.MakeInt64(int64(q.EM_RX))}, + "EM_S370": {reflect.TypeOf(q.EM_S370), constant.MakeInt64(int64(q.EM_S370))}, + "EM_S390": {reflect.TypeOf(q.EM_S390), constant.MakeInt64(int64(q.EM_S390))}, + "EM_SCORE7": {reflect.TypeOf(q.EM_SCORE7), constant.MakeInt64(int64(q.EM_SCORE7))}, + "EM_SEP": {reflect.TypeOf(q.EM_SEP), constant.MakeInt64(int64(q.EM_SEP))}, + "EM_SE_C17": {reflect.TypeOf(q.EM_SE_C17), constant.MakeInt64(int64(q.EM_SE_C17))}, + "EM_SE_C33": {reflect.TypeOf(q.EM_SE_C33), constant.MakeInt64(int64(q.EM_SE_C33))}, + "EM_SH": {reflect.TypeOf(q.EM_SH), constant.MakeInt64(int64(q.EM_SH))}, + "EM_SHARC": {reflect.TypeOf(q.EM_SHARC), constant.MakeInt64(int64(q.EM_SHARC))}, + "EM_SLE9X": {reflect.TypeOf(q.EM_SLE9X), constant.MakeInt64(int64(q.EM_SLE9X))}, + "EM_SNP1K": {reflect.TypeOf(q.EM_SNP1K), constant.MakeInt64(int64(q.EM_SNP1K))}, + "EM_SPARC": {reflect.TypeOf(q.EM_SPARC), constant.MakeInt64(int64(q.EM_SPARC))}, + "EM_SPARC32PLUS": {reflect.TypeOf(q.EM_SPARC32PLUS), constant.MakeInt64(int64(q.EM_SPARC32PLUS))}, + "EM_SPARCV9": {reflect.TypeOf(q.EM_SPARCV9), constant.MakeInt64(int64(q.EM_SPARCV9))}, + "EM_ST100": {reflect.TypeOf(q.EM_ST100), constant.MakeInt64(int64(q.EM_ST100))}, + "EM_ST19": {reflect.TypeOf(q.EM_ST19), constant.MakeInt64(int64(q.EM_ST19))}, + "EM_ST200": {reflect.TypeOf(q.EM_ST200), constant.MakeInt64(int64(q.EM_ST200))}, + "EM_ST7": {reflect.TypeOf(q.EM_ST7), constant.MakeInt64(int64(q.EM_ST7))}, + "EM_ST9PLUS": {reflect.TypeOf(q.EM_ST9PLUS), constant.MakeInt64(int64(q.EM_ST9PLUS))}, + "EM_STARCORE": {reflect.TypeOf(q.EM_STARCORE), constant.MakeInt64(int64(q.EM_STARCORE))}, + "EM_STM8": {reflect.TypeOf(q.EM_STM8), constant.MakeInt64(int64(q.EM_STM8))}, + "EM_STXP7X": {reflect.TypeOf(q.EM_STXP7X), constant.MakeInt64(int64(q.EM_STXP7X))}, + "EM_SVX": {reflect.TypeOf(q.EM_SVX), constant.MakeInt64(int64(q.EM_SVX))}, + "EM_TILE64": {reflect.TypeOf(q.EM_TILE64), constant.MakeInt64(int64(q.EM_TILE64))}, + "EM_TILEGX": {reflect.TypeOf(q.EM_TILEGX), constant.MakeInt64(int64(q.EM_TILEGX))}, + "EM_TILEPRO": {reflect.TypeOf(q.EM_TILEPRO), constant.MakeInt64(int64(q.EM_TILEPRO))}, + "EM_TINYJ": {reflect.TypeOf(q.EM_TINYJ), constant.MakeInt64(int64(q.EM_TINYJ))}, + "EM_TI_ARP32": {reflect.TypeOf(q.EM_TI_ARP32), constant.MakeInt64(int64(q.EM_TI_ARP32))}, + "EM_TI_C2000": {reflect.TypeOf(q.EM_TI_C2000), constant.MakeInt64(int64(q.EM_TI_C2000))}, + "EM_TI_C5500": {reflect.TypeOf(q.EM_TI_C5500), constant.MakeInt64(int64(q.EM_TI_C5500))}, + "EM_TI_C6000": {reflect.TypeOf(q.EM_TI_C6000), constant.MakeInt64(int64(q.EM_TI_C6000))}, + "EM_TI_PRU": {reflect.TypeOf(q.EM_TI_PRU), constant.MakeInt64(int64(q.EM_TI_PRU))}, + "EM_TMM_GPP": {reflect.TypeOf(q.EM_TMM_GPP), constant.MakeInt64(int64(q.EM_TMM_GPP))}, + "EM_TPC": {reflect.TypeOf(q.EM_TPC), constant.MakeInt64(int64(q.EM_TPC))}, + "EM_TRICORE": {reflect.TypeOf(q.EM_TRICORE), constant.MakeInt64(int64(q.EM_TRICORE))}, + "EM_TRIMEDIA": {reflect.TypeOf(q.EM_TRIMEDIA), constant.MakeInt64(int64(q.EM_TRIMEDIA))}, + "EM_TSK3000": {reflect.TypeOf(q.EM_TSK3000), constant.MakeInt64(int64(q.EM_TSK3000))}, + "EM_UNICORE": {reflect.TypeOf(q.EM_UNICORE), constant.MakeInt64(int64(q.EM_UNICORE))}, + "EM_V800": {reflect.TypeOf(q.EM_V800), constant.MakeInt64(int64(q.EM_V800))}, + "EM_V850": {reflect.TypeOf(q.EM_V850), constant.MakeInt64(int64(q.EM_V850))}, + "EM_VAX": {reflect.TypeOf(q.EM_VAX), constant.MakeInt64(int64(q.EM_VAX))}, + "EM_VIDEOCORE": {reflect.TypeOf(q.EM_VIDEOCORE), constant.MakeInt64(int64(q.EM_VIDEOCORE))}, + "EM_VIDEOCORE3": {reflect.TypeOf(q.EM_VIDEOCORE3), constant.MakeInt64(int64(q.EM_VIDEOCORE3))}, + "EM_VIDEOCORE5": {reflect.TypeOf(q.EM_VIDEOCORE5), constant.MakeInt64(int64(q.EM_VIDEOCORE5))}, + "EM_VISIUM": {reflect.TypeOf(q.EM_VISIUM), constant.MakeInt64(int64(q.EM_VISIUM))}, + "EM_VPP500": {reflect.TypeOf(q.EM_VPP500), constant.MakeInt64(int64(q.EM_VPP500))}, + "EM_X86_64": {reflect.TypeOf(q.EM_X86_64), constant.MakeInt64(int64(q.EM_X86_64))}, + "EM_XCORE": {reflect.TypeOf(q.EM_XCORE), constant.MakeInt64(int64(q.EM_XCORE))}, + "EM_XGATE": {reflect.TypeOf(q.EM_XGATE), constant.MakeInt64(int64(q.EM_XGATE))}, + "EM_XIMO16": {reflect.TypeOf(q.EM_XIMO16), constant.MakeInt64(int64(q.EM_XIMO16))}, + "EM_XTENSA": {reflect.TypeOf(q.EM_XTENSA), constant.MakeInt64(int64(q.EM_XTENSA))}, + "EM_Z80": {reflect.TypeOf(q.EM_Z80), constant.MakeInt64(int64(q.EM_Z80))}, + "EM_ZSP": {reflect.TypeOf(q.EM_ZSP), constant.MakeInt64(int64(q.EM_ZSP))}, + "ET_CORE": {reflect.TypeOf(q.ET_CORE), constant.MakeInt64(int64(q.ET_CORE))}, + "ET_DYN": {reflect.TypeOf(q.ET_DYN), constant.MakeInt64(int64(q.ET_DYN))}, + "ET_EXEC": {reflect.TypeOf(q.ET_EXEC), constant.MakeInt64(int64(q.ET_EXEC))}, + "ET_HIOS": {reflect.TypeOf(q.ET_HIOS), constant.MakeInt64(int64(q.ET_HIOS))}, + "ET_HIPROC": {reflect.TypeOf(q.ET_HIPROC), constant.MakeInt64(int64(q.ET_HIPROC))}, + "ET_LOOS": {reflect.TypeOf(q.ET_LOOS), constant.MakeInt64(int64(q.ET_LOOS))}, + "ET_LOPROC": {reflect.TypeOf(q.ET_LOPROC), constant.MakeInt64(int64(q.ET_LOPROC))}, + "ET_NONE": {reflect.TypeOf(q.ET_NONE), constant.MakeInt64(int64(q.ET_NONE))}, + "ET_REL": {reflect.TypeOf(q.ET_REL), constant.MakeInt64(int64(q.ET_REL))}, + "EV_CURRENT": {reflect.TypeOf(q.EV_CURRENT), constant.MakeInt64(int64(q.EV_CURRENT))}, + "EV_NONE": {reflect.TypeOf(q.EV_NONE), constant.MakeInt64(int64(q.EV_NONE))}, + "NT_FPREGSET": {reflect.TypeOf(q.NT_FPREGSET), constant.MakeInt64(int64(q.NT_FPREGSET))}, + "NT_PRPSINFO": {reflect.TypeOf(q.NT_PRPSINFO), constant.MakeInt64(int64(q.NT_PRPSINFO))}, + "NT_PRSTATUS": {reflect.TypeOf(q.NT_PRSTATUS), constant.MakeInt64(int64(q.NT_PRSTATUS))}, + "PF_MASKOS": {reflect.TypeOf(q.PF_MASKOS), constant.MakeInt64(int64(q.PF_MASKOS))}, + "PF_MASKPROC": {reflect.TypeOf(q.PF_MASKPROC), constant.MakeInt64(int64(q.PF_MASKPROC))}, + "PF_R": {reflect.TypeOf(q.PF_R), constant.MakeInt64(int64(q.PF_R))}, + "PF_W": {reflect.TypeOf(q.PF_W), constant.MakeInt64(int64(q.PF_W))}, + "PF_X": {reflect.TypeOf(q.PF_X), constant.MakeInt64(int64(q.PF_X))}, + "PT_AARCH64_ARCHEXT": {reflect.TypeOf(q.PT_AARCH64_ARCHEXT), constant.MakeInt64(int64(q.PT_AARCH64_ARCHEXT))}, + "PT_AARCH64_UNWIND": {reflect.TypeOf(q.PT_AARCH64_UNWIND), constant.MakeInt64(int64(q.PT_AARCH64_UNWIND))}, + "PT_ARM_ARCHEXT": {reflect.TypeOf(q.PT_ARM_ARCHEXT), constant.MakeInt64(int64(q.PT_ARM_ARCHEXT))}, + "PT_ARM_EXIDX": {reflect.TypeOf(q.PT_ARM_EXIDX), constant.MakeInt64(int64(q.PT_ARM_EXIDX))}, + "PT_DYNAMIC": {reflect.TypeOf(q.PT_DYNAMIC), constant.MakeInt64(int64(q.PT_DYNAMIC))}, + "PT_GNU_EH_FRAME": {reflect.TypeOf(q.PT_GNU_EH_FRAME), constant.MakeInt64(int64(q.PT_GNU_EH_FRAME))}, + "PT_GNU_MBIND_HI": {reflect.TypeOf(q.PT_GNU_MBIND_HI), constant.MakeInt64(int64(q.PT_GNU_MBIND_HI))}, + "PT_GNU_MBIND_LO": {reflect.TypeOf(q.PT_GNU_MBIND_LO), constant.MakeInt64(int64(q.PT_GNU_MBIND_LO))}, + "PT_GNU_PROPERTY": {reflect.TypeOf(q.PT_GNU_PROPERTY), constant.MakeInt64(int64(q.PT_GNU_PROPERTY))}, + "PT_GNU_RELRO": {reflect.TypeOf(q.PT_GNU_RELRO), constant.MakeInt64(int64(q.PT_GNU_RELRO))}, + "PT_GNU_STACK": {reflect.TypeOf(q.PT_GNU_STACK), constant.MakeInt64(int64(q.PT_GNU_STACK))}, + "PT_HIOS": {reflect.TypeOf(q.PT_HIOS), constant.MakeInt64(int64(q.PT_HIOS))}, + "PT_HIPROC": {reflect.TypeOf(q.PT_HIPROC), constant.MakeInt64(int64(q.PT_HIPROC))}, + "PT_INTERP": {reflect.TypeOf(q.PT_INTERP), constant.MakeInt64(int64(q.PT_INTERP))}, + "PT_LOAD": {reflect.TypeOf(q.PT_LOAD), constant.MakeInt64(int64(q.PT_LOAD))}, + "PT_LOOS": {reflect.TypeOf(q.PT_LOOS), constant.MakeInt64(int64(q.PT_LOOS))}, + "PT_LOPROC": {reflect.TypeOf(q.PT_LOPROC), constant.MakeInt64(int64(q.PT_LOPROC))}, + "PT_MIPS_ABIFLAGS": {reflect.TypeOf(q.PT_MIPS_ABIFLAGS), constant.MakeInt64(int64(q.PT_MIPS_ABIFLAGS))}, + "PT_MIPS_OPTIONS": {reflect.TypeOf(q.PT_MIPS_OPTIONS), constant.MakeInt64(int64(q.PT_MIPS_OPTIONS))}, + "PT_MIPS_REGINFO": {reflect.TypeOf(q.PT_MIPS_REGINFO), constant.MakeInt64(int64(q.PT_MIPS_REGINFO))}, + "PT_MIPS_RTPROC": {reflect.TypeOf(q.PT_MIPS_RTPROC), constant.MakeInt64(int64(q.PT_MIPS_RTPROC))}, + "PT_NOTE": {reflect.TypeOf(q.PT_NOTE), constant.MakeInt64(int64(q.PT_NOTE))}, + "PT_NULL": {reflect.TypeOf(q.PT_NULL), constant.MakeInt64(int64(q.PT_NULL))}, + "PT_OPENBSD_BOOTDATA": {reflect.TypeOf(q.PT_OPENBSD_BOOTDATA), constant.MakeInt64(int64(q.PT_OPENBSD_BOOTDATA))}, + "PT_OPENBSD_RANDOMIZE": {reflect.TypeOf(q.PT_OPENBSD_RANDOMIZE), constant.MakeInt64(int64(q.PT_OPENBSD_RANDOMIZE))}, + "PT_OPENBSD_WXNEEDED": {reflect.TypeOf(q.PT_OPENBSD_WXNEEDED), constant.MakeInt64(int64(q.PT_OPENBSD_WXNEEDED))}, + "PT_PAX_FLAGS": {reflect.TypeOf(q.PT_PAX_FLAGS), constant.MakeInt64(int64(q.PT_PAX_FLAGS))}, + "PT_PHDR": {reflect.TypeOf(q.PT_PHDR), constant.MakeInt64(int64(q.PT_PHDR))}, + "PT_S390_PGSTE": {reflect.TypeOf(q.PT_S390_PGSTE), constant.MakeInt64(int64(q.PT_S390_PGSTE))}, + "PT_SHLIB": {reflect.TypeOf(q.PT_SHLIB), constant.MakeInt64(int64(q.PT_SHLIB))}, + "PT_SUNWSTACK": {reflect.TypeOf(q.PT_SUNWSTACK), constant.MakeInt64(int64(q.PT_SUNWSTACK))}, + "PT_SUNW_EH_FRAME": {reflect.TypeOf(q.PT_SUNW_EH_FRAME), constant.MakeInt64(int64(q.PT_SUNW_EH_FRAME))}, + "PT_TLS": {reflect.TypeOf(q.PT_TLS), constant.MakeInt64(int64(q.PT_TLS))}, + "R_386_16": {reflect.TypeOf(q.R_386_16), constant.MakeInt64(int64(q.R_386_16))}, + "R_386_32": {reflect.TypeOf(q.R_386_32), constant.MakeInt64(int64(q.R_386_32))}, + "R_386_32PLT": {reflect.TypeOf(q.R_386_32PLT), constant.MakeInt64(int64(q.R_386_32PLT))}, + "R_386_8": {reflect.TypeOf(q.R_386_8), constant.MakeInt64(int64(q.R_386_8))}, + "R_386_COPY": {reflect.TypeOf(q.R_386_COPY), constant.MakeInt64(int64(q.R_386_COPY))}, + "R_386_GLOB_DAT": {reflect.TypeOf(q.R_386_GLOB_DAT), constant.MakeInt64(int64(q.R_386_GLOB_DAT))}, + "R_386_GOT32": {reflect.TypeOf(q.R_386_GOT32), constant.MakeInt64(int64(q.R_386_GOT32))}, + "R_386_GOT32X": {reflect.TypeOf(q.R_386_GOT32X), constant.MakeInt64(int64(q.R_386_GOT32X))}, + "R_386_GOTOFF": {reflect.TypeOf(q.R_386_GOTOFF), constant.MakeInt64(int64(q.R_386_GOTOFF))}, + "R_386_GOTPC": {reflect.TypeOf(q.R_386_GOTPC), constant.MakeInt64(int64(q.R_386_GOTPC))}, + "R_386_IRELATIVE": {reflect.TypeOf(q.R_386_IRELATIVE), constant.MakeInt64(int64(q.R_386_IRELATIVE))}, + "R_386_JMP_SLOT": {reflect.TypeOf(q.R_386_JMP_SLOT), constant.MakeInt64(int64(q.R_386_JMP_SLOT))}, + "R_386_NONE": {reflect.TypeOf(q.R_386_NONE), constant.MakeInt64(int64(q.R_386_NONE))}, + "R_386_PC16": {reflect.TypeOf(q.R_386_PC16), constant.MakeInt64(int64(q.R_386_PC16))}, + "R_386_PC32": {reflect.TypeOf(q.R_386_PC32), constant.MakeInt64(int64(q.R_386_PC32))}, + "R_386_PC8": {reflect.TypeOf(q.R_386_PC8), constant.MakeInt64(int64(q.R_386_PC8))}, + "R_386_PLT32": {reflect.TypeOf(q.R_386_PLT32), constant.MakeInt64(int64(q.R_386_PLT32))}, + "R_386_RELATIVE": {reflect.TypeOf(q.R_386_RELATIVE), constant.MakeInt64(int64(q.R_386_RELATIVE))}, + "R_386_SIZE32": {reflect.TypeOf(q.R_386_SIZE32), constant.MakeInt64(int64(q.R_386_SIZE32))}, + "R_386_TLS_DESC": {reflect.TypeOf(q.R_386_TLS_DESC), constant.MakeInt64(int64(q.R_386_TLS_DESC))}, + "R_386_TLS_DESC_CALL": {reflect.TypeOf(q.R_386_TLS_DESC_CALL), constant.MakeInt64(int64(q.R_386_TLS_DESC_CALL))}, + "R_386_TLS_DTPMOD32": {reflect.TypeOf(q.R_386_TLS_DTPMOD32), constant.MakeInt64(int64(q.R_386_TLS_DTPMOD32))}, + "R_386_TLS_DTPOFF32": {reflect.TypeOf(q.R_386_TLS_DTPOFF32), constant.MakeInt64(int64(q.R_386_TLS_DTPOFF32))}, + "R_386_TLS_GD": {reflect.TypeOf(q.R_386_TLS_GD), constant.MakeInt64(int64(q.R_386_TLS_GD))}, + "R_386_TLS_GD_32": {reflect.TypeOf(q.R_386_TLS_GD_32), constant.MakeInt64(int64(q.R_386_TLS_GD_32))}, + "R_386_TLS_GD_CALL": {reflect.TypeOf(q.R_386_TLS_GD_CALL), constant.MakeInt64(int64(q.R_386_TLS_GD_CALL))}, + "R_386_TLS_GD_POP": {reflect.TypeOf(q.R_386_TLS_GD_POP), constant.MakeInt64(int64(q.R_386_TLS_GD_POP))}, + "R_386_TLS_GD_PUSH": {reflect.TypeOf(q.R_386_TLS_GD_PUSH), constant.MakeInt64(int64(q.R_386_TLS_GD_PUSH))}, + "R_386_TLS_GOTDESC": {reflect.TypeOf(q.R_386_TLS_GOTDESC), constant.MakeInt64(int64(q.R_386_TLS_GOTDESC))}, + "R_386_TLS_GOTIE": {reflect.TypeOf(q.R_386_TLS_GOTIE), constant.MakeInt64(int64(q.R_386_TLS_GOTIE))}, + "R_386_TLS_IE": {reflect.TypeOf(q.R_386_TLS_IE), constant.MakeInt64(int64(q.R_386_TLS_IE))}, + "R_386_TLS_IE_32": {reflect.TypeOf(q.R_386_TLS_IE_32), constant.MakeInt64(int64(q.R_386_TLS_IE_32))}, + "R_386_TLS_LDM": {reflect.TypeOf(q.R_386_TLS_LDM), constant.MakeInt64(int64(q.R_386_TLS_LDM))}, + "R_386_TLS_LDM_32": {reflect.TypeOf(q.R_386_TLS_LDM_32), constant.MakeInt64(int64(q.R_386_TLS_LDM_32))}, + "R_386_TLS_LDM_CALL": {reflect.TypeOf(q.R_386_TLS_LDM_CALL), constant.MakeInt64(int64(q.R_386_TLS_LDM_CALL))}, + "R_386_TLS_LDM_POP": {reflect.TypeOf(q.R_386_TLS_LDM_POP), constant.MakeInt64(int64(q.R_386_TLS_LDM_POP))}, + "R_386_TLS_LDM_PUSH": {reflect.TypeOf(q.R_386_TLS_LDM_PUSH), constant.MakeInt64(int64(q.R_386_TLS_LDM_PUSH))}, + "R_386_TLS_LDO_32": {reflect.TypeOf(q.R_386_TLS_LDO_32), constant.MakeInt64(int64(q.R_386_TLS_LDO_32))}, + "R_386_TLS_LE": {reflect.TypeOf(q.R_386_TLS_LE), constant.MakeInt64(int64(q.R_386_TLS_LE))}, + "R_386_TLS_LE_32": {reflect.TypeOf(q.R_386_TLS_LE_32), constant.MakeInt64(int64(q.R_386_TLS_LE_32))}, + "R_386_TLS_TPOFF": {reflect.TypeOf(q.R_386_TLS_TPOFF), constant.MakeInt64(int64(q.R_386_TLS_TPOFF))}, + "R_386_TLS_TPOFF32": {reflect.TypeOf(q.R_386_TLS_TPOFF32), constant.MakeInt64(int64(q.R_386_TLS_TPOFF32))}, + "R_390_12": {reflect.TypeOf(q.R_390_12), constant.MakeInt64(int64(q.R_390_12))}, + "R_390_16": {reflect.TypeOf(q.R_390_16), constant.MakeInt64(int64(q.R_390_16))}, + "R_390_20": {reflect.TypeOf(q.R_390_20), constant.MakeInt64(int64(q.R_390_20))}, + "R_390_32": {reflect.TypeOf(q.R_390_32), constant.MakeInt64(int64(q.R_390_32))}, + "R_390_64": {reflect.TypeOf(q.R_390_64), constant.MakeInt64(int64(q.R_390_64))}, + "R_390_8": {reflect.TypeOf(q.R_390_8), constant.MakeInt64(int64(q.R_390_8))}, + "R_390_COPY": {reflect.TypeOf(q.R_390_COPY), constant.MakeInt64(int64(q.R_390_COPY))}, + "R_390_GLOB_DAT": {reflect.TypeOf(q.R_390_GLOB_DAT), constant.MakeInt64(int64(q.R_390_GLOB_DAT))}, + "R_390_GOT12": {reflect.TypeOf(q.R_390_GOT12), constant.MakeInt64(int64(q.R_390_GOT12))}, + "R_390_GOT16": {reflect.TypeOf(q.R_390_GOT16), constant.MakeInt64(int64(q.R_390_GOT16))}, + "R_390_GOT20": {reflect.TypeOf(q.R_390_GOT20), constant.MakeInt64(int64(q.R_390_GOT20))}, + "R_390_GOT32": {reflect.TypeOf(q.R_390_GOT32), constant.MakeInt64(int64(q.R_390_GOT32))}, + "R_390_GOT64": {reflect.TypeOf(q.R_390_GOT64), constant.MakeInt64(int64(q.R_390_GOT64))}, + "R_390_GOTENT": {reflect.TypeOf(q.R_390_GOTENT), constant.MakeInt64(int64(q.R_390_GOTENT))}, + "R_390_GOTOFF": {reflect.TypeOf(q.R_390_GOTOFF), constant.MakeInt64(int64(q.R_390_GOTOFF))}, + "R_390_GOTOFF16": {reflect.TypeOf(q.R_390_GOTOFF16), constant.MakeInt64(int64(q.R_390_GOTOFF16))}, + "R_390_GOTOFF64": {reflect.TypeOf(q.R_390_GOTOFF64), constant.MakeInt64(int64(q.R_390_GOTOFF64))}, + "R_390_GOTPC": {reflect.TypeOf(q.R_390_GOTPC), constant.MakeInt64(int64(q.R_390_GOTPC))}, + "R_390_GOTPCDBL": {reflect.TypeOf(q.R_390_GOTPCDBL), constant.MakeInt64(int64(q.R_390_GOTPCDBL))}, + "R_390_GOTPLT12": {reflect.TypeOf(q.R_390_GOTPLT12), constant.MakeInt64(int64(q.R_390_GOTPLT12))}, + "R_390_GOTPLT16": {reflect.TypeOf(q.R_390_GOTPLT16), constant.MakeInt64(int64(q.R_390_GOTPLT16))}, + "R_390_GOTPLT20": {reflect.TypeOf(q.R_390_GOTPLT20), constant.MakeInt64(int64(q.R_390_GOTPLT20))}, + "R_390_GOTPLT32": {reflect.TypeOf(q.R_390_GOTPLT32), constant.MakeInt64(int64(q.R_390_GOTPLT32))}, + "R_390_GOTPLT64": {reflect.TypeOf(q.R_390_GOTPLT64), constant.MakeInt64(int64(q.R_390_GOTPLT64))}, + "R_390_GOTPLTENT": {reflect.TypeOf(q.R_390_GOTPLTENT), constant.MakeInt64(int64(q.R_390_GOTPLTENT))}, + "R_390_GOTPLTOFF16": {reflect.TypeOf(q.R_390_GOTPLTOFF16), constant.MakeInt64(int64(q.R_390_GOTPLTOFF16))}, + "R_390_GOTPLTOFF32": {reflect.TypeOf(q.R_390_GOTPLTOFF32), constant.MakeInt64(int64(q.R_390_GOTPLTOFF32))}, + "R_390_GOTPLTOFF64": {reflect.TypeOf(q.R_390_GOTPLTOFF64), constant.MakeInt64(int64(q.R_390_GOTPLTOFF64))}, + "R_390_JMP_SLOT": {reflect.TypeOf(q.R_390_JMP_SLOT), constant.MakeInt64(int64(q.R_390_JMP_SLOT))}, + "R_390_NONE": {reflect.TypeOf(q.R_390_NONE), constant.MakeInt64(int64(q.R_390_NONE))}, + "R_390_PC16": {reflect.TypeOf(q.R_390_PC16), constant.MakeInt64(int64(q.R_390_PC16))}, + "R_390_PC16DBL": {reflect.TypeOf(q.R_390_PC16DBL), constant.MakeInt64(int64(q.R_390_PC16DBL))}, + "R_390_PC32": {reflect.TypeOf(q.R_390_PC32), constant.MakeInt64(int64(q.R_390_PC32))}, + "R_390_PC32DBL": {reflect.TypeOf(q.R_390_PC32DBL), constant.MakeInt64(int64(q.R_390_PC32DBL))}, + "R_390_PC64": {reflect.TypeOf(q.R_390_PC64), constant.MakeInt64(int64(q.R_390_PC64))}, + "R_390_PLT16DBL": {reflect.TypeOf(q.R_390_PLT16DBL), constant.MakeInt64(int64(q.R_390_PLT16DBL))}, + "R_390_PLT32": {reflect.TypeOf(q.R_390_PLT32), constant.MakeInt64(int64(q.R_390_PLT32))}, + "R_390_PLT32DBL": {reflect.TypeOf(q.R_390_PLT32DBL), constant.MakeInt64(int64(q.R_390_PLT32DBL))}, + "R_390_PLT64": {reflect.TypeOf(q.R_390_PLT64), constant.MakeInt64(int64(q.R_390_PLT64))}, + "R_390_RELATIVE": {reflect.TypeOf(q.R_390_RELATIVE), constant.MakeInt64(int64(q.R_390_RELATIVE))}, + "R_390_TLS_DTPMOD": {reflect.TypeOf(q.R_390_TLS_DTPMOD), constant.MakeInt64(int64(q.R_390_TLS_DTPMOD))}, + "R_390_TLS_DTPOFF": {reflect.TypeOf(q.R_390_TLS_DTPOFF), constant.MakeInt64(int64(q.R_390_TLS_DTPOFF))}, + "R_390_TLS_GD32": {reflect.TypeOf(q.R_390_TLS_GD32), constant.MakeInt64(int64(q.R_390_TLS_GD32))}, + "R_390_TLS_GD64": {reflect.TypeOf(q.R_390_TLS_GD64), constant.MakeInt64(int64(q.R_390_TLS_GD64))}, + "R_390_TLS_GDCALL": {reflect.TypeOf(q.R_390_TLS_GDCALL), constant.MakeInt64(int64(q.R_390_TLS_GDCALL))}, + "R_390_TLS_GOTIE12": {reflect.TypeOf(q.R_390_TLS_GOTIE12), constant.MakeInt64(int64(q.R_390_TLS_GOTIE12))}, + "R_390_TLS_GOTIE20": {reflect.TypeOf(q.R_390_TLS_GOTIE20), constant.MakeInt64(int64(q.R_390_TLS_GOTIE20))}, + "R_390_TLS_GOTIE32": {reflect.TypeOf(q.R_390_TLS_GOTIE32), constant.MakeInt64(int64(q.R_390_TLS_GOTIE32))}, + "R_390_TLS_GOTIE64": {reflect.TypeOf(q.R_390_TLS_GOTIE64), constant.MakeInt64(int64(q.R_390_TLS_GOTIE64))}, + "R_390_TLS_IE32": {reflect.TypeOf(q.R_390_TLS_IE32), constant.MakeInt64(int64(q.R_390_TLS_IE32))}, + "R_390_TLS_IE64": {reflect.TypeOf(q.R_390_TLS_IE64), constant.MakeInt64(int64(q.R_390_TLS_IE64))}, + "R_390_TLS_IEENT": {reflect.TypeOf(q.R_390_TLS_IEENT), constant.MakeInt64(int64(q.R_390_TLS_IEENT))}, + "R_390_TLS_LDCALL": {reflect.TypeOf(q.R_390_TLS_LDCALL), constant.MakeInt64(int64(q.R_390_TLS_LDCALL))}, + "R_390_TLS_LDM32": {reflect.TypeOf(q.R_390_TLS_LDM32), constant.MakeInt64(int64(q.R_390_TLS_LDM32))}, + "R_390_TLS_LDM64": {reflect.TypeOf(q.R_390_TLS_LDM64), constant.MakeInt64(int64(q.R_390_TLS_LDM64))}, + "R_390_TLS_LDO32": {reflect.TypeOf(q.R_390_TLS_LDO32), constant.MakeInt64(int64(q.R_390_TLS_LDO32))}, + "R_390_TLS_LDO64": {reflect.TypeOf(q.R_390_TLS_LDO64), constant.MakeInt64(int64(q.R_390_TLS_LDO64))}, + "R_390_TLS_LE32": {reflect.TypeOf(q.R_390_TLS_LE32), constant.MakeInt64(int64(q.R_390_TLS_LE32))}, + "R_390_TLS_LE64": {reflect.TypeOf(q.R_390_TLS_LE64), constant.MakeInt64(int64(q.R_390_TLS_LE64))}, + "R_390_TLS_LOAD": {reflect.TypeOf(q.R_390_TLS_LOAD), constant.MakeInt64(int64(q.R_390_TLS_LOAD))}, + "R_390_TLS_TPOFF": {reflect.TypeOf(q.R_390_TLS_TPOFF), constant.MakeInt64(int64(q.R_390_TLS_TPOFF))}, + "R_AARCH64_ABS16": {reflect.TypeOf(q.R_AARCH64_ABS16), constant.MakeInt64(int64(q.R_AARCH64_ABS16))}, + "R_AARCH64_ABS32": {reflect.TypeOf(q.R_AARCH64_ABS32), constant.MakeInt64(int64(q.R_AARCH64_ABS32))}, + "R_AARCH64_ABS64": {reflect.TypeOf(q.R_AARCH64_ABS64), constant.MakeInt64(int64(q.R_AARCH64_ABS64))}, + "R_AARCH64_ADD_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_ADD_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_ADD_ABS_LO12_NC))}, + "R_AARCH64_ADR_GOT_PAGE": {reflect.TypeOf(q.R_AARCH64_ADR_GOT_PAGE), constant.MakeInt64(int64(q.R_AARCH64_ADR_GOT_PAGE))}, + "R_AARCH64_ADR_PREL_LO21": {reflect.TypeOf(q.R_AARCH64_ADR_PREL_LO21), constant.MakeInt64(int64(q.R_AARCH64_ADR_PREL_LO21))}, + "R_AARCH64_ADR_PREL_PG_HI21": {reflect.TypeOf(q.R_AARCH64_ADR_PREL_PG_HI21), constant.MakeInt64(int64(q.R_AARCH64_ADR_PREL_PG_HI21))}, + "R_AARCH64_ADR_PREL_PG_HI21_NC": {reflect.TypeOf(q.R_AARCH64_ADR_PREL_PG_HI21_NC), constant.MakeInt64(int64(q.R_AARCH64_ADR_PREL_PG_HI21_NC))}, + "R_AARCH64_CALL26": {reflect.TypeOf(q.R_AARCH64_CALL26), constant.MakeInt64(int64(q.R_AARCH64_CALL26))}, + "R_AARCH64_CONDBR19": {reflect.TypeOf(q.R_AARCH64_CONDBR19), constant.MakeInt64(int64(q.R_AARCH64_CONDBR19))}, + "R_AARCH64_COPY": {reflect.TypeOf(q.R_AARCH64_COPY), constant.MakeInt64(int64(q.R_AARCH64_COPY))}, + "R_AARCH64_GLOB_DAT": {reflect.TypeOf(q.R_AARCH64_GLOB_DAT), constant.MakeInt64(int64(q.R_AARCH64_GLOB_DAT))}, + "R_AARCH64_GOT_LD_PREL19": {reflect.TypeOf(q.R_AARCH64_GOT_LD_PREL19), constant.MakeInt64(int64(q.R_AARCH64_GOT_LD_PREL19))}, + "R_AARCH64_IRELATIVE": {reflect.TypeOf(q.R_AARCH64_IRELATIVE), constant.MakeInt64(int64(q.R_AARCH64_IRELATIVE))}, + "R_AARCH64_JUMP26": {reflect.TypeOf(q.R_AARCH64_JUMP26), constant.MakeInt64(int64(q.R_AARCH64_JUMP26))}, + "R_AARCH64_JUMP_SLOT": {reflect.TypeOf(q.R_AARCH64_JUMP_SLOT), constant.MakeInt64(int64(q.R_AARCH64_JUMP_SLOT))}, + "R_AARCH64_LD64_GOTOFF_LO15": {reflect.TypeOf(q.R_AARCH64_LD64_GOTOFF_LO15), constant.MakeInt64(int64(q.R_AARCH64_LD64_GOTOFF_LO15))}, + "R_AARCH64_LD64_GOTPAGE_LO15": {reflect.TypeOf(q.R_AARCH64_LD64_GOTPAGE_LO15), constant.MakeInt64(int64(q.R_AARCH64_LD64_GOTPAGE_LO15))}, + "R_AARCH64_LD64_GOT_LO12_NC": {reflect.TypeOf(q.R_AARCH64_LD64_GOT_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_LD64_GOT_LO12_NC))}, + "R_AARCH64_LDST128_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_LDST128_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_LDST128_ABS_LO12_NC))}, + "R_AARCH64_LDST16_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_LDST16_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_LDST16_ABS_LO12_NC))}, + "R_AARCH64_LDST32_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_LDST32_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_LDST32_ABS_LO12_NC))}, + "R_AARCH64_LDST64_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_LDST64_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_LDST64_ABS_LO12_NC))}, + "R_AARCH64_LDST8_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_LDST8_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_LDST8_ABS_LO12_NC))}, + "R_AARCH64_LD_PREL_LO19": {reflect.TypeOf(q.R_AARCH64_LD_PREL_LO19), constant.MakeInt64(int64(q.R_AARCH64_LD_PREL_LO19))}, + "R_AARCH64_MOVW_SABS_G0": {reflect.TypeOf(q.R_AARCH64_MOVW_SABS_G0), constant.MakeInt64(int64(q.R_AARCH64_MOVW_SABS_G0))}, + "R_AARCH64_MOVW_SABS_G1": {reflect.TypeOf(q.R_AARCH64_MOVW_SABS_G1), constant.MakeInt64(int64(q.R_AARCH64_MOVW_SABS_G1))}, + "R_AARCH64_MOVW_SABS_G2": {reflect.TypeOf(q.R_AARCH64_MOVW_SABS_G2), constant.MakeInt64(int64(q.R_AARCH64_MOVW_SABS_G2))}, + "R_AARCH64_MOVW_UABS_G0": {reflect.TypeOf(q.R_AARCH64_MOVW_UABS_G0), constant.MakeInt64(int64(q.R_AARCH64_MOVW_UABS_G0))}, + "R_AARCH64_MOVW_UABS_G0_NC": {reflect.TypeOf(q.R_AARCH64_MOVW_UABS_G0_NC), constant.MakeInt64(int64(q.R_AARCH64_MOVW_UABS_G0_NC))}, + "R_AARCH64_MOVW_UABS_G1": {reflect.TypeOf(q.R_AARCH64_MOVW_UABS_G1), constant.MakeInt64(int64(q.R_AARCH64_MOVW_UABS_G1))}, + "R_AARCH64_MOVW_UABS_G1_NC": {reflect.TypeOf(q.R_AARCH64_MOVW_UABS_G1_NC), constant.MakeInt64(int64(q.R_AARCH64_MOVW_UABS_G1_NC))}, + "R_AARCH64_MOVW_UABS_G2": {reflect.TypeOf(q.R_AARCH64_MOVW_UABS_G2), constant.MakeInt64(int64(q.R_AARCH64_MOVW_UABS_G2))}, + "R_AARCH64_MOVW_UABS_G2_NC": {reflect.TypeOf(q.R_AARCH64_MOVW_UABS_G2_NC), constant.MakeInt64(int64(q.R_AARCH64_MOVW_UABS_G2_NC))}, + "R_AARCH64_MOVW_UABS_G3": {reflect.TypeOf(q.R_AARCH64_MOVW_UABS_G3), constant.MakeInt64(int64(q.R_AARCH64_MOVW_UABS_G3))}, + "R_AARCH64_NONE": {reflect.TypeOf(q.R_AARCH64_NONE), constant.MakeInt64(int64(q.R_AARCH64_NONE))}, + "R_AARCH64_NULL": {reflect.TypeOf(q.R_AARCH64_NULL), constant.MakeInt64(int64(q.R_AARCH64_NULL))}, + "R_AARCH64_P32_ABS16": {reflect.TypeOf(q.R_AARCH64_P32_ABS16), constant.MakeInt64(int64(q.R_AARCH64_P32_ABS16))}, + "R_AARCH64_P32_ABS32": {reflect.TypeOf(q.R_AARCH64_P32_ABS32), constant.MakeInt64(int64(q.R_AARCH64_P32_ABS32))}, + "R_AARCH64_P32_ADD_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_ADD_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_ADD_ABS_LO12_NC))}, + "R_AARCH64_P32_ADR_GOT_PAGE": {reflect.TypeOf(q.R_AARCH64_P32_ADR_GOT_PAGE), constant.MakeInt64(int64(q.R_AARCH64_P32_ADR_GOT_PAGE))}, + "R_AARCH64_P32_ADR_PREL_LO21": {reflect.TypeOf(q.R_AARCH64_P32_ADR_PREL_LO21), constant.MakeInt64(int64(q.R_AARCH64_P32_ADR_PREL_LO21))}, + "R_AARCH64_P32_ADR_PREL_PG_HI21": {reflect.TypeOf(q.R_AARCH64_P32_ADR_PREL_PG_HI21), constant.MakeInt64(int64(q.R_AARCH64_P32_ADR_PREL_PG_HI21))}, + "R_AARCH64_P32_CALL26": {reflect.TypeOf(q.R_AARCH64_P32_CALL26), constant.MakeInt64(int64(q.R_AARCH64_P32_CALL26))}, + "R_AARCH64_P32_CONDBR19": {reflect.TypeOf(q.R_AARCH64_P32_CONDBR19), constant.MakeInt64(int64(q.R_AARCH64_P32_CONDBR19))}, + "R_AARCH64_P32_COPY": {reflect.TypeOf(q.R_AARCH64_P32_COPY), constant.MakeInt64(int64(q.R_AARCH64_P32_COPY))}, + "R_AARCH64_P32_GLOB_DAT": {reflect.TypeOf(q.R_AARCH64_P32_GLOB_DAT), constant.MakeInt64(int64(q.R_AARCH64_P32_GLOB_DAT))}, + "R_AARCH64_P32_GOT_LD_PREL19": {reflect.TypeOf(q.R_AARCH64_P32_GOT_LD_PREL19), constant.MakeInt64(int64(q.R_AARCH64_P32_GOT_LD_PREL19))}, + "R_AARCH64_P32_IRELATIVE": {reflect.TypeOf(q.R_AARCH64_P32_IRELATIVE), constant.MakeInt64(int64(q.R_AARCH64_P32_IRELATIVE))}, + "R_AARCH64_P32_JUMP26": {reflect.TypeOf(q.R_AARCH64_P32_JUMP26), constant.MakeInt64(int64(q.R_AARCH64_P32_JUMP26))}, + "R_AARCH64_P32_JUMP_SLOT": {reflect.TypeOf(q.R_AARCH64_P32_JUMP_SLOT), constant.MakeInt64(int64(q.R_AARCH64_P32_JUMP_SLOT))}, + "R_AARCH64_P32_LD32_GOT_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_LD32_GOT_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_LD32_GOT_LO12_NC))}, + "R_AARCH64_P32_LDST128_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_LDST128_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_LDST128_ABS_LO12_NC))}, + "R_AARCH64_P32_LDST16_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_LDST16_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_LDST16_ABS_LO12_NC))}, + "R_AARCH64_P32_LDST32_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_LDST32_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_LDST32_ABS_LO12_NC))}, + "R_AARCH64_P32_LDST64_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_LDST64_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_LDST64_ABS_LO12_NC))}, + "R_AARCH64_P32_LDST8_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_LDST8_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_LDST8_ABS_LO12_NC))}, + "R_AARCH64_P32_LD_PREL_LO19": {reflect.TypeOf(q.R_AARCH64_P32_LD_PREL_LO19), constant.MakeInt64(int64(q.R_AARCH64_P32_LD_PREL_LO19))}, + "R_AARCH64_P32_MOVW_SABS_G0": {reflect.TypeOf(q.R_AARCH64_P32_MOVW_SABS_G0), constant.MakeInt64(int64(q.R_AARCH64_P32_MOVW_SABS_G0))}, + "R_AARCH64_P32_MOVW_UABS_G0": {reflect.TypeOf(q.R_AARCH64_P32_MOVW_UABS_G0), constant.MakeInt64(int64(q.R_AARCH64_P32_MOVW_UABS_G0))}, + "R_AARCH64_P32_MOVW_UABS_G0_NC": {reflect.TypeOf(q.R_AARCH64_P32_MOVW_UABS_G0_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_MOVW_UABS_G0_NC))}, + "R_AARCH64_P32_MOVW_UABS_G1": {reflect.TypeOf(q.R_AARCH64_P32_MOVW_UABS_G1), constant.MakeInt64(int64(q.R_AARCH64_P32_MOVW_UABS_G1))}, + "R_AARCH64_P32_PREL16": {reflect.TypeOf(q.R_AARCH64_P32_PREL16), constant.MakeInt64(int64(q.R_AARCH64_P32_PREL16))}, + "R_AARCH64_P32_PREL32": {reflect.TypeOf(q.R_AARCH64_P32_PREL32), constant.MakeInt64(int64(q.R_AARCH64_P32_PREL32))}, + "R_AARCH64_P32_RELATIVE": {reflect.TypeOf(q.R_AARCH64_P32_RELATIVE), constant.MakeInt64(int64(q.R_AARCH64_P32_RELATIVE))}, + "R_AARCH64_P32_TLSDESC": {reflect.TypeOf(q.R_AARCH64_P32_TLSDESC), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSDESC))}, + "R_AARCH64_P32_TLSDESC_ADD_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_TLSDESC_ADD_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSDESC_ADD_LO12_NC))}, + "R_AARCH64_P32_TLSDESC_ADR_PAGE21": {reflect.TypeOf(q.R_AARCH64_P32_TLSDESC_ADR_PAGE21), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSDESC_ADR_PAGE21))}, + "R_AARCH64_P32_TLSDESC_ADR_PREL21": {reflect.TypeOf(q.R_AARCH64_P32_TLSDESC_ADR_PREL21), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSDESC_ADR_PREL21))}, + "R_AARCH64_P32_TLSDESC_CALL": {reflect.TypeOf(q.R_AARCH64_P32_TLSDESC_CALL), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSDESC_CALL))}, + "R_AARCH64_P32_TLSDESC_LD32_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_TLSDESC_LD32_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSDESC_LD32_LO12_NC))}, + "R_AARCH64_P32_TLSDESC_LD_PREL19": {reflect.TypeOf(q.R_AARCH64_P32_TLSDESC_LD_PREL19), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSDESC_LD_PREL19))}, + "R_AARCH64_P32_TLSGD_ADD_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_TLSGD_ADD_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSGD_ADD_LO12_NC))}, + "R_AARCH64_P32_TLSGD_ADR_PAGE21": {reflect.TypeOf(q.R_AARCH64_P32_TLSGD_ADR_PAGE21), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSGD_ADR_PAGE21))}, + "R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21": {reflect.TypeOf(q.R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21))}, + "R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC))}, + "R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19": {reflect.TypeOf(q.R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19))}, + "R_AARCH64_P32_TLSLE_ADD_TPREL_HI12": {reflect.TypeOf(q.R_AARCH64_P32_TLSLE_ADD_TPREL_HI12), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSLE_ADD_TPREL_HI12))}, + "R_AARCH64_P32_TLSLE_ADD_TPREL_LO12": {reflect.TypeOf(q.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12))}, + "R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC))}, + "R_AARCH64_P32_TLSLE_MOVW_TPREL_G0": {reflect.TypeOf(q.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0))}, + "R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC": {reflect.TypeOf(q.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC))}, + "R_AARCH64_P32_TLSLE_MOVW_TPREL_G1": {reflect.TypeOf(q.R_AARCH64_P32_TLSLE_MOVW_TPREL_G1), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSLE_MOVW_TPREL_G1))}, + "R_AARCH64_P32_TLS_DTPMOD": {reflect.TypeOf(q.R_AARCH64_P32_TLS_DTPMOD), constant.MakeInt64(int64(q.R_AARCH64_P32_TLS_DTPMOD))}, + "R_AARCH64_P32_TLS_DTPREL": {reflect.TypeOf(q.R_AARCH64_P32_TLS_DTPREL), constant.MakeInt64(int64(q.R_AARCH64_P32_TLS_DTPREL))}, + "R_AARCH64_P32_TLS_TPREL": {reflect.TypeOf(q.R_AARCH64_P32_TLS_TPREL), constant.MakeInt64(int64(q.R_AARCH64_P32_TLS_TPREL))}, + "R_AARCH64_P32_TSTBR14": {reflect.TypeOf(q.R_AARCH64_P32_TSTBR14), constant.MakeInt64(int64(q.R_AARCH64_P32_TSTBR14))}, + "R_AARCH64_PREL16": {reflect.TypeOf(q.R_AARCH64_PREL16), constant.MakeInt64(int64(q.R_AARCH64_PREL16))}, + "R_AARCH64_PREL32": {reflect.TypeOf(q.R_AARCH64_PREL32), constant.MakeInt64(int64(q.R_AARCH64_PREL32))}, + "R_AARCH64_PREL64": {reflect.TypeOf(q.R_AARCH64_PREL64), constant.MakeInt64(int64(q.R_AARCH64_PREL64))}, + "R_AARCH64_RELATIVE": {reflect.TypeOf(q.R_AARCH64_RELATIVE), constant.MakeInt64(int64(q.R_AARCH64_RELATIVE))}, + "R_AARCH64_TLSDESC": {reflect.TypeOf(q.R_AARCH64_TLSDESC), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC))}, + "R_AARCH64_TLSDESC_ADD": {reflect.TypeOf(q.R_AARCH64_TLSDESC_ADD), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_ADD))}, + "R_AARCH64_TLSDESC_ADD_LO12_NC": {reflect.TypeOf(q.R_AARCH64_TLSDESC_ADD_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_ADD_LO12_NC))}, + "R_AARCH64_TLSDESC_ADR_PAGE21": {reflect.TypeOf(q.R_AARCH64_TLSDESC_ADR_PAGE21), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_ADR_PAGE21))}, + "R_AARCH64_TLSDESC_ADR_PREL21": {reflect.TypeOf(q.R_AARCH64_TLSDESC_ADR_PREL21), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_ADR_PREL21))}, + "R_AARCH64_TLSDESC_CALL": {reflect.TypeOf(q.R_AARCH64_TLSDESC_CALL), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_CALL))}, + "R_AARCH64_TLSDESC_LD64_LO12_NC": {reflect.TypeOf(q.R_AARCH64_TLSDESC_LD64_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_LD64_LO12_NC))}, + "R_AARCH64_TLSDESC_LDR": {reflect.TypeOf(q.R_AARCH64_TLSDESC_LDR), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_LDR))}, + "R_AARCH64_TLSDESC_LD_PREL19": {reflect.TypeOf(q.R_AARCH64_TLSDESC_LD_PREL19), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_LD_PREL19))}, + "R_AARCH64_TLSDESC_OFF_G0_NC": {reflect.TypeOf(q.R_AARCH64_TLSDESC_OFF_G0_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_OFF_G0_NC))}, + "R_AARCH64_TLSDESC_OFF_G1": {reflect.TypeOf(q.R_AARCH64_TLSDESC_OFF_G1), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_OFF_G1))}, + "R_AARCH64_TLSGD_ADD_LO12_NC": {reflect.TypeOf(q.R_AARCH64_TLSGD_ADD_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSGD_ADD_LO12_NC))}, + "R_AARCH64_TLSGD_ADR_PAGE21": {reflect.TypeOf(q.R_AARCH64_TLSGD_ADR_PAGE21), constant.MakeInt64(int64(q.R_AARCH64_TLSGD_ADR_PAGE21))}, + "R_AARCH64_TLSGD_ADR_PREL21": {reflect.TypeOf(q.R_AARCH64_TLSGD_ADR_PREL21), constant.MakeInt64(int64(q.R_AARCH64_TLSGD_ADR_PREL21))}, + "R_AARCH64_TLSGD_MOVW_G0_NC": {reflect.TypeOf(q.R_AARCH64_TLSGD_MOVW_G0_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSGD_MOVW_G0_NC))}, + "R_AARCH64_TLSGD_MOVW_G1": {reflect.TypeOf(q.R_AARCH64_TLSGD_MOVW_G1), constant.MakeInt64(int64(q.R_AARCH64_TLSGD_MOVW_G1))}, + "R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21": {reflect.TypeOf(q.R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21), constant.MakeInt64(int64(q.R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21))}, + "R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC": {reflect.TypeOf(q.R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC))}, + "R_AARCH64_TLSIE_LD_GOTTPREL_PREL19": {reflect.TypeOf(q.R_AARCH64_TLSIE_LD_GOTTPREL_PREL19), constant.MakeInt64(int64(q.R_AARCH64_TLSIE_LD_GOTTPREL_PREL19))}, + "R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC": {reflect.TypeOf(q.R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC))}, + "R_AARCH64_TLSIE_MOVW_GOTTPREL_G1": {reflect.TypeOf(q.R_AARCH64_TLSIE_MOVW_GOTTPREL_G1), constant.MakeInt64(int64(q.R_AARCH64_TLSIE_MOVW_GOTTPREL_G1))}, + "R_AARCH64_TLSLD_ADR_PAGE21": {reflect.TypeOf(q.R_AARCH64_TLSLD_ADR_PAGE21), constant.MakeInt64(int64(q.R_AARCH64_TLSLD_ADR_PAGE21))}, + "R_AARCH64_TLSLD_ADR_PREL21": {reflect.TypeOf(q.R_AARCH64_TLSLD_ADR_PREL21), constant.MakeInt64(int64(q.R_AARCH64_TLSLD_ADR_PREL21))}, + "R_AARCH64_TLSLD_LDST128_DTPREL_LO12": {reflect.TypeOf(q.R_AARCH64_TLSLD_LDST128_DTPREL_LO12), constant.MakeInt64(int64(q.R_AARCH64_TLSLD_LDST128_DTPREL_LO12))}, + "R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC": {reflect.TypeOf(q.R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC))}, + "R_AARCH64_TLSLE_ADD_TPREL_HI12": {reflect.TypeOf(q.R_AARCH64_TLSLE_ADD_TPREL_HI12), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_ADD_TPREL_HI12))}, + "R_AARCH64_TLSLE_ADD_TPREL_LO12": {reflect.TypeOf(q.R_AARCH64_TLSLE_ADD_TPREL_LO12), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_ADD_TPREL_LO12))}, + "R_AARCH64_TLSLE_ADD_TPREL_LO12_NC": {reflect.TypeOf(q.R_AARCH64_TLSLE_ADD_TPREL_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_ADD_TPREL_LO12_NC))}, + "R_AARCH64_TLSLE_LDST128_TPREL_LO12": {reflect.TypeOf(q.R_AARCH64_TLSLE_LDST128_TPREL_LO12), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_LDST128_TPREL_LO12))}, + "R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC": {reflect.TypeOf(q.R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC))}, + "R_AARCH64_TLSLE_MOVW_TPREL_G0": {reflect.TypeOf(q.R_AARCH64_TLSLE_MOVW_TPREL_G0), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_MOVW_TPREL_G0))}, + "R_AARCH64_TLSLE_MOVW_TPREL_G0_NC": {reflect.TypeOf(q.R_AARCH64_TLSLE_MOVW_TPREL_G0_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_MOVW_TPREL_G0_NC))}, + "R_AARCH64_TLSLE_MOVW_TPREL_G1": {reflect.TypeOf(q.R_AARCH64_TLSLE_MOVW_TPREL_G1), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_MOVW_TPREL_G1))}, + "R_AARCH64_TLSLE_MOVW_TPREL_G1_NC": {reflect.TypeOf(q.R_AARCH64_TLSLE_MOVW_TPREL_G1_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_MOVW_TPREL_G1_NC))}, + "R_AARCH64_TLSLE_MOVW_TPREL_G2": {reflect.TypeOf(q.R_AARCH64_TLSLE_MOVW_TPREL_G2), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_MOVW_TPREL_G2))}, + "R_AARCH64_TLS_DTPMOD64": {reflect.TypeOf(q.R_AARCH64_TLS_DTPMOD64), constant.MakeInt64(int64(q.R_AARCH64_TLS_DTPMOD64))}, + "R_AARCH64_TLS_DTPREL64": {reflect.TypeOf(q.R_AARCH64_TLS_DTPREL64), constant.MakeInt64(int64(q.R_AARCH64_TLS_DTPREL64))}, + "R_AARCH64_TLS_TPREL64": {reflect.TypeOf(q.R_AARCH64_TLS_TPREL64), constant.MakeInt64(int64(q.R_AARCH64_TLS_TPREL64))}, + "R_AARCH64_TSTBR14": {reflect.TypeOf(q.R_AARCH64_TSTBR14), constant.MakeInt64(int64(q.R_AARCH64_TSTBR14))}, + "R_ALPHA_BRADDR": {reflect.TypeOf(q.R_ALPHA_BRADDR), constant.MakeInt64(int64(q.R_ALPHA_BRADDR))}, + "R_ALPHA_COPY": {reflect.TypeOf(q.R_ALPHA_COPY), constant.MakeInt64(int64(q.R_ALPHA_COPY))}, + "R_ALPHA_GLOB_DAT": {reflect.TypeOf(q.R_ALPHA_GLOB_DAT), constant.MakeInt64(int64(q.R_ALPHA_GLOB_DAT))}, + "R_ALPHA_GPDISP": {reflect.TypeOf(q.R_ALPHA_GPDISP), constant.MakeInt64(int64(q.R_ALPHA_GPDISP))}, + "R_ALPHA_GPREL32": {reflect.TypeOf(q.R_ALPHA_GPREL32), constant.MakeInt64(int64(q.R_ALPHA_GPREL32))}, + "R_ALPHA_GPRELHIGH": {reflect.TypeOf(q.R_ALPHA_GPRELHIGH), constant.MakeInt64(int64(q.R_ALPHA_GPRELHIGH))}, + "R_ALPHA_GPRELLOW": {reflect.TypeOf(q.R_ALPHA_GPRELLOW), constant.MakeInt64(int64(q.R_ALPHA_GPRELLOW))}, + "R_ALPHA_GPVALUE": {reflect.TypeOf(q.R_ALPHA_GPVALUE), constant.MakeInt64(int64(q.R_ALPHA_GPVALUE))}, + "R_ALPHA_HINT": {reflect.TypeOf(q.R_ALPHA_HINT), constant.MakeInt64(int64(q.R_ALPHA_HINT))}, + "R_ALPHA_IMMED_BR_HI32": {reflect.TypeOf(q.R_ALPHA_IMMED_BR_HI32), constant.MakeInt64(int64(q.R_ALPHA_IMMED_BR_HI32))}, + "R_ALPHA_IMMED_GP_16": {reflect.TypeOf(q.R_ALPHA_IMMED_GP_16), constant.MakeInt64(int64(q.R_ALPHA_IMMED_GP_16))}, + "R_ALPHA_IMMED_GP_HI32": {reflect.TypeOf(q.R_ALPHA_IMMED_GP_HI32), constant.MakeInt64(int64(q.R_ALPHA_IMMED_GP_HI32))}, + "R_ALPHA_IMMED_LO32": {reflect.TypeOf(q.R_ALPHA_IMMED_LO32), constant.MakeInt64(int64(q.R_ALPHA_IMMED_LO32))}, + "R_ALPHA_IMMED_SCN_HI32": {reflect.TypeOf(q.R_ALPHA_IMMED_SCN_HI32), constant.MakeInt64(int64(q.R_ALPHA_IMMED_SCN_HI32))}, + "R_ALPHA_JMP_SLOT": {reflect.TypeOf(q.R_ALPHA_JMP_SLOT), constant.MakeInt64(int64(q.R_ALPHA_JMP_SLOT))}, + "R_ALPHA_LITERAL": {reflect.TypeOf(q.R_ALPHA_LITERAL), constant.MakeInt64(int64(q.R_ALPHA_LITERAL))}, + "R_ALPHA_LITUSE": {reflect.TypeOf(q.R_ALPHA_LITUSE), constant.MakeInt64(int64(q.R_ALPHA_LITUSE))}, + "R_ALPHA_NONE": {reflect.TypeOf(q.R_ALPHA_NONE), constant.MakeInt64(int64(q.R_ALPHA_NONE))}, + "R_ALPHA_OP_PRSHIFT": {reflect.TypeOf(q.R_ALPHA_OP_PRSHIFT), constant.MakeInt64(int64(q.R_ALPHA_OP_PRSHIFT))}, + "R_ALPHA_OP_PSUB": {reflect.TypeOf(q.R_ALPHA_OP_PSUB), constant.MakeInt64(int64(q.R_ALPHA_OP_PSUB))}, + "R_ALPHA_OP_PUSH": {reflect.TypeOf(q.R_ALPHA_OP_PUSH), constant.MakeInt64(int64(q.R_ALPHA_OP_PUSH))}, + "R_ALPHA_OP_STORE": {reflect.TypeOf(q.R_ALPHA_OP_STORE), constant.MakeInt64(int64(q.R_ALPHA_OP_STORE))}, + "R_ALPHA_REFLONG": {reflect.TypeOf(q.R_ALPHA_REFLONG), constant.MakeInt64(int64(q.R_ALPHA_REFLONG))}, + "R_ALPHA_REFQUAD": {reflect.TypeOf(q.R_ALPHA_REFQUAD), constant.MakeInt64(int64(q.R_ALPHA_REFQUAD))}, + "R_ALPHA_RELATIVE": {reflect.TypeOf(q.R_ALPHA_RELATIVE), constant.MakeInt64(int64(q.R_ALPHA_RELATIVE))}, + "R_ALPHA_SREL16": {reflect.TypeOf(q.R_ALPHA_SREL16), constant.MakeInt64(int64(q.R_ALPHA_SREL16))}, + "R_ALPHA_SREL32": {reflect.TypeOf(q.R_ALPHA_SREL32), constant.MakeInt64(int64(q.R_ALPHA_SREL32))}, + "R_ALPHA_SREL64": {reflect.TypeOf(q.R_ALPHA_SREL64), constant.MakeInt64(int64(q.R_ALPHA_SREL64))}, + "R_ARM_ABS12": {reflect.TypeOf(q.R_ARM_ABS12), constant.MakeInt64(int64(q.R_ARM_ABS12))}, + "R_ARM_ABS16": {reflect.TypeOf(q.R_ARM_ABS16), constant.MakeInt64(int64(q.R_ARM_ABS16))}, + "R_ARM_ABS32": {reflect.TypeOf(q.R_ARM_ABS32), constant.MakeInt64(int64(q.R_ARM_ABS32))}, + "R_ARM_ABS32_NOI": {reflect.TypeOf(q.R_ARM_ABS32_NOI), constant.MakeInt64(int64(q.R_ARM_ABS32_NOI))}, + "R_ARM_ABS8": {reflect.TypeOf(q.R_ARM_ABS8), constant.MakeInt64(int64(q.R_ARM_ABS8))}, + "R_ARM_ALU_PCREL_15_8": {reflect.TypeOf(q.R_ARM_ALU_PCREL_15_8), constant.MakeInt64(int64(q.R_ARM_ALU_PCREL_15_8))}, + "R_ARM_ALU_PCREL_23_15": {reflect.TypeOf(q.R_ARM_ALU_PCREL_23_15), constant.MakeInt64(int64(q.R_ARM_ALU_PCREL_23_15))}, + "R_ARM_ALU_PCREL_7_0": {reflect.TypeOf(q.R_ARM_ALU_PCREL_7_0), constant.MakeInt64(int64(q.R_ARM_ALU_PCREL_7_0))}, + "R_ARM_ALU_PC_G0": {reflect.TypeOf(q.R_ARM_ALU_PC_G0), constant.MakeInt64(int64(q.R_ARM_ALU_PC_G0))}, + "R_ARM_ALU_PC_G0_NC": {reflect.TypeOf(q.R_ARM_ALU_PC_G0_NC), constant.MakeInt64(int64(q.R_ARM_ALU_PC_G0_NC))}, + "R_ARM_ALU_PC_G1": {reflect.TypeOf(q.R_ARM_ALU_PC_G1), constant.MakeInt64(int64(q.R_ARM_ALU_PC_G1))}, + "R_ARM_ALU_PC_G1_NC": {reflect.TypeOf(q.R_ARM_ALU_PC_G1_NC), constant.MakeInt64(int64(q.R_ARM_ALU_PC_G1_NC))}, + "R_ARM_ALU_PC_G2": {reflect.TypeOf(q.R_ARM_ALU_PC_G2), constant.MakeInt64(int64(q.R_ARM_ALU_PC_G2))}, + "R_ARM_ALU_SBREL_19_12_NC": {reflect.TypeOf(q.R_ARM_ALU_SBREL_19_12_NC), constant.MakeInt64(int64(q.R_ARM_ALU_SBREL_19_12_NC))}, + "R_ARM_ALU_SBREL_27_20_CK": {reflect.TypeOf(q.R_ARM_ALU_SBREL_27_20_CK), constant.MakeInt64(int64(q.R_ARM_ALU_SBREL_27_20_CK))}, + "R_ARM_ALU_SB_G0": {reflect.TypeOf(q.R_ARM_ALU_SB_G0), constant.MakeInt64(int64(q.R_ARM_ALU_SB_G0))}, + "R_ARM_ALU_SB_G0_NC": {reflect.TypeOf(q.R_ARM_ALU_SB_G0_NC), constant.MakeInt64(int64(q.R_ARM_ALU_SB_G0_NC))}, + "R_ARM_ALU_SB_G1": {reflect.TypeOf(q.R_ARM_ALU_SB_G1), constant.MakeInt64(int64(q.R_ARM_ALU_SB_G1))}, + "R_ARM_ALU_SB_G1_NC": {reflect.TypeOf(q.R_ARM_ALU_SB_G1_NC), constant.MakeInt64(int64(q.R_ARM_ALU_SB_G1_NC))}, + "R_ARM_ALU_SB_G2": {reflect.TypeOf(q.R_ARM_ALU_SB_G2), constant.MakeInt64(int64(q.R_ARM_ALU_SB_G2))}, + "R_ARM_AMP_VCALL9": {reflect.TypeOf(q.R_ARM_AMP_VCALL9), constant.MakeInt64(int64(q.R_ARM_AMP_VCALL9))}, + "R_ARM_BASE_ABS": {reflect.TypeOf(q.R_ARM_BASE_ABS), constant.MakeInt64(int64(q.R_ARM_BASE_ABS))}, + "R_ARM_CALL": {reflect.TypeOf(q.R_ARM_CALL), constant.MakeInt64(int64(q.R_ARM_CALL))}, + "R_ARM_COPY": {reflect.TypeOf(q.R_ARM_COPY), constant.MakeInt64(int64(q.R_ARM_COPY))}, + "R_ARM_GLOB_DAT": {reflect.TypeOf(q.R_ARM_GLOB_DAT), constant.MakeInt64(int64(q.R_ARM_GLOB_DAT))}, + "R_ARM_GNU_VTENTRY": {reflect.TypeOf(q.R_ARM_GNU_VTENTRY), constant.MakeInt64(int64(q.R_ARM_GNU_VTENTRY))}, + "R_ARM_GNU_VTINHERIT": {reflect.TypeOf(q.R_ARM_GNU_VTINHERIT), constant.MakeInt64(int64(q.R_ARM_GNU_VTINHERIT))}, + "R_ARM_GOT32": {reflect.TypeOf(q.R_ARM_GOT32), constant.MakeInt64(int64(q.R_ARM_GOT32))}, + "R_ARM_GOTOFF": {reflect.TypeOf(q.R_ARM_GOTOFF), constant.MakeInt64(int64(q.R_ARM_GOTOFF))}, + "R_ARM_GOTOFF12": {reflect.TypeOf(q.R_ARM_GOTOFF12), constant.MakeInt64(int64(q.R_ARM_GOTOFF12))}, + "R_ARM_GOTPC": {reflect.TypeOf(q.R_ARM_GOTPC), constant.MakeInt64(int64(q.R_ARM_GOTPC))}, + "R_ARM_GOTRELAX": {reflect.TypeOf(q.R_ARM_GOTRELAX), constant.MakeInt64(int64(q.R_ARM_GOTRELAX))}, + "R_ARM_GOT_ABS": {reflect.TypeOf(q.R_ARM_GOT_ABS), constant.MakeInt64(int64(q.R_ARM_GOT_ABS))}, + "R_ARM_GOT_BREL12": {reflect.TypeOf(q.R_ARM_GOT_BREL12), constant.MakeInt64(int64(q.R_ARM_GOT_BREL12))}, + "R_ARM_GOT_PREL": {reflect.TypeOf(q.R_ARM_GOT_PREL), constant.MakeInt64(int64(q.R_ARM_GOT_PREL))}, + "R_ARM_IRELATIVE": {reflect.TypeOf(q.R_ARM_IRELATIVE), constant.MakeInt64(int64(q.R_ARM_IRELATIVE))}, + "R_ARM_JUMP24": {reflect.TypeOf(q.R_ARM_JUMP24), constant.MakeInt64(int64(q.R_ARM_JUMP24))}, + "R_ARM_JUMP_SLOT": {reflect.TypeOf(q.R_ARM_JUMP_SLOT), constant.MakeInt64(int64(q.R_ARM_JUMP_SLOT))}, + "R_ARM_LDC_PC_G0": {reflect.TypeOf(q.R_ARM_LDC_PC_G0), constant.MakeInt64(int64(q.R_ARM_LDC_PC_G0))}, + "R_ARM_LDC_PC_G1": {reflect.TypeOf(q.R_ARM_LDC_PC_G1), constant.MakeInt64(int64(q.R_ARM_LDC_PC_G1))}, + "R_ARM_LDC_PC_G2": {reflect.TypeOf(q.R_ARM_LDC_PC_G2), constant.MakeInt64(int64(q.R_ARM_LDC_PC_G2))}, + "R_ARM_LDC_SB_G0": {reflect.TypeOf(q.R_ARM_LDC_SB_G0), constant.MakeInt64(int64(q.R_ARM_LDC_SB_G0))}, + "R_ARM_LDC_SB_G1": {reflect.TypeOf(q.R_ARM_LDC_SB_G1), constant.MakeInt64(int64(q.R_ARM_LDC_SB_G1))}, + "R_ARM_LDC_SB_G2": {reflect.TypeOf(q.R_ARM_LDC_SB_G2), constant.MakeInt64(int64(q.R_ARM_LDC_SB_G2))}, + "R_ARM_LDRS_PC_G0": {reflect.TypeOf(q.R_ARM_LDRS_PC_G0), constant.MakeInt64(int64(q.R_ARM_LDRS_PC_G0))}, + "R_ARM_LDRS_PC_G1": {reflect.TypeOf(q.R_ARM_LDRS_PC_G1), constant.MakeInt64(int64(q.R_ARM_LDRS_PC_G1))}, + "R_ARM_LDRS_PC_G2": {reflect.TypeOf(q.R_ARM_LDRS_PC_G2), constant.MakeInt64(int64(q.R_ARM_LDRS_PC_G2))}, + "R_ARM_LDRS_SB_G0": {reflect.TypeOf(q.R_ARM_LDRS_SB_G0), constant.MakeInt64(int64(q.R_ARM_LDRS_SB_G0))}, + "R_ARM_LDRS_SB_G1": {reflect.TypeOf(q.R_ARM_LDRS_SB_G1), constant.MakeInt64(int64(q.R_ARM_LDRS_SB_G1))}, + "R_ARM_LDRS_SB_G2": {reflect.TypeOf(q.R_ARM_LDRS_SB_G2), constant.MakeInt64(int64(q.R_ARM_LDRS_SB_G2))}, + "R_ARM_LDR_PC_G1": {reflect.TypeOf(q.R_ARM_LDR_PC_G1), constant.MakeInt64(int64(q.R_ARM_LDR_PC_G1))}, + "R_ARM_LDR_PC_G2": {reflect.TypeOf(q.R_ARM_LDR_PC_G2), constant.MakeInt64(int64(q.R_ARM_LDR_PC_G2))}, + "R_ARM_LDR_SBREL_11_10_NC": {reflect.TypeOf(q.R_ARM_LDR_SBREL_11_10_NC), constant.MakeInt64(int64(q.R_ARM_LDR_SBREL_11_10_NC))}, + "R_ARM_LDR_SB_G0": {reflect.TypeOf(q.R_ARM_LDR_SB_G0), constant.MakeInt64(int64(q.R_ARM_LDR_SB_G0))}, + "R_ARM_LDR_SB_G1": {reflect.TypeOf(q.R_ARM_LDR_SB_G1), constant.MakeInt64(int64(q.R_ARM_LDR_SB_G1))}, + "R_ARM_LDR_SB_G2": {reflect.TypeOf(q.R_ARM_LDR_SB_G2), constant.MakeInt64(int64(q.R_ARM_LDR_SB_G2))}, + "R_ARM_ME_TOO": {reflect.TypeOf(q.R_ARM_ME_TOO), constant.MakeInt64(int64(q.R_ARM_ME_TOO))}, + "R_ARM_MOVT_ABS": {reflect.TypeOf(q.R_ARM_MOVT_ABS), constant.MakeInt64(int64(q.R_ARM_MOVT_ABS))}, + "R_ARM_MOVT_BREL": {reflect.TypeOf(q.R_ARM_MOVT_BREL), constant.MakeInt64(int64(q.R_ARM_MOVT_BREL))}, + "R_ARM_MOVT_PREL": {reflect.TypeOf(q.R_ARM_MOVT_PREL), constant.MakeInt64(int64(q.R_ARM_MOVT_PREL))}, + "R_ARM_MOVW_ABS_NC": {reflect.TypeOf(q.R_ARM_MOVW_ABS_NC), constant.MakeInt64(int64(q.R_ARM_MOVW_ABS_NC))}, + "R_ARM_MOVW_BREL": {reflect.TypeOf(q.R_ARM_MOVW_BREL), constant.MakeInt64(int64(q.R_ARM_MOVW_BREL))}, + "R_ARM_MOVW_BREL_NC": {reflect.TypeOf(q.R_ARM_MOVW_BREL_NC), constant.MakeInt64(int64(q.R_ARM_MOVW_BREL_NC))}, + "R_ARM_MOVW_PREL_NC": {reflect.TypeOf(q.R_ARM_MOVW_PREL_NC), constant.MakeInt64(int64(q.R_ARM_MOVW_PREL_NC))}, + "R_ARM_NONE": {reflect.TypeOf(q.R_ARM_NONE), constant.MakeInt64(int64(q.R_ARM_NONE))}, + "R_ARM_PC13": {reflect.TypeOf(q.R_ARM_PC13), constant.MakeInt64(int64(q.R_ARM_PC13))}, + "R_ARM_PC24": {reflect.TypeOf(q.R_ARM_PC24), constant.MakeInt64(int64(q.R_ARM_PC24))}, + "R_ARM_PLT32": {reflect.TypeOf(q.R_ARM_PLT32), constant.MakeInt64(int64(q.R_ARM_PLT32))}, + "R_ARM_PLT32_ABS": {reflect.TypeOf(q.R_ARM_PLT32_ABS), constant.MakeInt64(int64(q.R_ARM_PLT32_ABS))}, + "R_ARM_PREL31": {reflect.TypeOf(q.R_ARM_PREL31), constant.MakeInt64(int64(q.R_ARM_PREL31))}, + "R_ARM_PRIVATE_0": {reflect.TypeOf(q.R_ARM_PRIVATE_0), constant.MakeInt64(int64(q.R_ARM_PRIVATE_0))}, + "R_ARM_PRIVATE_1": {reflect.TypeOf(q.R_ARM_PRIVATE_1), constant.MakeInt64(int64(q.R_ARM_PRIVATE_1))}, + "R_ARM_PRIVATE_10": {reflect.TypeOf(q.R_ARM_PRIVATE_10), constant.MakeInt64(int64(q.R_ARM_PRIVATE_10))}, + "R_ARM_PRIVATE_11": {reflect.TypeOf(q.R_ARM_PRIVATE_11), constant.MakeInt64(int64(q.R_ARM_PRIVATE_11))}, + "R_ARM_PRIVATE_12": {reflect.TypeOf(q.R_ARM_PRIVATE_12), constant.MakeInt64(int64(q.R_ARM_PRIVATE_12))}, + "R_ARM_PRIVATE_13": {reflect.TypeOf(q.R_ARM_PRIVATE_13), constant.MakeInt64(int64(q.R_ARM_PRIVATE_13))}, + "R_ARM_PRIVATE_14": {reflect.TypeOf(q.R_ARM_PRIVATE_14), constant.MakeInt64(int64(q.R_ARM_PRIVATE_14))}, + "R_ARM_PRIVATE_15": {reflect.TypeOf(q.R_ARM_PRIVATE_15), constant.MakeInt64(int64(q.R_ARM_PRIVATE_15))}, + "R_ARM_PRIVATE_2": {reflect.TypeOf(q.R_ARM_PRIVATE_2), constant.MakeInt64(int64(q.R_ARM_PRIVATE_2))}, + "R_ARM_PRIVATE_3": {reflect.TypeOf(q.R_ARM_PRIVATE_3), constant.MakeInt64(int64(q.R_ARM_PRIVATE_3))}, + "R_ARM_PRIVATE_4": {reflect.TypeOf(q.R_ARM_PRIVATE_4), constant.MakeInt64(int64(q.R_ARM_PRIVATE_4))}, + "R_ARM_PRIVATE_5": {reflect.TypeOf(q.R_ARM_PRIVATE_5), constant.MakeInt64(int64(q.R_ARM_PRIVATE_5))}, + "R_ARM_PRIVATE_6": {reflect.TypeOf(q.R_ARM_PRIVATE_6), constant.MakeInt64(int64(q.R_ARM_PRIVATE_6))}, + "R_ARM_PRIVATE_7": {reflect.TypeOf(q.R_ARM_PRIVATE_7), constant.MakeInt64(int64(q.R_ARM_PRIVATE_7))}, + "R_ARM_PRIVATE_8": {reflect.TypeOf(q.R_ARM_PRIVATE_8), constant.MakeInt64(int64(q.R_ARM_PRIVATE_8))}, + "R_ARM_PRIVATE_9": {reflect.TypeOf(q.R_ARM_PRIVATE_9), constant.MakeInt64(int64(q.R_ARM_PRIVATE_9))}, + "R_ARM_RABS32": {reflect.TypeOf(q.R_ARM_RABS32), constant.MakeInt64(int64(q.R_ARM_RABS32))}, + "R_ARM_RBASE": {reflect.TypeOf(q.R_ARM_RBASE), constant.MakeInt64(int64(q.R_ARM_RBASE))}, + "R_ARM_REL32": {reflect.TypeOf(q.R_ARM_REL32), constant.MakeInt64(int64(q.R_ARM_REL32))}, + "R_ARM_REL32_NOI": {reflect.TypeOf(q.R_ARM_REL32_NOI), constant.MakeInt64(int64(q.R_ARM_REL32_NOI))}, + "R_ARM_RELATIVE": {reflect.TypeOf(q.R_ARM_RELATIVE), constant.MakeInt64(int64(q.R_ARM_RELATIVE))}, + "R_ARM_RPC24": {reflect.TypeOf(q.R_ARM_RPC24), constant.MakeInt64(int64(q.R_ARM_RPC24))}, + "R_ARM_RREL32": {reflect.TypeOf(q.R_ARM_RREL32), constant.MakeInt64(int64(q.R_ARM_RREL32))}, + "R_ARM_RSBREL32": {reflect.TypeOf(q.R_ARM_RSBREL32), constant.MakeInt64(int64(q.R_ARM_RSBREL32))}, + "R_ARM_RXPC25": {reflect.TypeOf(q.R_ARM_RXPC25), constant.MakeInt64(int64(q.R_ARM_RXPC25))}, + "R_ARM_SBREL31": {reflect.TypeOf(q.R_ARM_SBREL31), constant.MakeInt64(int64(q.R_ARM_SBREL31))}, + "R_ARM_SBREL32": {reflect.TypeOf(q.R_ARM_SBREL32), constant.MakeInt64(int64(q.R_ARM_SBREL32))}, + "R_ARM_SWI24": {reflect.TypeOf(q.R_ARM_SWI24), constant.MakeInt64(int64(q.R_ARM_SWI24))}, + "R_ARM_TARGET1": {reflect.TypeOf(q.R_ARM_TARGET1), constant.MakeInt64(int64(q.R_ARM_TARGET1))}, + "R_ARM_TARGET2": {reflect.TypeOf(q.R_ARM_TARGET2), constant.MakeInt64(int64(q.R_ARM_TARGET2))}, + "R_ARM_THM_ABS5": {reflect.TypeOf(q.R_ARM_THM_ABS5), constant.MakeInt64(int64(q.R_ARM_THM_ABS5))}, + "R_ARM_THM_ALU_ABS_G0_NC": {reflect.TypeOf(q.R_ARM_THM_ALU_ABS_G0_NC), constant.MakeInt64(int64(q.R_ARM_THM_ALU_ABS_G0_NC))}, + "R_ARM_THM_ALU_ABS_G1_NC": {reflect.TypeOf(q.R_ARM_THM_ALU_ABS_G1_NC), constant.MakeInt64(int64(q.R_ARM_THM_ALU_ABS_G1_NC))}, + "R_ARM_THM_ALU_ABS_G2_NC": {reflect.TypeOf(q.R_ARM_THM_ALU_ABS_G2_NC), constant.MakeInt64(int64(q.R_ARM_THM_ALU_ABS_G2_NC))}, + "R_ARM_THM_ALU_ABS_G3": {reflect.TypeOf(q.R_ARM_THM_ALU_ABS_G3), constant.MakeInt64(int64(q.R_ARM_THM_ALU_ABS_G3))}, + "R_ARM_THM_ALU_PREL_11_0": {reflect.TypeOf(q.R_ARM_THM_ALU_PREL_11_0), constant.MakeInt64(int64(q.R_ARM_THM_ALU_PREL_11_0))}, + "R_ARM_THM_GOT_BREL12": {reflect.TypeOf(q.R_ARM_THM_GOT_BREL12), constant.MakeInt64(int64(q.R_ARM_THM_GOT_BREL12))}, + "R_ARM_THM_JUMP11": {reflect.TypeOf(q.R_ARM_THM_JUMP11), constant.MakeInt64(int64(q.R_ARM_THM_JUMP11))}, + "R_ARM_THM_JUMP19": {reflect.TypeOf(q.R_ARM_THM_JUMP19), constant.MakeInt64(int64(q.R_ARM_THM_JUMP19))}, + "R_ARM_THM_JUMP24": {reflect.TypeOf(q.R_ARM_THM_JUMP24), constant.MakeInt64(int64(q.R_ARM_THM_JUMP24))}, + "R_ARM_THM_JUMP6": {reflect.TypeOf(q.R_ARM_THM_JUMP6), constant.MakeInt64(int64(q.R_ARM_THM_JUMP6))}, + "R_ARM_THM_JUMP8": {reflect.TypeOf(q.R_ARM_THM_JUMP8), constant.MakeInt64(int64(q.R_ARM_THM_JUMP8))}, + "R_ARM_THM_MOVT_ABS": {reflect.TypeOf(q.R_ARM_THM_MOVT_ABS), constant.MakeInt64(int64(q.R_ARM_THM_MOVT_ABS))}, + "R_ARM_THM_MOVT_BREL": {reflect.TypeOf(q.R_ARM_THM_MOVT_BREL), constant.MakeInt64(int64(q.R_ARM_THM_MOVT_BREL))}, + "R_ARM_THM_MOVT_PREL": {reflect.TypeOf(q.R_ARM_THM_MOVT_PREL), constant.MakeInt64(int64(q.R_ARM_THM_MOVT_PREL))}, + "R_ARM_THM_MOVW_ABS_NC": {reflect.TypeOf(q.R_ARM_THM_MOVW_ABS_NC), constant.MakeInt64(int64(q.R_ARM_THM_MOVW_ABS_NC))}, + "R_ARM_THM_MOVW_BREL": {reflect.TypeOf(q.R_ARM_THM_MOVW_BREL), constant.MakeInt64(int64(q.R_ARM_THM_MOVW_BREL))}, + "R_ARM_THM_MOVW_BREL_NC": {reflect.TypeOf(q.R_ARM_THM_MOVW_BREL_NC), constant.MakeInt64(int64(q.R_ARM_THM_MOVW_BREL_NC))}, + "R_ARM_THM_MOVW_PREL_NC": {reflect.TypeOf(q.R_ARM_THM_MOVW_PREL_NC), constant.MakeInt64(int64(q.R_ARM_THM_MOVW_PREL_NC))}, + "R_ARM_THM_PC12": {reflect.TypeOf(q.R_ARM_THM_PC12), constant.MakeInt64(int64(q.R_ARM_THM_PC12))}, + "R_ARM_THM_PC22": {reflect.TypeOf(q.R_ARM_THM_PC22), constant.MakeInt64(int64(q.R_ARM_THM_PC22))}, + "R_ARM_THM_PC8": {reflect.TypeOf(q.R_ARM_THM_PC8), constant.MakeInt64(int64(q.R_ARM_THM_PC8))}, + "R_ARM_THM_RPC22": {reflect.TypeOf(q.R_ARM_THM_RPC22), constant.MakeInt64(int64(q.R_ARM_THM_RPC22))}, + "R_ARM_THM_SWI8": {reflect.TypeOf(q.R_ARM_THM_SWI8), constant.MakeInt64(int64(q.R_ARM_THM_SWI8))}, + "R_ARM_THM_TLS_CALL": {reflect.TypeOf(q.R_ARM_THM_TLS_CALL), constant.MakeInt64(int64(q.R_ARM_THM_TLS_CALL))}, + "R_ARM_THM_TLS_DESCSEQ16": {reflect.TypeOf(q.R_ARM_THM_TLS_DESCSEQ16), constant.MakeInt64(int64(q.R_ARM_THM_TLS_DESCSEQ16))}, + "R_ARM_THM_TLS_DESCSEQ32": {reflect.TypeOf(q.R_ARM_THM_TLS_DESCSEQ32), constant.MakeInt64(int64(q.R_ARM_THM_TLS_DESCSEQ32))}, + "R_ARM_THM_XPC22": {reflect.TypeOf(q.R_ARM_THM_XPC22), constant.MakeInt64(int64(q.R_ARM_THM_XPC22))}, + "R_ARM_TLS_CALL": {reflect.TypeOf(q.R_ARM_TLS_CALL), constant.MakeInt64(int64(q.R_ARM_TLS_CALL))}, + "R_ARM_TLS_DESCSEQ": {reflect.TypeOf(q.R_ARM_TLS_DESCSEQ), constant.MakeInt64(int64(q.R_ARM_TLS_DESCSEQ))}, + "R_ARM_TLS_DTPMOD32": {reflect.TypeOf(q.R_ARM_TLS_DTPMOD32), constant.MakeInt64(int64(q.R_ARM_TLS_DTPMOD32))}, + "R_ARM_TLS_DTPOFF32": {reflect.TypeOf(q.R_ARM_TLS_DTPOFF32), constant.MakeInt64(int64(q.R_ARM_TLS_DTPOFF32))}, + "R_ARM_TLS_GD32": {reflect.TypeOf(q.R_ARM_TLS_GD32), constant.MakeInt64(int64(q.R_ARM_TLS_GD32))}, + "R_ARM_TLS_GOTDESC": {reflect.TypeOf(q.R_ARM_TLS_GOTDESC), constant.MakeInt64(int64(q.R_ARM_TLS_GOTDESC))}, + "R_ARM_TLS_IE12GP": {reflect.TypeOf(q.R_ARM_TLS_IE12GP), constant.MakeInt64(int64(q.R_ARM_TLS_IE12GP))}, + "R_ARM_TLS_IE32": {reflect.TypeOf(q.R_ARM_TLS_IE32), constant.MakeInt64(int64(q.R_ARM_TLS_IE32))}, + "R_ARM_TLS_LDM32": {reflect.TypeOf(q.R_ARM_TLS_LDM32), constant.MakeInt64(int64(q.R_ARM_TLS_LDM32))}, + "R_ARM_TLS_LDO12": {reflect.TypeOf(q.R_ARM_TLS_LDO12), constant.MakeInt64(int64(q.R_ARM_TLS_LDO12))}, + "R_ARM_TLS_LDO32": {reflect.TypeOf(q.R_ARM_TLS_LDO32), constant.MakeInt64(int64(q.R_ARM_TLS_LDO32))}, + "R_ARM_TLS_LE12": {reflect.TypeOf(q.R_ARM_TLS_LE12), constant.MakeInt64(int64(q.R_ARM_TLS_LE12))}, + "R_ARM_TLS_LE32": {reflect.TypeOf(q.R_ARM_TLS_LE32), constant.MakeInt64(int64(q.R_ARM_TLS_LE32))}, + "R_ARM_TLS_TPOFF32": {reflect.TypeOf(q.R_ARM_TLS_TPOFF32), constant.MakeInt64(int64(q.R_ARM_TLS_TPOFF32))}, + "R_ARM_V4BX": {reflect.TypeOf(q.R_ARM_V4BX), constant.MakeInt64(int64(q.R_ARM_V4BX))}, + "R_ARM_XPC25": {reflect.TypeOf(q.R_ARM_XPC25), constant.MakeInt64(int64(q.R_ARM_XPC25))}, + "R_LARCH_32": {reflect.TypeOf(q.R_LARCH_32), constant.MakeInt64(int64(q.R_LARCH_32))}, + "R_LARCH_32_PCREL": {reflect.TypeOf(q.R_LARCH_32_PCREL), constant.MakeInt64(int64(q.R_LARCH_32_PCREL))}, + "R_LARCH_64": {reflect.TypeOf(q.R_LARCH_64), constant.MakeInt64(int64(q.R_LARCH_64))}, + "R_LARCH_64_PCREL": {reflect.TypeOf(q.R_LARCH_64_PCREL), constant.MakeInt64(int64(q.R_LARCH_64_PCREL))}, + "R_LARCH_ABS64_HI12": {reflect.TypeOf(q.R_LARCH_ABS64_HI12), constant.MakeInt64(int64(q.R_LARCH_ABS64_HI12))}, + "R_LARCH_ABS64_LO20": {reflect.TypeOf(q.R_LARCH_ABS64_LO20), constant.MakeInt64(int64(q.R_LARCH_ABS64_LO20))}, + "R_LARCH_ABS_HI20": {reflect.TypeOf(q.R_LARCH_ABS_HI20), constant.MakeInt64(int64(q.R_LARCH_ABS_HI20))}, + "R_LARCH_ABS_LO12": {reflect.TypeOf(q.R_LARCH_ABS_LO12), constant.MakeInt64(int64(q.R_LARCH_ABS_LO12))}, + "R_LARCH_ADD16": {reflect.TypeOf(q.R_LARCH_ADD16), constant.MakeInt64(int64(q.R_LARCH_ADD16))}, + "R_LARCH_ADD24": {reflect.TypeOf(q.R_LARCH_ADD24), constant.MakeInt64(int64(q.R_LARCH_ADD24))}, + "R_LARCH_ADD32": {reflect.TypeOf(q.R_LARCH_ADD32), constant.MakeInt64(int64(q.R_LARCH_ADD32))}, + "R_LARCH_ADD6": {reflect.TypeOf(q.R_LARCH_ADD6), constant.MakeInt64(int64(q.R_LARCH_ADD6))}, + "R_LARCH_ADD64": {reflect.TypeOf(q.R_LARCH_ADD64), constant.MakeInt64(int64(q.R_LARCH_ADD64))}, + "R_LARCH_ADD8": {reflect.TypeOf(q.R_LARCH_ADD8), constant.MakeInt64(int64(q.R_LARCH_ADD8))}, + "R_LARCH_ADD_ULEB128": {reflect.TypeOf(q.R_LARCH_ADD_ULEB128), constant.MakeInt64(int64(q.R_LARCH_ADD_ULEB128))}, + "R_LARCH_ALIGN": {reflect.TypeOf(q.R_LARCH_ALIGN), constant.MakeInt64(int64(q.R_LARCH_ALIGN))}, + "R_LARCH_B16": {reflect.TypeOf(q.R_LARCH_B16), constant.MakeInt64(int64(q.R_LARCH_B16))}, + "R_LARCH_B21": {reflect.TypeOf(q.R_LARCH_B21), constant.MakeInt64(int64(q.R_LARCH_B21))}, + "R_LARCH_B26": {reflect.TypeOf(q.R_LARCH_B26), constant.MakeInt64(int64(q.R_LARCH_B26))}, + "R_LARCH_CFA": {reflect.TypeOf(q.R_LARCH_CFA), constant.MakeInt64(int64(q.R_LARCH_CFA))}, + "R_LARCH_COPY": {reflect.TypeOf(q.R_LARCH_COPY), constant.MakeInt64(int64(q.R_LARCH_COPY))}, + "R_LARCH_DELETE": {reflect.TypeOf(q.R_LARCH_DELETE), constant.MakeInt64(int64(q.R_LARCH_DELETE))}, + "R_LARCH_GNU_VTENTRY": {reflect.TypeOf(q.R_LARCH_GNU_VTENTRY), constant.MakeInt64(int64(q.R_LARCH_GNU_VTENTRY))}, + "R_LARCH_GNU_VTINHERIT": {reflect.TypeOf(q.R_LARCH_GNU_VTINHERIT), constant.MakeInt64(int64(q.R_LARCH_GNU_VTINHERIT))}, + "R_LARCH_GOT64_HI12": {reflect.TypeOf(q.R_LARCH_GOT64_HI12), constant.MakeInt64(int64(q.R_LARCH_GOT64_HI12))}, + "R_LARCH_GOT64_LO20": {reflect.TypeOf(q.R_LARCH_GOT64_LO20), constant.MakeInt64(int64(q.R_LARCH_GOT64_LO20))}, + "R_LARCH_GOT64_PC_HI12": {reflect.TypeOf(q.R_LARCH_GOT64_PC_HI12), constant.MakeInt64(int64(q.R_LARCH_GOT64_PC_HI12))}, + "R_LARCH_GOT64_PC_LO20": {reflect.TypeOf(q.R_LARCH_GOT64_PC_LO20), constant.MakeInt64(int64(q.R_LARCH_GOT64_PC_LO20))}, + "R_LARCH_GOT_HI20": {reflect.TypeOf(q.R_LARCH_GOT_HI20), constant.MakeInt64(int64(q.R_LARCH_GOT_HI20))}, + "R_LARCH_GOT_LO12": {reflect.TypeOf(q.R_LARCH_GOT_LO12), constant.MakeInt64(int64(q.R_LARCH_GOT_LO12))}, + "R_LARCH_GOT_PC_HI20": {reflect.TypeOf(q.R_LARCH_GOT_PC_HI20), constant.MakeInt64(int64(q.R_LARCH_GOT_PC_HI20))}, + "R_LARCH_GOT_PC_LO12": {reflect.TypeOf(q.R_LARCH_GOT_PC_LO12), constant.MakeInt64(int64(q.R_LARCH_GOT_PC_LO12))}, + "R_LARCH_IRELATIVE": {reflect.TypeOf(q.R_LARCH_IRELATIVE), constant.MakeInt64(int64(q.R_LARCH_IRELATIVE))}, + "R_LARCH_JUMP_SLOT": {reflect.TypeOf(q.R_LARCH_JUMP_SLOT), constant.MakeInt64(int64(q.R_LARCH_JUMP_SLOT))}, + "R_LARCH_MARK_LA": {reflect.TypeOf(q.R_LARCH_MARK_LA), constant.MakeInt64(int64(q.R_LARCH_MARK_LA))}, + "R_LARCH_MARK_PCREL": {reflect.TypeOf(q.R_LARCH_MARK_PCREL), constant.MakeInt64(int64(q.R_LARCH_MARK_PCREL))}, + "R_LARCH_NONE": {reflect.TypeOf(q.R_LARCH_NONE), constant.MakeInt64(int64(q.R_LARCH_NONE))}, + "R_LARCH_PCALA64_HI12": {reflect.TypeOf(q.R_LARCH_PCALA64_HI12), constant.MakeInt64(int64(q.R_LARCH_PCALA64_HI12))}, + "R_LARCH_PCALA64_LO20": {reflect.TypeOf(q.R_LARCH_PCALA64_LO20), constant.MakeInt64(int64(q.R_LARCH_PCALA64_LO20))}, + "R_LARCH_PCALA_HI20": {reflect.TypeOf(q.R_LARCH_PCALA_HI20), constant.MakeInt64(int64(q.R_LARCH_PCALA_HI20))}, + "R_LARCH_PCALA_LO12": {reflect.TypeOf(q.R_LARCH_PCALA_LO12), constant.MakeInt64(int64(q.R_LARCH_PCALA_LO12))}, + "R_LARCH_PCREL20_S2": {reflect.TypeOf(q.R_LARCH_PCREL20_S2), constant.MakeInt64(int64(q.R_LARCH_PCREL20_S2))}, + "R_LARCH_RELATIVE": {reflect.TypeOf(q.R_LARCH_RELATIVE), constant.MakeInt64(int64(q.R_LARCH_RELATIVE))}, + "R_LARCH_RELAX": {reflect.TypeOf(q.R_LARCH_RELAX), constant.MakeInt64(int64(q.R_LARCH_RELAX))}, + "R_LARCH_SOP_ADD": {reflect.TypeOf(q.R_LARCH_SOP_ADD), constant.MakeInt64(int64(q.R_LARCH_SOP_ADD))}, + "R_LARCH_SOP_AND": {reflect.TypeOf(q.R_LARCH_SOP_AND), constant.MakeInt64(int64(q.R_LARCH_SOP_AND))}, + "R_LARCH_SOP_ASSERT": {reflect.TypeOf(q.R_LARCH_SOP_ASSERT), constant.MakeInt64(int64(q.R_LARCH_SOP_ASSERT))}, + "R_LARCH_SOP_IF_ELSE": {reflect.TypeOf(q.R_LARCH_SOP_IF_ELSE), constant.MakeInt64(int64(q.R_LARCH_SOP_IF_ELSE))}, + "R_LARCH_SOP_NOT": {reflect.TypeOf(q.R_LARCH_SOP_NOT), constant.MakeInt64(int64(q.R_LARCH_SOP_NOT))}, + "R_LARCH_SOP_POP_32_S_0_10_10_16_S2": {reflect.TypeOf(q.R_LARCH_SOP_POP_32_S_0_10_10_16_S2), constant.MakeInt64(int64(q.R_LARCH_SOP_POP_32_S_0_10_10_16_S2))}, + "R_LARCH_SOP_POP_32_S_0_5_10_16_S2": {reflect.TypeOf(q.R_LARCH_SOP_POP_32_S_0_5_10_16_S2), constant.MakeInt64(int64(q.R_LARCH_SOP_POP_32_S_0_5_10_16_S2))}, + "R_LARCH_SOP_POP_32_S_10_12": {reflect.TypeOf(q.R_LARCH_SOP_POP_32_S_10_12), constant.MakeInt64(int64(q.R_LARCH_SOP_POP_32_S_10_12))}, + "R_LARCH_SOP_POP_32_S_10_16": {reflect.TypeOf(q.R_LARCH_SOP_POP_32_S_10_16), constant.MakeInt64(int64(q.R_LARCH_SOP_POP_32_S_10_16))}, + "R_LARCH_SOP_POP_32_S_10_16_S2": {reflect.TypeOf(q.R_LARCH_SOP_POP_32_S_10_16_S2), constant.MakeInt64(int64(q.R_LARCH_SOP_POP_32_S_10_16_S2))}, + "R_LARCH_SOP_POP_32_S_10_5": {reflect.TypeOf(q.R_LARCH_SOP_POP_32_S_10_5), constant.MakeInt64(int64(q.R_LARCH_SOP_POP_32_S_10_5))}, + "R_LARCH_SOP_POP_32_S_5_20": {reflect.TypeOf(q.R_LARCH_SOP_POP_32_S_5_20), constant.MakeInt64(int64(q.R_LARCH_SOP_POP_32_S_5_20))}, + "R_LARCH_SOP_POP_32_U": {reflect.TypeOf(q.R_LARCH_SOP_POP_32_U), constant.MakeInt64(int64(q.R_LARCH_SOP_POP_32_U))}, + "R_LARCH_SOP_POP_32_U_10_12": {reflect.TypeOf(q.R_LARCH_SOP_POP_32_U_10_12), constant.MakeInt64(int64(q.R_LARCH_SOP_POP_32_U_10_12))}, + "R_LARCH_SOP_PUSH_ABSOLUTE": {reflect.TypeOf(q.R_LARCH_SOP_PUSH_ABSOLUTE), constant.MakeInt64(int64(q.R_LARCH_SOP_PUSH_ABSOLUTE))}, + "R_LARCH_SOP_PUSH_DUP": {reflect.TypeOf(q.R_LARCH_SOP_PUSH_DUP), constant.MakeInt64(int64(q.R_LARCH_SOP_PUSH_DUP))}, + "R_LARCH_SOP_PUSH_GPREL": {reflect.TypeOf(q.R_LARCH_SOP_PUSH_GPREL), constant.MakeInt64(int64(q.R_LARCH_SOP_PUSH_GPREL))}, + "R_LARCH_SOP_PUSH_PCREL": {reflect.TypeOf(q.R_LARCH_SOP_PUSH_PCREL), constant.MakeInt64(int64(q.R_LARCH_SOP_PUSH_PCREL))}, + "R_LARCH_SOP_PUSH_PLT_PCREL": {reflect.TypeOf(q.R_LARCH_SOP_PUSH_PLT_PCREL), constant.MakeInt64(int64(q.R_LARCH_SOP_PUSH_PLT_PCREL))}, + "R_LARCH_SOP_PUSH_TLS_GD": {reflect.TypeOf(q.R_LARCH_SOP_PUSH_TLS_GD), constant.MakeInt64(int64(q.R_LARCH_SOP_PUSH_TLS_GD))}, + "R_LARCH_SOP_PUSH_TLS_GOT": {reflect.TypeOf(q.R_LARCH_SOP_PUSH_TLS_GOT), constant.MakeInt64(int64(q.R_LARCH_SOP_PUSH_TLS_GOT))}, + "R_LARCH_SOP_PUSH_TLS_TPREL": {reflect.TypeOf(q.R_LARCH_SOP_PUSH_TLS_TPREL), constant.MakeInt64(int64(q.R_LARCH_SOP_PUSH_TLS_TPREL))}, + "R_LARCH_SOP_SL": {reflect.TypeOf(q.R_LARCH_SOP_SL), constant.MakeInt64(int64(q.R_LARCH_SOP_SL))}, + "R_LARCH_SOP_SR": {reflect.TypeOf(q.R_LARCH_SOP_SR), constant.MakeInt64(int64(q.R_LARCH_SOP_SR))}, + "R_LARCH_SOP_SUB": {reflect.TypeOf(q.R_LARCH_SOP_SUB), constant.MakeInt64(int64(q.R_LARCH_SOP_SUB))}, + "R_LARCH_SUB16": {reflect.TypeOf(q.R_LARCH_SUB16), constant.MakeInt64(int64(q.R_LARCH_SUB16))}, + "R_LARCH_SUB24": {reflect.TypeOf(q.R_LARCH_SUB24), constant.MakeInt64(int64(q.R_LARCH_SUB24))}, + "R_LARCH_SUB32": {reflect.TypeOf(q.R_LARCH_SUB32), constant.MakeInt64(int64(q.R_LARCH_SUB32))}, + "R_LARCH_SUB6": {reflect.TypeOf(q.R_LARCH_SUB6), constant.MakeInt64(int64(q.R_LARCH_SUB6))}, + "R_LARCH_SUB64": {reflect.TypeOf(q.R_LARCH_SUB64), constant.MakeInt64(int64(q.R_LARCH_SUB64))}, + "R_LARCH_SUB8": {reflect.TypeOf(q.R_LARCH_SUB8), constant.MakeInt64(int64(q.R_LARCH_SUB8))}, + "R_LARCH_SUB_ULEB128": {reflect.TypeOf(q.R_LARCH_SUB_ULEB128), constant.MakeInt64(int64(q.R_LARCH_SUB_ULEB128))}, + "R_LARCH_TLS_DTPMOD32": {reflect.TypeOf(q.R_LARCH_TLS_DTPMOD32), constant.MakeInt64(int64(q.R_LARCH_TLS_DTPMOD32))}, + "R_LARCH_TLS_DTPMOD64": {reflect.TypeOf(q.R_LARCH_TLS_DTPMOD64), constant.MakeInt64(int64(q.R_LARCH_TLS_DTPMOD64))}, + "R_LARCH_TLS_DTPREL32": {reflect.TypeOf(q.R_LARCH_TLS_DTPREL32), constant.MakeInt64(int64(q.R_LARCH_TLS_DTPREL32))}, + "R_LARCH_TLS_DTPREL64": {reflect.TypeOf(q.R_LARCH_TLS_DTPREL64), constant.MakeInt64(int64(q.R_LARCH_TLS_DTPREL64))}, + "R_LARCH_TLS_GD_HI20": {reflect.TypeOf(q.R_LARCH_TLS_GD_HI20), constant.MakeInt64(int64(q.R_LARCH_TLS_GD_HI20))}, + "R_LARCH_TLS_GD_PC_HI20": {reflect.TypeOf(q.R_LARCH_TLS_GD_PC_HI20), constant.MakeInt64(int64(q.R_LARCH_TLS_GD_PC_HI20))}, + "R_LARCH_TLS_IE64_HI12": {reflect.TypeOf(q.R_LARCH_TLS_IE64_HI12), constant.MakeInt64(int64(q.R_LARCH_TLS_IE64_HI12))}, + "R_LARCH_TLS_IE64_LO20": {reflect.TypeOf(q.R_LARCH_TLS_IE64_LO20), constant.MakeInt64(int64(q.R_LARCH_TLS_IE64_LO20))}, + "R_LARCH_TLS_IE64_PC_HI12": {reflect.TypeOf(q.R_LARCH_TLS_IE64_PC_HI12), constant.MakeInt64(int64(q.R_LARCH_TLS_IE64_PC_HI12))}, + "R_LARCH_TLS_IE64_PC_LO20": {reflect.TypeOf(q.R_LARCH_TLS_IE64_PC_LO20), constant.MakeInt64(int64(q.R_LARCH_TLS_IE64_PC_LO20))}, + "R_LARCH_TLS_IE_HI20": {reflect.TypeOf(q.R_LARCH_TLS_IE_HI20), constant.MakeInt64(int64(q.R_LARCH_TLS_IE_HI20))}, + "R_LARCH_TLS_IE_LO12": {reflect.TypeOf(q.R_LARCH_TLS_IE_LO12), constant.MakeInt64(int64(q.R_LARCH_TLS_IE_LO12))}, + "R_LARCH_TLS_IE_PC_HI20": {reflect.TypeOf(q.R_LARCH_TLS_IE_PC_HI20), constant.MakeInt64(int64(q.R_LARCH_TLS_IE_PC_HI20))}, + "R_LARCH_TLS_IE_PC_LO12": {reflect.TypeOf(q.R_LARCH_TLS_IE_PC_LO12), constant.MakeInt64(int64(q.R_LARCH_TLS_IE_PC_LO12))}, + "R_LARCH_TLS_LD_HI20": {reflect.TypeOf(q.R_LARCH_TLS_LD_HI20), constant.MakeInt64(int64(q.R_LARCH_TLS_LD_HI20))}, + "R_LARCH_TLS_LD_PC_HI20": {reflect.TypeOf(q.R_LARCH_TLS_LD_PC_HI20), constant.MakeInt64(int64(q.R_LARCH_TLS_LD_PC_HI20))}, + "R_LARCH_TLS_LE64_HI12": {reflect.TypeOf(q.R_LARCH_TLS_LE64_HI12), constant.MakeInt64(int64(q.R_LARCH_TLS_LE64_HI12))}, + "R_LARCH_TLS_LE64_LO20": {reflect.TypeOf(q.R_LARCH_TLS_LE64_LO20), constant.MakeInt64(int64(q.R_LARCH_TLS_LE64_LO20))}, + "R_LARCH_TLS_LE_HI20": {reflect.TypeOf(q.R_LARCH_TLS_LE_HI20), constant.MakeInt64(int64(q.R_LARCH_TLS_LE_HI20))}, + "R_LARCH_TLS_LE_LO12": {reflect.TypeOf(q.R_LARCH_TLS_LE_LO12), constant.MakeInt64(int64(q.R_LARCH_TLS_LE_LO12))}, + "R_LARCH_TLS_TPREL32": {reflect.TypeOf(q.R_LARCH_TLS_TPREL32), constant.MakeInt64(int64(q.R_LARCH_TLS_TPREL32))}, + "R_LARCH_TLS_TPREL64": {reflect.TypeOf(q.R_LARCH_TLS_TPREL64), constant.MakeInt64(int64(q.R_LARCH_TLS_TPREL64))}, + "R_MIPS_16": {reflect.TypeOf(q.R_MIPS_16), constant.MakeInt64(int64(q.R_MIPS_16))}, + "R_MIPS_26": {reflect.TypeOf(q.R_MIPS_26), constant.MakeInt64(int64(q.R_MIPS_26))}, + "R_MIPS_32": {reflect.TypeOf(q.R_MIPS_32), constant.MakeInt64(int64(q.R_MIPS_32))}, + "R_MIPS_64": {reflect.TypeOf(q.R_MIPS_64), constant.MakeInt64(int64(q.R_MIPS_64))}, + "R_MIPS_ADD_IMMEDIATE": {reflect.TypeOf(q.R_MIPS_ADD_IMMEDIATE), constant.MakeInt64(int64(q.R_MIPS_ADD_IMMEDIATE))}, + "R_MIPS_CALL16": {reflect.TypeOf(q.R_MIPS_CALL16), constant.MakeInt64(int64(q.R_MIPS_CALL16))}, + "R_MIPS_CALL_HI16": {reflect.TypeOf(q.R_MIPS_CALL_HI16), constant.MakeInt64(int64(q.R_MIPS_CALL_HI16))}, + "R_MIPS_CALL_LO16": {reflect.TypeOf(q.R_MIPS_CALL_LO16), constant.MakeInt64(int64(q.R_MIPS_CALL_LO16))}, + "R_MIPS_DELETE": {reflect.TypeOf(q.R_MIPS_DELETE), constant.MakeInt64(int64(q.R_MIPS_DELETE))}, + "R_MIPS_GOT16": {reflect.TypeOf(q.R_MIPS_GOT16), constant.MakeInt64(int64(q.R_MIPS_GOT16))}, + "R_MIPS_GOT_DISP": {reflect.TypeOf(q.R_MIPS_GOT_DISP), constant.MakeInt64(int64(q.R_MIPS_GOT_DISP))}, + "R_MIPS_GOT_HI16": {reflect.TypeOf(q.R_MIPS_GOT_HI16), constant.MakeInt64(int64(q.R_MIPS_GOT_HI16))}, + "R_MIPS_GOT_LO16": {reflect.TypeOf(q.R_MIPS_GOT_LO16), constant.MakeInt64(int64(q.R_MIPS_GOT_LO16))}, + "R_MIPS_GOT_OFST": {reflect.TypeOf(q.R_MIPS_GOT_OFST), constant.MakeInt64(int64(q.R_MIPS_GOT_OFST))}, + "R_MIPS_GOT_PAGE": {reflect.TypeOf(q.R_MIPS_GOT_PAGE), constant.MakeInt64(int64(q.R_MIPS_GOT_PAGE))}, + "R_MIPS_GPREL16": {reflect.TypeOf(q.R_MIPS_GPREL16), constant.MakeInt64(int64(q.R_MIPS_GPREL16))}, + "R_MIPS_GPREL32": {reflect.TypeOf(q.R_MIPS_GPREL32), constant.MakeInt64(int64(q.R_MIPS_GPREL32))}, + "R_MIPS_HI16": {reflect.TypeOf(q.R_MIPS_HI16), constant.MakeInt64(int64(q.R_MIPS_HI16))}, + "R_MIPS_HIGHER": {reflect.TypeOf(q.R_MIPS_HIGHER), constant.MakeInt64(int64(q.R_MIPS_HIGHER))}, + "R_MIPS_HIGHEST": {reflect.TypeOf(q.R_MIPS_HIGHEST), constant.MakeInt64(int64(q.R_MIPS_HIGHEST))}, + "R_MIPS_INSERT_A": {reflect.TypeOf(q.R_MIPS_INSERT_A), constant.MakeInt64(int64(q.R_MIPS_INSERT_A))}, + "R_MIPS_INSERT_B": {reflect.TypeOf(q.R_MIPS_INSERT_B), constant.MakeInt64(int64(q.R_MIPS_INSERT_B))}, + "R_MIPS_JALR": {reflect.TypeOf(q.R_MIPS_JALR), constant.MakeInt64(int64(q.R_MIPS_JALR))}, + "R_MIPS_LITERAL": {reflect.TypeOf(q.R_MIPS_LITERAL), constant.MakeInt64(int64(q.R_MIPS_LITERAL))}, + "R_MIPS_LO16": {reflect.TypeOf(q.R_MIPS_LO16), constant.MakeInt64(int64(q.R_MIPS_LO16))}, + "R_MIPS_NONE": {reflect.TypeOf(q.R_MIPS_NONE), constant.MakeInt64(int64(q.R_MIPS_NONE))}, + "R_MIPS_PC16": {reflect.TypeOf(q.R_MIPS_PC16), constant.MakeInt64(int64(q.R_MIPS_PC16))}, + "R_MIPS_PC32": {reflect.TypeOf(q.R_MIPS_PC32), constant.MakeInt64(int64(q.R_MIPS_PC32))}, + "R_MIPS_PJUMP": {reflect.TypeOf(q.R_MIPS_PJUMP), constant.MakeInt64(int64(q.R_MIPS_PJUMP))}, + "R_MIPS_REL16": {reflect.TypeOf(q.R_MIPS_REL16), constant.MakeInt64(int64(q.R_MIPS_REL16))}, + "R_MIPS_REL32": {reflect.TypeOf(q.R_MIPS_REL32), constant.MakeInt64(int64(q.R_MIPS_REL32))}, + "R_MIPS_RELGOT": {reflect.TypeOf(q.R_MIPS_RELGOT), constant.MakeInt64(int64(q.R_MIPS_RELGOT))}, + "R_MIPS_SCN_DISP": {reflect.TypeOf(q.R_MIPS_SCN_DISP), constant.MakeInt64(int64(q.R_MIPS_SCN_DISP))}, + "R_MIPS_SHIFT5": {reflect.TypeOf(q.R_MIPS_SHIFT5), constant.MakeInt64(int64(q.R_MIPS_SHIFT5))}, + "R_MIPS_SHIFT6": {reflect.TypeOf(q.R_MIPS_SHIFT6), constant.MakeInt64(int64(q.R_MIPS_SHIFT6))}, + "R_MIPS_SUB": {reflect.TypeOf(q.R_MIPS_SUB), constant.MakeInt64(int64(q.R_MIPS_SUB))}, + "R_MIPS_TLS_DTPMOD32": {reflect.TypeOf(q.R_MIPS_TLS_DTPMOD32), constant.MakeInt64(int64(q.R_MIPS_TLS_DTPMOD32))}, + "R_MIPS_TLS_DTPMOD64": {reflect.TypeOf(q.R_MIPS_TLS_DTPMOD64), constant.MakeInt64(int64(q.R_MIPS_TLS_DTPMOD64))}, + "R_MIPS_TLS_DTPREL32": {reflect.TypeOf(q.R_MIPS_TLS_DTPREL32), constant.MakeInt64(int64(q.R_MIPS_TLS_DTPREL32))}, + "R_MIPS_TLS_DTPREL64": {reflect.TypeOf(q.R_MIPS_TLS_DTPREL64), constant.MakeInt64(int64(q.R_MIPS_TLS_DTPREL64))}, + "R_MIPS_TLS_DTPREL_HI16": {reflect.TypeOf(q.R_MIPS_TLS_DTPREL_HI16), constant.MakeInt64(int64(q.R_MIPS_TLS_DTPREL_HI16))}, + "R_MIPS_TLS_DTPREL_LO16": {reflect.TypeOf(q.R_MIPS_TLS_DTPREL_LO16), constant.MakeInt64(int64(q.R_MIPS_TLS_DTPREL_LO16))}, + "R_MIPS_TLS_GD": {reflect.TypeOf(q.R_MIPS_TLS_GD), constant.MakeInt64(int64(q.R_MIPS_TLS_GD))}, + "R_MIPS_TLS_GOTTPREL": {reflect.TypeOf(q.R_MIPS_TLS_GOTTPREL), constant.MakeInt64(int64(q.R_MIPS_TLS_GOTTPREL))}, + "R_MIPS_TLS_LDM": {reflect.TypeOf(q.R_MIPS_TLS_LDM), constant.MakeInt64(int64(q.R_MIPS_TLS_LDM))}, + "R_MIPS_TLS_TPREL32": {reflect.TypeOf(q.R_MIPS_TLS_TPREL32), constant.MakeInt64(int64(q.R_MIPS_TLS_TPREL32))}, + "R_MIPS_TLS_TPREL64": {reflect.TypeOf(q.R_MIPS_TLS_TPREL64), constant.MakeInt64(int64(q.R_MIPS_TLS_TPREL64))}, + "R_MIPS_TLS_TPREL_HI16": {reflect.TypeOf(q.R_MIPS_TLS_TPREL_HI16), constant.MakeInt64(int64(q.R_MIPS_TLS_TPREL_HI16))}, + "R_MIPS_TLS_TPREL_LO16": {reflect.TypeOf(q.R_MIPS_TLS_TPREL_LO16), constant.MakeInt64(int64(q.R_MIPS_TLS_TPREL_LO16))}, + "R_PPC64_ADDR14": {reflect.TypeOf(q.R_PPC64_ADDR14), constant.MakeInt64(int64(q.R_PPC64_ADDR14))}, + "R_PPC64_ADDR14_BRNTAKEN": {reflect.TypeOf(q.R_PPC64_ADDR14_BRNTAKEN), constant.MakeInt64(int64(q.R_PPC64_ADDR14_BRNTAKEN))}, + "R_PPC64_ADDR14_BRTAKEN": {reflect.TypeOf(q.R_PPC64_ADDR14_BRTAKEN), constant.MakeInt64(int64(q.R_PPC64_ADDR14_BRTAKEN))}, + "R_PPC64_ADDR16": {reflect.TypeOf(q.R_PPC64_ADDR16), constant.MakeInt64(int64(q.R_PPC64_ADDR16))}, + "R_PPC64_ADDR16_DS": {reflect.TypeOf(q.R_PPC64_ADDR16_DS), constant.MakeInt64(int64(q.R_PPC64_ADDR16_DS))}, + "R_PPC64_ADDR16_HA": {reflect.TypeOf(q.R_PPC64_ADDR16_HA), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HA))}, + "R_PPC64_ADDR16_HI": {reflect.TypeOf(q.R_PPC64_ADDR16_HI), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HI))}, + "R_PPC64_ADDR16_HIGH": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGH), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGH))}, + "R_PPC64_ADDR16_HIGHA": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGHA), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGHA))}, + "R_PPC64_ADDR16_HIGHER": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGHER), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGHER))}, + "R_PPC64_ADDR16_HIGHER34": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGHER34), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGHER34))}, + "R_PPC64_ADDR16_HIGHERA": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGHERA), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGHERA))}, + "R_PPC64_ADDR16_HIGHERA34": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGHERA34), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGHERA34))}, + "R_PPC64_ADDR16_HIGHEST": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGHEST), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGHEST))}, + "R_PPC64_ADDR16_HIGHEST34": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGHEST34), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGHEST34))}, + "R_PPC64_ADDR16_HIGHESTA": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGHESTA), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGHESTA))}, + "R_PPC64_ADDR16_HIGHESTA34": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGHESTA34), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGHESTA34))}, + "R_PPC64_ADDR16_LO": {reflect.TypeOf(q.R_PPC64_ADDR16_LO), constant.MakeInt64(int64(q.R_PPC64_ADDR16_LO))}, + "R_PPC64_ADDR16_LO_DS": {reflect.TypeOf(q.R_PPC64_ADDR16_LO_DS), constant.MakeInt64(int64(q.R_PPC64_ADDR16_LO_DS))}, + "R_PPC64_ADDR24": {reflect.TypeOf(q.R_PPC64_ADDR24), constant.MakeInt64(int64(q.R_PPC64_ADDR24))}, + "R_PPC64_ADDR32": {reflect.TypeOf(q.R_PPC64_ADDR32), constant.MakeInt64(int64(q.R_PPC64_ADDR32))}, + "R_PPC64_ADDR64": {reflect.TypeOf(q.R_PPC64_ADDR64), constant.MakeInt64(int64(q.R_PPC64_ADDR64))}, + "R_PPC64_ADDR64_LOCAL": {reflect.TypeOf(q.R_PPC64_ADDR64_LOCAL), constant.MakeInt64(int64(q.R_PPC64_ADDR64_LOCAL))}, + "R_PPC64_COPY": {reflect.TypeOf(q.R_PPC64_COPY), constant.MakeInt64(int64(q.R_PPC64_COPY))}, + "R_PPC64_D28": {reflect.TypeOf(q.R_PPC64_D28), constant.MakeInt64(int64(q.R_PPC64_D28))}, + "R_PPC64_D34": {reflect.TypeOf(q.R_PPC64_D34), constant.MakeInt64(int64(q.R_PPC64_D34))}, + "R_PPC64_D34_HA30": {reflect.TypeOf(q.R_PPC64_D34_HA30), constant.MakeInt64(int64(q.R_PPC64_D34_HA30))}, + "R_PPC64_D34_HI30": {reflect.TypeOf(q.R_PPC64_D34_HI30), constant.MakeInt64(int64(q.R_PPC64_D34_HI30))}, + "R_PPC64_D34_LO": {reflect.TypeOf(q.R_PPC64_D34_LO), constant.MakeInt64(int64(q.R_PPC64_D34_LO))}, + "R_PPC64_DTPMOD64": {reflect.TypeOf(q.R_PPC64_DTPMOD64), constant.MakeInt64(int64(q.R_PPC64_DTPMOD64))}, + "R_PPC64_DTPREL16": {reflect.TypeOf(q.R_PPC64_DTPREL16), constant.MakeInt64(int64(q.R_PPC64_DTPREL16))}, + "R_PPC64_DTPREL16_DS": {reflect.TypeOf(q.R_PPC64_DTPREL16_DS), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_DS))}, + "R_PPC64_DTPREL16_HA": {reflect.TypeOf(q.R_PPC64_DTPREL16_HA), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_HA))}, + "R_PPC64_DTPREL16_HI": {reflect.TypeOf(q.R_PPC64_DTPREL16_HI), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_HI))}, + "R_PPC64_DTPREL16_HIGH": {reflect.TypeOf(q.R_PPC64_DTPREL16_HIGH), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_HIGH))}, + "R_PPC64_DTPREL16_HIGHA": {reflect.TypeOf(q.R_PPC64_DTPREL16_HIGHA), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_HIGHA))}, + "R_PPC64_DTPREL16_HIGHER": {reflect.TypeOf(q.R_PPC64_DTPREL16_HIGHER), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_HIGHER))}, + "R_PPC64_DTPREL16_HIGHERA": {reflect.TypeOf(q.R_PPC64_DTPREL16_HIGHERA), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_HIGHERA))}, + "R_PPC64_DTPREL16_HIGHEST": {reflect.TypeOf(q.R_PPC64_DTPREL16_HIGHEST), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_HIGHEST))}, + "R_PPC64_DTPREL16_HIGHESTA": {reflect.TypeOf(q.R_PPC64_DTPREL16_HIGHESTA), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_HIGHESTA))}, + "R_PPC64_DTPREL16_LO": {reflect.TypeOf(q.R_PPC64_DTPREL16_LO), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_LO))}, + "R_PPC64_DTPREL16_LO_DS": {reflect.TypeOf(q.R_PPC64_DTPREL16_LO_DS), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_LO_DS))}, + "R_PPC64_DTPREL34": {reflect.TypeOf(q.R_PPC64_DTPREL34), constant.MakeInt64(int64(q.R_PPC64_DTPREL34))}, + "R_PPC64_DTPREL64": {reflect.TypeOf(q.R_PPC64_DTPREL64), constant.MakeInt64(int64(q.R_PPC64_DTPREL64))}, + "R_PPC64_ENTRY": {reflect.TypeOf(q.R_PPC64_ENTRY), constant.MakeInt64(int64(q.R_PPC64_ENTRY))}, + "R_PPC64_GLOB_DAT": {reflect.TypeOf(q.R_PPC64_GLOB_DAT), constant.MakeInt64(int64(q.R_PPC64_GLOB_DAT))}, + "R_PPC64_GNU_VTENTRY": {reflect.TypeOf(q.R_PPC64_GNU_VTENTRY), constant.MakeInt64(int64(q.R_PPC64_GNU_VTENTRY))}, + "R_PPC64_GNU_VTINHERIT": {reflect.TypeOf(q.R_PPC64_GNU_VTINHERIT), constant.MakeInt64(int64(q.R_PPC64_GNU_VTINHERIT))}, + "R_PPC64_GOT16": {reflect.TypeOf(q.R_PPC64_GOT16), constant.MakeInt64(int64(q.R_PPC64_GOT16))}, + "R_PPC64_GOT16_DS": {reflect.TypeOf(q.R_PPC64_GOT16_DS), constant.MakeInt64(int64(q.R_PPC64_GOT16_DS))}, + "R_PPC64_GOT16_HA": {reflect.TypeOf(q.R_PPC64_GOT16_HA), constant.MakeInt64(int64(q.R_PPC64_GOT16_HA))}, + "R_PPC64_GOT16_HI": {reflect.TypeOf(q.R_PPC64_GOT16_HI), constant.MakeInt64(int64(q.R_PPC64_GOT16_HI))}, + "R_PPC64_GOT16_LO": {reflect.TypeOf(q.R_PPC64_GOT16_LO), constant.MakeInt64(int64(q.R_PPC64_GOT16_LO))}, + "R_PPC64_GOT16_LO_DS": {reflect.TypeOf(q.R_PPC64_GOT16_LO_DS), constant.MakeInt64(int64(q.R_PPC64_GOT16_LO_DS))}, + "R_PPC64_GOT_DTPREL16_DS": {reflect.TypeOf(q.R_PPC64_GOT_DTPREL16_DS), constant.MakeInt64(int64(q.R_PPC64_GOT_DTPREL16_DS))}, + "R_PPC64_GOT_DTPREL16_HA": {reflect.TypeOf(q.R_PPC64_GOT_DTPREL16_HA), constant.MakeInt64(int64(q.R_PPC64_GOT_DTPREL16_HA))}, + "R_PPC64_GOT_DTPREL16_HI": {reflect.TypeOf(q.R_PPC64_GOT_DTPREL16_HI), constant.MakeInt64(int64(q.R_PPC64_GOT_DTPREL16_HI))}, + "R_PPC64_GOT_DTPREL16_LO_DS": {reflect.TypeOf(q.R_PPC64_GOT_DTPREL16_LO_DS), constant.MakeInt64(int64(q.R_PPC64_GOT_DTPREL16_LO_DS))}, + "R_PPC64_GOT_DTPREL_PCREL34": {reflect.TypeOf(q.R_PPC64_GOT_DTPREL_PCREL34), constant.MakeInt64(int64(q.R_PPC64_GOT_DTPREL_PCREL34))}, + "R_PPC64_GOT_PCREL34": {reflect.TypeOf(q.R_PPC64_GOT_PCREL34), constant.MakeInt64(int64(q.R_PPC64_GOT_PCREL34))}, + "R_PPC64_GOT_TLSGD16": {reflect.TypeOf(q.R_PPC64_GOT_TLSGD16), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSGD16))}, + "R_PPC64_GOT_TLSGD16_HA": {reflect.TypeOf(q.R_PPC64_GOT_TLSGD16_HA), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSGD16_HA))}, + "R_PPC64_GOT_TLSGD16_HI": {reflect.TypeOf(q.R_PPC64_GOT_TLSGD16_HI), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSGD16_HI))}, + "R_PPC64_GOT_TLSGD16_LO": {reflect.TypeOf(q.R_PPC64_GOT_TLSGD16_LO), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSGD16_LO))}, + "R_PPC64_GOT_TLSGD_PCREL34": {reflect.TypeOf(q.R_PPC64_GOT_TLSGD_PCREL34), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSGD_PCREL34))}, + "R_PPC64_GOT_TLSLD16": {reflect.TypeOf(q.R_PPC64_GOT_TLSLD16), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSLD16))}, + "R_PPC64_GOT_TLSLD16_HA": {reflect.TypeOf(q.R_PPC64_GOT_TLSLD16_HA), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSLD16_HA))}, + "R_PPC64_GOT_TLSLD16_HI": {reflect.TypeOf(q.R_PPC64_GOT_TLSLD16_HI), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSLD16_HI))}, + "R_PPC64_GOT_TLSLD16_LO": {reflect.TypeOf(q.R_PPC64_GOT_TLSLD16_LO), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSLD16_LO))}, + "R_PPC64_GOT_TLSLD_PCREL34": {reflect.TypeOf(q.R_PPC64_GOT_TLSLD_PCREL34), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSLD_PCREL34))}, + "R_PPC64_GOT_TPREL16_DS": {reflect.TypeOf(q.R_PPC64_GOT_TPREL16_DS), constant.MakeInt64(int64(q.R_PPC64_GOT_TPREL16_DS))}, + "R_PPC64_GOT_TPREL16_HA": {reflect.TypeOf(q.R_PPC64_GOT_TPREL16_HA), constant.MakeInt64(int64(q.R_PPC64_GOT_TPREL16_HA))}, + "R_PPC64_GOT_TPREL16_HI": {reflect.TypeOf(q.R_PPC64_GOT_TPREL16_HI), constant.MakeInt64(int64(q.R_PPC64_GOT_TPREL16_HI))}, + "R_PPC64_GOT_TPREL16_LO_DS": {reflect.TypeOf(q.R_PPC64_GOT_TPREL16_LO_DS), constant.MakeInt64(int64(q.R_PPC64_GOT_TPREL16_LO_DS))}, + "R_PPC64_GOT_TPREL_PCREL34": {reflect.TypeOf(q.R_PPC64_GOT_TPREL_PCREL34), constant.MakeInt64(int64(q.R_PPC64_GOT_TPREL_PCREL34))}, + "R_PPC64_IRELATIVE": {reflect.TypeOf(q.R_PPC64_IRELATIVE), constant.MakeInt64(int64(q.R_PPC64_IRELATIVE))}, + "R_PPC64_JMP_IREL": {reflect.TypeOf(q.R_PPC64_JMP_IREL), constant.MakeInt64(int64(q.R_PPC64_JMP_IREL))}, + "R_PPC64_JMP_SLOT": {reflect.TypeOf(q.R_PPC64_JMP_SLOT), constant.MakeInt64(int64(q.R_PPC64_JMP_SLOT))}, + "R_PPC64_NONE": {reflect.TypeOf(q.R_PPC64_NONE), constant.MakeInt64(int64(q.R_PPC64_NONE))}, + "R_PPC64_PCREL28": {reflect.TypeOf(q.R_PPC64_PCREL28), constant.MakeInt64(int64(q.R_PPC64_PCREL28))}, + "R_PPC64_PCREL34": {reflect.TypeOf(q.R_PPC64_PCREL34), constant.MakeInt64(int64(q.R_PPC64_PCREL34))}, + "R_PPC64_PCREL_OPT": {reflect.TypeOf(q.R_PPC64_PCREL_OPT), constant.MakeInt64(int64(q.R_PPC64_PCREL_OPT))}, + "R_PPC64_PLT16_HA": {reflect.TypeOf(q.R_PPC64_PLT16_HA), constant.MakeInt64(int64(q.R_PPC64_PLT16_HA))}, + "R_PPC64_PLT16_HI": {reflect.TypeOf(q.R_PPC64_PLT16_HI), constant.MakeInt64(int64(q.R_PPC64_PLT16_HI))}, + "R_PPC64_PLT16_LO": {reflect.TypeOf(q.R_PPC64_PLT16_LO), constant.MakeInt64(int64(q.R_PPC64_PLT16_LO))}, + "R_PPC64_PLT16_LO_DS": {reflect.TypeOf(q.R_PPC64_PLT16_LO_DS), constant.MakeInt64(int64(q.R_PPC64_PLT16_LO_DS))}, + "R_PPC64_PLT32": {reflect.TypeOf(q.R_PPC64_PLT32), constant.MakeInt64(int64(q.R_PPC64_PLT32))}, + "R_PPC64_PLT64": {reflect.TypeOf(q.R_PPC64_PLT64), constant.MakeInt64(int64(q.R_PPC64_PLT64))}, + "R_PPC64_PLTCALL": {reflect.TypeOf(q.R_PPC64_PLTCALL), constant.MakeInt64(int64(q.R_PPC64_PLTCALL))}, + "R_PPC64_PLTCALL_NOTOC": {reflect.TypeOf(q.R_PPC64_PLTCALL_NOTOC), constant.MakeInt64(int64(q.R_PPC64_PLTCALL_NOTOC))}, + "R_PPC64_PLTGOT16": {reflect.TypeOf(q.R_PPC64_PLTGOT16), constant.MakeInt64(int64(q.R_PPC64_PLTGOT16))}, + "R_PPC64_PLTGOT16_DS": {reflect.TypeOf(q.R_PPC64_PLTGOT16_DS), constant.MakeInt64(int64(q.R_PPC64_PLTGOT16_DS))}, + "R_PPC64_PLTGOT16_HA": {reflect.TypeOf(q.R_PPC64_PLTGOT16_HA), constant.MakeInt64(int64(q.R_PPC64_PLTGOT16_HA))}, + "R_PPC64_PLTGOT16_HI": {reflect.TypeOf(q.R_PPC64_PLTGOT16_HI), constant.MakeInt64(int64(q.R_PPC64_PLTGOT16_HI))}, + "R_PPC64_PLTGOT16_LO": {reflect.TypeOf(q.R_PPC64_PLTGOT16_LO), constant.MakeInt64(int64(q.R_PPC64_PLTGOT16_LO))}, + "R_PPC64_PLTGOT_LO_DS": {reflect.TypeOf(q.R_PPC64_PLTGOT_LO_DS), constant.MakeInt64(int64(q.R_PPC64_PLTGOT_LO_DS))}, + "R_PPC64_PLTREL32": {reflect.TypeOf(q.R_PPC64_PLTREL32), constant.MakeInt64(int64(q.R_PPC64_PLTREL32))}, + "R_PPC64_PLTREL64": {reflect.TypeOf(q.R_PPC64_PLTREL64), constant.MakeInt64(int64(q.R_PPC64_PLTREL64))}, + "R_PPC64_PLTSEQ": {reflect.TypeOf(q.R_PPC64_PLTSEQ), constant.MakeInt64(int64(q.R_PPC64_PLTSEQ))}, + "R_PPC64_PLTSEQ_NOTOC": {reflect.TypeOf(q.R_PPC64_PLTSEQ_NOTOC), constant.MakeInt64(int64(q.R_PPC64_PLTSEQ_NOTOC))}, + "R_PPC64_PLT_PCREL34": {reflect.TypeOf(q.R_PPC64_PLT_PCREL34), constant.MakeInt64(int64(q.R_PPC64_PLT_PCREL34))}, + "R_PPC64_PLT_PCREL34_NOTOC": {reflect.TypeOf(q.R_PPC64_PLT_PCREL34_NOTOC), constant.MakeInt64(int64(q.R_PPC64_PLT_PCREL34_NOTOC))}, + "R_PPC64_REL14": {reflect.TypeOf(q.R_PPC64_REL14), constant.MakeInt64(int64(q.R_PPC64_REL14))}, + "R_PPC64_REL14_BRNTAKEN": {reflect.TypeOf(q.R_PPC64_REL14_BRNTAKEN), constant.MakeInt64(int64(q.R_PPC64_REL14_BRNTAKEN))}, + "R_PPC64_REL14_BRTAKEN": {reflect.TypeOf(q.R_PPC64_REL14_BRTAKEN), constant.MakeInt64(int64(q.R_PPC64_REL14_BRTAKEN))}, + "R_PPC64_REL16": {reflect.TypeOf(q.R_PPC64_REL16), constant.MakeInt64(int64(q.R_PPC64_REL16))}, + "R_PPC64_REL16DX_HA": {reflect.TypeOf(q.R_PPC64_REL16DX_HA), constant.MakeInt64(int64(q.R_PPC64_REL16DX_HA))}, + "R_PPC64_REL16_HA": {reflect.TypeOf(q.R_PPC64_REL16_HA), constant.MakeInt64(int64(q.R_PPC64_REL16_HA))}, + "R_PPC64_REL16_HI": {reflect.TypeOf(q.R_PPC64_REL16_HI), constant.MakeInt64(int64(q.R_PPC64_REL16_HI))}, + "R_PPC64_REL16_HIGH": {reflect.TypeOf(q.R_PPC64_REL16_HIGH), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGH))}, + "R_PPC64_REL16_HIGHA": {reflect.TypeOf(q.R_PPC64_REL16_HIGHA), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGHA))}, + "R_PPC64_REL16_HIGHER": {reflect.TypeOf(q.R_PPC64_REL16_HIGHER), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGHER))}, + "R_PPC64_REL16_HIGHER34": {reflect.TypeOf(q.R_PPC64_REL16_HIGHER34), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGHER34))}, + "R_PPC64_REL16_HIGHERA": {reflect.TypeOf(q.R_PPC64_REL16_HIGHERA), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGHERA))}, + "R_PPC64_REL16_HIGHERA34": {reflect.TypeOf(q.R_PPC64_REL16_HIGHERA34), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGHERA34))}, + "R_PPC64_REL16_HIGHEST": {reflect.TypeOf(q.R_PPC64_REL16_HIGHEST), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGHEST))}, + "R_PPC64_REL16_HIGHEST34": {reflect.TypeOf(q.R_PPC64_REL16_HIGHEST34), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGHEST34))}, + "R_PPC64_REL16_HIGHESTA": {reflect.TypeOf(q.R_PPC64_REL16_HIGHESTA), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGHESTA))}, + "R_PPC64_REL16_HIGHESTA34": {reflect.TypeOf(q.R_PPC64_REL16_HIGHESTA34), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGHESTA34))}, + "R_PPC64_REL16_LO": {reflect.TypeOf(q.R_PPC64_REL16_LO), constant.MakeInt64(int64(q.R_PPC64_REL16_LO))}, + "R_PPC64_REL24": {reflect.TypeOf(q.R_PPC64_REL24), constant.MakeInt64(int64(q.R_PPC64_REL24))}, + "R_PPC64_REL24_NOTOC": {reflect.TypeOf(q.R_PPC64_REL24_NOTOC), constant.MakeInt64(int64(q.R_PPC64_REL24_NOTOC))}, + "R_PPC64_REL24_P9NOTOC": {reflect.TypeOf(q.R_PPC64_REL24_P9NOTOC), constant.MakeInt64(int64(q.R_PPC64_REL24_P9NOTOC))}, + "R_PPC64_REL30": {reflect.TypeOf(q.R_PPC64_REL30), constant.MakeInt64(int64(q.R_PPC64_REL30))}, + "R_PPC64_REL32": {reflect.TypeOf(q.R_PPC64_REL32), constant.MakeInt64(int64(q.R_PPC64_REL32))}, + "R_PPC64_REL64": {reflect.TypeOf(q.R_PPC64_REL64), constant.MakeInt64(int64(q.R_PPC64_REL64))}, + "R_PPC64_RELATIVE": {reflect.TypeOf(q.R_PPC64_RELATIVE), constant.MakeInt64(int64(q.R_PPC64_RELATIVE))}, + "R_PPC64_SECTOFF": {reflect.TypeOf(q.R_PPC64_SECTOFF), constant.MakeInt64(int64(q.R_PPC64_SECTOFF))}, + "R_PPC64_SECTOFF_DS": {reflect.TypeOf(q.R_PPC64_SECTOFF_DS), constant.MakeInt64(int64(q.R_PPC64_SECTOFF_DS))}, + "R_PPC64_SECTOFF_HA": {reflect.TypeOf(q.R_PPC64_SECTOFF_HA), constant.MakeInt64(int64(q.R_PPC64_SECTOFF_HA))}, + "R_PPC64_SECTOFF_HI": {reflect.TypeOf(q.R_PPC64_SECTOFF_HI), constant.MakeInt64(int64(q.R_PPC64_SECTOFF_HI))}, + "R_PPC64_SECTOFF_LO": {reflect.TypeOf(q.R_PPC64_SECTOFF_LO), constant.MakeInt64(int64(q.R_PPC64_SECTOFF_LO))}, + "R_PPC64_SECTOFF_LO_DS": {reflect.TypeOf(q.R_PPC64_SECTOFF_LO_DS), constant.MakeInt64(int64(q.R_PPC64_SECTOFF_LO_DS))}, + "R_PPC64_TLS": {reflect.TypeOf(q.R_PPC64_TLS), constant.MakeInt64(int64(q.R_PPC64_TLS))}, + "R_PPC64_TLSGD": {reflect.TypeOf(q.R_PPC64_TLSGD), constant.MakeInt64(int64(q.R_PPC64_TLSGD))}, + "R_PPC64_TLSLD": {reflect.TypeOf(q.R_PPC64_TLSLD), constant.MakeInt64(int64(q.R_PPC64_TLSLD))}, + "R_PPC64_TOC": {reflect.TypeOf(q.R_PPC64_TOC), constant.MakeInt64(int64(q.R_PPC64_TOC))}, + "R_PPC64_TOC16": {reflect.TypeOf(q.R_PPC64_TOC16), constant.MakeInt64(int64(q.R_PPC64_TOC16))}, + "R_PPC64_TOC16_DS": {reflect.TypeOf(q.R_PPC64_TOC16_DS), constant.MakeInt64(int64(q.R_PPC64_TOC16_DS))}, + "R_PPC64_TOC16_HA": {reflect.TypeOf(q.R_PPC64_TOC16_HA), constant.MakeInt64(int64(q.R_PPC64_TOC16_HA))}, + "R_PPC64_TOC16_HI": {reflect.TypeOf(q.R_PPC64_TOC16_HI), constant.MakeInt64(int64(q.R_PPC64_TOC16_HI))}, + "R_PPC64_TOC16_LO": {reflect.TypeOf(q.R_PPC64_TOC16_LO), constant.MakeInt64(int64(q.R_PPC64_TOC16_LO))}, + "R_PPC64_TOC16_LO_DS": {reflect.TypeOf(q.R_PPC64_TOC16_LO_DS), constant.MakeInt64(int64(q.R_PPC64_TOC16_LO_DS))}, + "R_PPC64_TOCSAVE": {reflect.TypeOf(q.R_PPC64_TOCSAVE), constant.MakeInt64(int64(q.R_PPC64_TOCSAVE))}, + "R_PPC64_TPREL16": {reflect.TypeOf(q.R_PPC64_TPREL16), constant.MakeInt64(int64(q.R_PPC64_TPREL16))}, + "R_PPC64_TPREL16_DS": {reflect.TypeOf(q.R_PPC64_TPREL16_DS), constant.MakeInt64(int64(q.R_PPC64_TPREL16_DS))}, + "R_PPC64_TPREL16_HA": {reflect.TypeOf(q.R_PPC64_TPREL16_HA), constant.MakeInt64(int64(q.R_PPC64_TPREL16_HA))}, + "R_PPC64_TPREL16_HI": {reflect.TypeOf(q.R_PPC64_TPREL16_HI), constant.MakeInt64(int64(q.R_PPC64_TPREL16_HI))}, + "R_PPC64_TPREL16_HIGH": {reflect.TypeOf(q.R_PPC64_TPREL16_HIGH), constant.MakeInt64(int64(q.R_PPC64_TPREL16_HIGH))}, + "R_PPC64_TPREL16_HIGHA": {reflect.TypeOf(q.R_PPC64_TPREL16_HIGHA), constant.MakeInt64(int64(q.R_PPC64_TPREL16_HIGHA))}, + "R_PPC64_TPREL16_HIGHER": {reflect.TypeOf(q.R_PPC64_TPREL16_HIGHER), constant.MakeInt64(int64(q.R_PPC64_TPREL16_HIGHER))}, + "R_PPC64_TPREL16_HIGHERA": {reflect.TypeOf(q.R_PPC64_TPREL16_HIGHERA), constant.MakeInt64(int64(q.R_PPC64_TPREL16_HIGHERA))}, + "R_PPC64_TPREL16_HIGHEST": {reflect.TypeOf(q.R_PPC64_TPREL16_HIGHEST), constant.MakeInt64(int64(q.R_PPC64_TPREL16_HIGHEST))}, + "R_PPC64_TPREL16_HIGHESTA": {reflect.TypeOf(q.R_PPC64_TPREL16_HIGHESTA), constant.MakeInt64(int64(q.R_PPC64_TPREL16_HIGHESTA))}, + "R_PPC64_TPREL16_LO": {reflect.TypeOf(q.R_PPC64_TPREL16_LO), constant.MakeInt64(int64(q.R_PPC64_TPREL16_LO))}, + "R_PPC64_TPREL16_LO_DS": {reflect.TypeOf(q.R_PPC64_TPREL16_LO_DS), constant.MakeInt64(int64(q.R_PPC64_TPREL16_LO_DS))}, + "R_PPC64_TPREL34": {reflect.TypeOf(q.R_PPC64_TPREL34), constant.MakeInt64(int64(q.R_PPC64_TPREL34))}, + "R_PPC64_TPREL64": {reflect.TypeOf(q.R_PPC64_TPREL64), constant.MakeInt64(int64(q.R_PPC64_TPREL64))}, + "R_PPC64_UADDR16": {reflect.TypeOf(q.R_PPC64_UADDR16), constant.MakeInt64(int64(q.R_PPC64_UADDR16))}, + "R_PPC64_UADDR32": {reflect.TypeOf(q.R_PPC64_UADDR32), constant.MakeInt64(int64(q.R_PPC64_UADDR32))}, + "R_PPC64_UADDR64": {reflect.TypeOf(q.R_PPC64_UADDR64), constant.MakeInt64(int64(q.R_PPC64_UADDR64))}, + "R_PPC_ADDR14": {reflect.TypeOf(q.R_PPC_ADDR14), constant.MakeInt64(int64(q.R_PPC_ADDR14))}, + "R_PPC_ADDR14_BRNTAKEN": {reflect.TypeOf(q.R_PPC_ADDR14_BRNTAKEN), constant.MakeInt64(int64(q.R_PPC_ADDR14_BRNTAKEN))}, + "R_PPC_ADDR14_BRTAKEN": {reflect.TypeOf(q.R_PPC_ADDR14_BRTAKEN), constant.MakeInt64(int64(q.R_PPC_ADDR14_BRTAKEN))}, + "R_PPC_ADDR16": {reflect.TypeOf(q.R_PPC_ADDR16), constant.MakeInt64(int64(q.R_PPC_ADDR16))}, + "R_PPC_ADDR16_HA": {reflect.TypeOf(q.R_PPC_ADDR16_HA), constant.MakeInt64(int64(q.R_PPC_ADDR16_HA))}, + "R_PPC_ADDR16_HI": {reflect.TypeOf(q.R_PPC_ADDR16_HI), constant.MakeInt64(int64(q.R_PPC_ADDR16_HI))}, + "R_PPC_ADDR16_LO": {reflect.TypeOf(q.R_PPC_ADDR16_LO), constant.MakeInt64(int64(q.R_PPC_ADDR16_LO))}, + "R_PPC_ADDR24": {reflect.TypeOf(q.R_PPC_ADDR24), constant.MakeInt64(int64(q.R_PPC_ADDR24))}, + "R_PPC_ADDR32": {reflect.TypeOf(q.R_PPC_ADDR32), constant.MakeInt64(int64(q.R_PPC_ADDR32))}, + "R_PPC_COPY": {reflect.TypeOf(q.R_PPC_COPY), constant.MakeInt64(int64(q.R_PPC_COPY))}, + "R_PPC_DTPMOD32": {reflect.TypeOf(q.R_PPC_DTPMOD32), constant.MakeInt64(int64(q.R_PPC_DTPMOD32))}, + "R_PPC_DTPREL16": {reflect.TypeOf(q.R_PPC_DTPREL16), constant.MakeInt64(int64(q.R_PPC_DTPREL16))}, + "R_PPC_DTPREL16_HA": {reflect.TypeOf(q.R_PPC_DTPREL16_HA), constant.MakeInt64(int64(q.R_PPC_DTPREL16_HA))}, + "R_PPC_DTPREL16_HI": {reflect.TypeOf(q.R_PPC_DTPREL16_HI), constant.MakeInt64(int64(q.R_PPC_DTPREL16_HI))}, + "R_PPC_DTPREL16_LO": {reflect.TypeOf(q.R_PPC_DTPREL16_LO), constant.MakeInt64(int64(q.R_PPC_DTPREL16_LO))}, + "R_PPC_DTPREL32": {reflect.TypeOf(q.R_PPC_DTPREL32), constant.MakeInt64(int64(q.R_PPC_DTPREL32))}, + "R_PPC_EMB_BIT_FLD": {reflect.TypeOf(q.R_PPC_EMB_BIT_FLD), constant.MakeInt64(int64(q.R_PPC_EMB_BIT_FLD))}, + "R_PPC_EMB_MRKREF": {reflect.TypeOf(q.R_PPC_EMB_MRKREF), constant.MakeInt64(int64(q.R_PPC_EMB_MRKREF))}, + "R_PPC_EMB_NADDR16": {reflect.TypeOf(q.R_PPC_EMB_NADDR16), constant.MakeInt64(int64(q.R_PPC_EMB_NADDR16))}, + "R_PPC_EMB_NADDR16_HA": {reflect.TypeOf(q.R_PPC_EMB_NADDR16_HA), constant.MakeInt64(int64(q.R_PPC_EMB_NADDR16_HA))}, + "R_PPC_EMB_NADDR16_HI": {reflect.TypeOf(q.R_PPC_EMB_NADDR16_HI), constant.MakeInt64(int64(q.R_PPC_EMB_NADDR16_HI))}, + "R_PPC_EMB_NADDR16_LO": {reflect.TypeOf(q.R_PPC_EMB_NADDR16_LO), constant.MakeInt64(int64(q.R_PPC_EMB_NADDR16_LO))}, + "R_PPC_EMB_NADDR32": {reflect.TypeOf(q.R_PPC_EMB_NADDR32), constant.MakeInt64(int64(q.R_PPC_EMB_NADDR32))}, + "R_PPC_EMB_RELSDA": {reflect.TypeOf(q.R_PPC_EMB_RELSDA), constant.MakeInt64(int64(q.R_PPC_EMB_RELSDA))}, + "R_PPC_EMB_RELSEC16": {reflect.TypeOf(q.R_PPC_EMB_RELSEC16), constant.MakeInt64(int64(q.R_PPC_EMB_RELSEC16))}, + "R_PPC_EMB_RELST_HA": {reflect.TypeOf(q.R_PPC_EMB_RELST_HA), constant.MakeInt64(int64(q.R_PPC_EMB_RELST_HA))}, + "R_PPC_EMB_RELST_HI": {reflect.TypeOf(q.R_PPC_EMB_RELST_HI), constant.MakeInt64(int64(q.R_PPC_EMB_RELST_HI))}, + "R_PPC_EMB_RELST_LO": {reflect.TypeOf(q.R_PPC_EMB_RELST_LO), constant.MakeInt64(int64(q.R_PPC_EMB_RELST_LO))}, + "R_PPC_EMB_SDA21": {reflect.TypeOf(q.R_PPC_EMB_SDA21), constant.MakeInt64(int64(q.R_PPC_EMB_SDA21))}, + "R_PPC_EMB_SDA2I16": {reflect.TypeOf(q.R_PPC_EMB_SDA2I16), constant.MakeInt64(int64(q.R_PPC_EMB_SDA2I16))}, + "R_PPC_EMB_SDA2REL": {reflect.TypeOf(q.R_PPC_EMB_SDA2REL), constant.MakeInt64(int64(q.R_PPC_EMB_SDA2REL))}, + "R_PPC_EMB_SDAI16": {reflect.TypeOf(q.R_PPC_EMB_SDAI16), constant.MakeInt64(int64(q.R_PPC_EMB_SDAI16))}, + "R_PPC_GLOB_DAT": {reflect.TypeOf(q.R_PPC_GLOB_DAT), constant.MakeInt64(int64(q.R_PPC_GLOB_DAT))}, + "R_PPC_GOT16": {reflect.TypeOf(q.R_PPC_GOT16), constant.MakeInt64(int64(q.R_PPC_GOT16))}, + "R_PPC_GOT16_HA": {reflect.TypeOf(q.R_PPC_GOT16_HA), constant.MakeInt64(int64(q.R_PPC_GOT16_HA))}, + "R_PPC_GOT16_HI": {reflect.TypeOf(q.R_PPC_GOT16_HI), constant.MakeInt64(int64(q.R_PPC_GOT16_HI))}, + "R_PPC_GOT16_LO": {reflect.TypeOf(q.R_PPC_GOT16_LO), constant.MakeInt64(int64(q.R_PPC_GOT16_LO))}, + "R_PPC_GOT_TLSGD16": {reflect.TypeOf(q.R_PPC_GOT_TLSGD16), constant.MakeInt64(int64(q.R_PPC_GOT_TLSGD16))}, + "R_PPC_GOT_TLSGD16_HA": {reflect.TypeOf(q.R_PPC_GOT_TLSGD16_HA), constant.MakeInt64(int64(q.R_PPC_GOT_TLSGD16_HA))}, + "R_PPC_GOT_TLSGD16_HI": {reflect.TypeOf(q.R_PPC_GOT_TLSGD16_HI), constant.MakeInt64(int64(q.R_PPC_GOT_TLSGD16_HI))}, + "R_PPC_GOT_TLSGD16_LO": {reflect.TypeOf(q.R_PPC_GOT_TLSGD16_LO), constant.MakeInt64(int64(q.R_PPC_GOT_TLSGD16_LO))}, + "R_PPC_GOT_TLSLD16": {reflect.TypeOf(q.R_PPC_GOT_TLSLD16), constant.MakeInt64(int64(q.R_PPC_GOT_TLSLD16))}, + "R_PPC_GOT_TLSLD16_HA": {reflect.TypeOf(q.R_PPC_GOT_TLSLD16_HA), constant.MakeInt64(int64(q.R_PPC_GOT_TLSLD16_HA))}, + "R_PPC_GOT_TLSLD16_HI": {reflect.TypeOf(q.R_PPC_GOT_TLSLD16_HI), constant.MakeInt64(int64(q.R_PPC_GOT_TLSLD16_HI))}, + "R_PPC_GOT_TLSLD16_LO": {reflect.TypeOf(q.R_PPC_GOT_TLSLD16_LO), constant.MakeInt64(int64(q.R_PPC_GOT_TLSLD16_LO))}, + "R_PPC_GOT_TPREL16": {reflect.TypeOf(q.R_PPC_GOT_TPREL16), constant.MakeInt64(int64(q.R_PPC_GOT_TPREL16))}, + "R_PPC_GOT_TPREL16_HA": {reflect.TypeOf(q.R_PPC_GOT_TPREL16_HA), constant.MakeInt64(int64(q.R_PPC_GOT_TPREL16_HA))}, + "R_PPC_GOT_TPREL16_HI": {reflect.TypeOf(q.R_PPC_GOT_TPREL16_HI), constant.MakeInt64(int64(q.R_PPC_GOT_TPREL16_HI))}, + "R_PPC_GOT_TPREL16_LO": {reflect.TypeOf(q.R_PPC_GOT_TPREL16_LO), constant.MakeInt64(int64(q.R_PPC_GOT_TPREL16_LO))}, + "R_PPC_JMP_SLOT": {reflect.TypeOf(q.R_PPC_JMP_SLOT), constant.MakeInt64(int64(q.R_PPC_JMP_SLOT))}, + "R_PPC_LOCAL24PC": {reflect.TypeOf(q.R_PPC_LOCAL24PC), constant.MakeInt64(int64(q.R_PPC_LOCAL24PC))}, + "R_PPC_NONE": {reflect.TypeOf(q.R_PPC_NONE), constant.MakeInt64(int64(q.R_PPC_NONE))}, + "R_PPC_PLT16_HA": {reflect.TypeOf(q.R_PPC_PLT16_HA), constant.MakeInt64(int64(q.R_PPC_PLT16_HA))}, + "R_PPC_PLT16_HI": {reflect.TypeOf(q.R_PPC_PLT16_HI), constant.MakeInt64(int64(q.R_PPC_PLT16_HI))}, + "R_PPC_PLT16_LO": {reflect.TypeOf(q.R_PPC_PLT16_LO), constant.MakeInt64(int64(q.R_PPC_PLT16_LO))}, + "R_PPC_PLT32": {reflect.TypeOf(q.R_PPC_PLT32), constant.MakeInt64(int64(q.R_PPC_PLT32))}, + "R_PPC_PLTREL24": {reflect.TypeOf(q.R_PPC_PLTREL24), constant.MakeInt64(int64(q.R_PPC_PLTREL24))}, + "R_PPC_PLTREL32": {reflect.TypeOf(q.R_PPC_PLTREL32), constant.MakeInt64(int64(q.R_PPC_PLTREL32))}, + "R_PPC_REL14": {reflect.TypeOf(q.R_PPC_REL14), constant.MakeInt64(int64(q.R_PPC_REL14))}, + "R_PPC_REL14_BRNTAKEN": {reflect.TypeOf(q.R_PPC_REL14_BRNTAKEN), constant.MakeInt64(int64(q.R_PPC_REL14_BRNTAKEN))}, + "R_PPC_REL14_BRTAKEN": {reflect.TypeOf(q.R_PPC_REL14_BRTAKEN), constant.MakeInt64(int64(q.R_PPC_REL14_BRTAKEN))}, + "R_PPC_REL24": {reflect.TypeOf(q.R_PPC_REL24), constant.MakeInt64(int64(q.R_PPC_REL24))}, + "R_PPC_REL32": {reflect.TypeOf(q.R_PPC_REL32), constant.MakeInt64(int64(q.R_PPC_REL32))}, + "R_PPC_RELATIVE": {reflect.TypeOf(q.R_PPC_RELATIVE), constant.MakeInt64(int64(q.R_PPC_RELATIVE))}, + "R_PPC_SDAREL16": {reflect.TypeOf(q.R_PPC_SDAREL16), constant.MakeInt64(int64(q.R_PPC_SDAREL16))}, + "R_PPC_SECTOFF": {reflect.TypeOf(q.R_PPC_SECTOFF), constant.MakeInt64(int64(q.R_PPC_SECTOFF))}, + "R_PPC_SECTOFF_HA": {reflect.TypeOf(q.R_PPC_SECTOFF_HA), constant.MakeInt64(int64(q.R_PPC_SECTOFF_HA))}, + "R_PPC_SECTOFF_HI": {reflect.TypeOf(q.R_PPC_SECTOFF_HI), constant.MakeInt64(int64(q.R_PPC_SECTOFF_HI))}, + "R_PPC_SECTOFF_LO": {reflect.TypeOf(q.R_PPC_SECTOFF_LO), constant.MakeInt64(int64(q.R_PPC_SECTOFF_LO))}, + "R_PPC_TLS": {reflect.TypeOf(q.R_PPC_TLS), constant.MakeInt64(int64(q.R_PPC_TLS))}, + "R_PPC_TPREL16": {reflect.TypeOf(q.R_PPC_TPREL16), constant.MakeInt64(int64(q.R_PPC_TPREL16))}, + "R_PPC_TPREL16_HA": {reflect.TypeOf(q.R_PPC_TPREL16_HA), constant.MakeInt64(int64(q.R_PPC_TPREL16_HA))}, + "R_PPC_TPREL16_HI": {reflect.TypeOf(q.R_PPC_TPREL16_HI), constant.MakeInt64(int64(q.R_PPC_TPREL16_HI))}, + "R_PPC_TPREL16_LO": {reflect.TypeOf(q.R_PPC_TPREL16_LO), constant.MakeInt64(int64(q.R_PPC_TPREL16_LO))}, + "R_PPC_TPREL32": {reflect.TypeOf(q.R_PPC_TPREL32), constant.MakeInt64(int64(q.R_PPC_TPREL32))}, + "R_PPC_UADDR16": {reflect.TypeOf(q.R_PPC_UADDR16), constant.MakeInt64(int64(q.R_PPC_UADDR16))}, + "R_PPC_UADDR32": {reflect.TypeOf(q.R_PPC_UADDR32), constant.MakeInt64(int64(q.R_PPC_UADDR32))}, + "R_RISCV_32": {reflect.TypeOf(q.R_RISCV_32), constant.MakeInt64(int64(q.R_RISCV_32))}, + "R_RISCV_32_PCREL": {reflect.TypeOf(q.R_RISCV_32_PCREL), constant.MakeInt64(int64(q.R_RISCV_32_PCREL))}, + "R_RISCV_64": {reflect.TypeOf(q.R_RISCV_64), constant.MakeInt64(int64(q.R_RISCV_64))}, + "R_RISCV_ADD16": {reflect.TypeOf(q.R_RISCV_ADD16), constant.MakeInt64(int64(q.R_RISCV_ADD16))}, + "R_RISCV_ADD32": {reflect.TypeOf(q.R_RISCV_ADD32), constant.MakeInt64(int64(q.R_RISCV_ADD32))}, + "R_RISCV_ADD64": {reflect.TypeOf(q.R_RISCV_ADD64), constant.MakeInt64(int64(q.R_RISCV_ADD64))}, + "R_RISCV_ADD8": {reflect.TypeOf(q.R_RISCV_ADD8), constant.MakeInt64(int64(q.R_RISCV_ADD8))}, + "R_RISCV_ALIGN": {reflect.TypeOf(q.R_RISCV_ALIGN), constant.MakeInt64(int64(q.R_RISCV_ALIGN))}, + "R_RISCV_BRANCH": {reflect.TypeOf(q.R_RISCV_BRANCH), constant.MakeInt64(int64(q.R_RISCV_BRANCH))}, + "R_RISCV_CALL": {reflect.TypeOf(q.R_RISCV_CALL), constant.MakeInt64(int64(q.R_RISCV_CALL))}, + "R_RISCV_CALL_PLT": {reflect.TypeOf(q.R_RISCV_CALL_PLT), constant.MakeInt64(int64(q.R_RISCV_CALL_PLT))}, + "R_RISCV_COPY": {reflect.TypeOf(q.R_RISCV_COPY), constant.MakeInt64(int64(q.R_RISCV_COPY))}, + "R_RISCV_GNU_VTENTRY": {reflect.TypeOf(q.R_RISCV_GNU_VTENTRY), constant.MakeInt64(int64(q.R_RISCV_GNU_VTENTRY))}, + "R_RISCV_GNU_VTINHERIT": {reflect.TypeOf(q.R_RISCV_GNU_VTINHERIT), constant.MakeInt64(int64(q.R_RISCV_GNU_VTINHERIT))}, + "R_RISCV_GOT_HI20": {reflect.TypeOf(q.R_RISCV_GOT_HI20), constant.MakeInt64(int64(q.R_RISCV_GOT_HI20))}, + "R_RISCV_GPREL_I": {reflect.TypeOf(q.R_RISCV_GPREL_I), constant.MakeInt64(int64(q.R_RISCV_GPREL_I))}, + "R_RISCV_GPREL_S": {reflect.TypeOf(q.R_RISCV_GPREL_S), constant.MakeInt64(int64(q.R_RISCV_GPREL_S))}, + "R_RISCV_HI20": {reflect.TypeOf(q.R_RISCV_HI20), constant.MakeInt64(int64(q.R_RISCV_HI20))}, + "R_RISCV_JAL": {reflect.TypeOf(q.R_RISCV_JAL), constant.MakeInt64(int64(q.R_RISCV_JAL))}, + "R_RISCV_JUMP_SLOT": {reflect.TypeOf(q.R_RISCV_JUMP_SLOT), constant.MakeInt64(int64(q.R_RISCV_JUMP_SLOT))}, + "R_RISCV_LO12_I": {reflect.TypeOf(q.R_RISCV_LO12_I), constant.MakeInt64(int64(q.R_RISCV_LO12_I))}, + "R_RISCV_LO12_S": {reflect.TypeOf(q.R_RISCV_LO12_S), constant.MakeInt64(int64(q.R_RISCV_LO12_S))}, + "R_RISCV_NONE": {reflect.TypeOf(q.R_RISCV_NONE), constant.MakeInt64(int64(q.R_RISCV_NONE))}, + "R_RISCV_PCREL_HI20": {reflect.TypeOf(q.R_RISCV_PCREL_HI20), constant.MakeInt64(int64(q.R_RISCV_PCREL_HI20))}, + "R_RISCV_PCREL_LO12_I": {reflect.TypeOf(q.R_RISCV_PCREL_LO12_I), constant.MakeInt64(int64(q.R_RISCV_PCREL_LO12_I))}, + "R_RISCV_PCREL_LO12_S": {reflect.TypeOf(q.R_RISCV_PCREL_LO12_S), constant.MakeInt64(int64(q.R_RISCV_PCREL_LO12_S))}, + "R_RISCV_RELATIVE": {reflect.TypeOf(q.R_RISCV_RELATIVE), constant.MakeInt64(int64(q.R_RISCV_RELATIVE))}, + "R_RISCV_RELAX": {reflect.TypeOf(q.R_RISCV_RELAX), constant.MakeInt64(int64(q.R_RISCV_RELAX))}, + "R_RISCV_RVC_BRANCH": {reflect.TypeOf(q.R_RISCV_RVC_BRANCH), constant.MakeInt64(int64(q.R_RISCV_RVC_BRANCH))}, + "R_RISCV_RVC_JUMP": {reflect.TypeOf(q.R_RISCV_RVC_JUMP), constant.MakeInt64(int64(q.R_RISCV_RVC_JUMP))}, + "R_RISCV_RVC_LUI": {reflect.TypeOf(q.R_RISCV_RVC_LUI), constant.MakeInt64(int64(q.R_RISCV_RVC_LUI))}, + "R_RISCV_SET16": {reflect.TypeOf(q.R_RISCV_SET16), constant.MakeInt64(int64(q.R_RISCV_SET16))}, + "R_RISCV_SET32": {reflect.TypeOf(q.R_RISCV_SET32), constant.MakeInt64(int64(q.R_RISCV_SET32))}, + "R_RISCV_SET6": {reflect.TypeOf(q.R_RISCV_SET6), constant.MakeInt64(int64(q.R_RISCV_SET6))}, + "R_RISCV_SET8": {reflect.TypeOf(q.R_RISCV_SET8), constant.MakeInt64(int64(q.R_RISCV_SET8))}, + "R_RISCV_SUB16": {reflect.TypeOf(q.R_RISCV_SUB16), constant.MakeInt64(int64(q.R_RISCV_SUB16))}, + "R_RISCV_SUB32": {reflect.TypeOf(q.R_RISCV_SUB32), constant.MakeInt64(int64(q.R_RISCV_SUB32))}, + "R_RISCV_SUB6": {reflect.TypeOf(q.R_RISCV_SUB6), constant.MakeInt64(int64(q.R_RISCV_SUB6))}, + "R_RISCV_SUB64": {reflect.TypeOf(q.R_RISCV_SUB64), constant.MakeInt64(int64(q.R_RISCV_SUB64))}, + "R_RISCV_SUB8": {reflect.TypeOf(q.R_RISCV_SUB8), constant.MakeInt64(int64(q.R_RISCV_SUB8))}, + "R_RISCV_TLS_DTPMOD32": {reflect.TypeOf(q.R_RISCV_TLS_DTPMOD32), constant.MakeInt64(int64(q.R_RISCV_TLS_DTPMOD32))}, + "R_RISCV_TLS_DTPMOD64": {reflect.TypeOf(q.R_RISCV_TLS_DTPMOD64), constant.MakeInt64(int64(q.R_RISCV_TLS_DTPMOD64))}, + "R_RISCV_TLS_DTPREL32": {reflect.TypeOf(q.R_RISCV_TLS_DTPREL32), constant.MakeInt64(int64(q.R_RISCV_TLS_DTPREL32))}, + "R_RISCV_TLS_DTPREL64": {reflect.TypeOf(q.R_RISCV_TLS_DTPREL64), constant.MakeInt64(int64(q.R_RISCV_TLS_DTPREL64))}, + "R_RISCV_TLS_GD_HI20": {reflect.TypeOf(q.R_RISCV_TLS_GD_HI20), constant.MakeInt64(int64(q.R_RISCV_TLS_GD_HI20))}, + "R_RISCV_TLS_GOT_HI20": {reflect.TypeOf(q.R_RISCV_TLS_GOT_HI20), constant.MakeInt64(int64(q.R_RISCV_TLS_GOT_HI20))}, + "R_RISCV_TLS_TPREL32": {reflect.TypeOf(q.R_RISCV_TLS_TPREL32), constant.MakeInt64(int64(q.R_RISCV_TLS_TPREL32))}, + "R_RISCV_TLS_TPREL64": {reflect.TypeOf(q.R_RISCV_TLS_TPREL64), constant.MakeInt64(int64(q.R_RISCV_TLS_TPREL64))}, + "R_RISCV_TPREL_ADD": {reflect.TypeOf(q.R_RISCV_TPREL_ADD), constant.MakeInt64(int64(q.R_RISCV_TPREL_ADD))}, + "R_RISCV_TPREL_HI20": {reflect.TypeOf(q.R_RISCV_TPREL_HI20), constant.MakeInt64(int64(q.R_RISCV_TPREL_HI20))}, + "R_RISCV_TPREL_I": {reflect.TypeOf(q.R_RISCV_TPREL_I), constant.MakeInt64(int64(q.R_RISCV_TPREL_I))}, + "R_RISCV_TPREL_LO12_I": {reflect.TypeOf(q.R_RISCV_TPREL_LO12_I), constant.MakeInt64(int64(q.R_RISCV_TPREL_LO12_I))}, + "R_RISCV_TPREL_LO12_S": {reflect.TypeOf(q.R_RISCV_TPREL_LO12_S), constant.MakeInt64(int64(q.R_RISCV_TPREL_LO12_S))}, + "R_RISCV_TPREL_S": {reflect.TypeOf(q.R_RISCV_TPREL_S), constant.MakeInt64(int64(q.R_RISCV_TPREL_S))}, + "R_SPARC_10": {reflect.TypeOf(q.R_SPARC_10), constant.MakeInt64(int64(q.R_SPARC_10))}, + "R_SPARC_11": {reflect.TypeOf(q.R_SPARC_11), constant.MakeInt64(int64(q.R_SPARC_11))}, + "R_SPARC_13": {reflect.TypeOf(q.R_SPARC_13), constant.MakeInt64(int64(q.R_SPARC_13))}, + "R_SPARC_16": {reflect.TypeOf(q.R_SPARC_16), constant.MakeInt64(int64(q.R_SPARC_16))}, + "R_SPARC_22": {reflect.TypeOf(q.R_SPARC_22), constant.MakeInt64(int64(q.R_SPARC_22))}, + "R_SPARC_32": {reflect.TypeOf(q.R_SPARC_32), constant.MakeInt64(int64(q.R_SPARC_32))}, + "R_SPARC_5": {reflect.TypeOf(q.R_SPARC_5), constant.MakeInt64(int64(q.R_SPARC_5))}, + "R_SPARC_6": {reflect.TypeOf(q.R_SPARC_6), constant.MakeInt64(int64(q.R_SPARC_6))}, + "R_SPARC_64": {reflect.TypeOf(q.R_SPARC_64), constant.MakeInt64(int64(q.R_SPARC_64))}, + "R_SPARC_7": {reflect.TypeOf(q.R_SPARC_7), constant.MakeInt64(int64(q.R_SPARC_7))}, + "R_SPARC_8": {reflect.TypeOf(q.R_SPARC_8), constant.MakeInt64(int64(q.R_SPARC_8))}, + "R_SPARC_COPY": {reflect.TypeOf(q.R_SPARC_COPY), constant.MakeInt64(int64(q.R_SPARC_COPY))}, + "R_SPARC_DISP16": {reflect.TypeOf(q.R_SPARC_DISP16), constant.MakeInt64(int64(q.R_SPARC_DISP16))}, + "R_SPARC_DISP32": {reflect.TypeOf(q.R_SPARC_DISP32), constant.MakeInt64(int64(q.R_SPARC_DISP32))}, + "R_SPARC_DISP64": {reflect.TypeOf(q.R_SPARC_DISP64), constant.MakeInt64(int64(q.R_SPARC_DISP64))}, + "R_SPARC_DISP8": {reflect.TypeOf(q.R_SPARC_DISP8), constant.MakeInt64(int64(q.R_SPARC_DISP8))}, + "R_SPARC_GLOB_DAT": {reflect.TypeOf(q.R_SPARC_GLOB_DAT), constant.MakeInt64(int64(q.R_SPARC_GLOB_DAT))}, + "R_SPARC_GLOB_JMP": {reflect.TypeOf(q.R_SPARC_GLOB_JMP), constant.MakeInt64(int64(q.R_SPARC_GLOB_JMP))}, + "R_SPARC_GOT10": {reflect.TypeOf(q.R_SPARC_GOT10), constant.MakeInt64(int64(q.R_SPARC_GOT10))}, + "R_SPARC_GOT13": {reflect.TypeOf(q.R_SPARC_GOT13), constant.MakeInt64(int64(q.R_SPARC_GOT13))}, + "R_SPARC_GOT22": {reflect.TypeOf(q.R_SPARC_GOT22), constant.MakeInt64(int64(q.R_SPARC_GOT22))}, + "R_SPARC_H44": {reflect.TypeOf(q.R_SPARC_H44), constant.MakeInt64(int64(q.R_SPARC_H44))}, + "R_SPARC_HH22": {reflect.TypeOf(q.R_SPARC_HH22), constant.MakeInt64(int64(q.R_SPARC_HH22))}, + "R_SPARC_HI22": {reflect.TypeOf(q.R_SPARC_HI22), constant.MakeInt64(int64(q.R_SPARC_HI22))}, + "R_SPARC_HIPLT22": {reflect.TypeOf(q.R_SPARC_HIPLT22), constant.MakeInt64(int64(q.R_SPARC_HIPLT22))}, + "R_SPARC_HIX22": {reflect.TypeOf(q.R_SPARC_HIX22), constant.MakeInt64(int64(q.R_SPARC_HIX22))}, + "R_SPARC_HM10": {reflect.TypeOf(q.R_SPARC_HM10), constant.MakeInt64(int64(q.R_SPARC_HM10))}, + "R_SPARC_JMP_SLOT": {reflect.TypeOf(q.R_SPARC_JMP_SLOT), constant.MakeInt64(int64(q.R_SPARC_JMP_SLOT))}, + "R_SPARC_L44": {reflect.TypeOf(q.R_SPARC_L44), constant.MakeInt64(int64(q.R_SPARC_L44))}, + "R_SPARC_LM22": {reflect.TypeOf(q.R_SPARC_LM22), constant.MakeInt64(int64(q.R_SPARC_LM22))}, + "R_SPARC_LO10": {reflect.TypeOf(q.R_SPARC_LO10), constant.MakeInt64(int64(q.R_SPARC_LO10))}, + "R_SPARC_LOPLT10": {reflect.TypeOf(q.R_SPARC_LOPLT10), constant.MakeInt64(int64(q.R_SPARC_LOPLT10))}, + "R_SPARC_LOX10": {reflect.TypeOf(q.R_SPARC_LOX10), constant.MakeInt64(int64(q.R_SPARC_LOX10))}, + "R_SPARC_M44": {reflect.TypeOf(q.R_SPARC_M44), constant.MakeInt64(int64(q.R_SPARC_M44))}, + "R_SPARC_NONE": {reflect.TypeOf(q.R_SPARC_NONE), constant.MakeInt64(int64(q.R_SPARC_NONE))}, + "R_SPARC_OLO10": {reflect.TypeOf(q.R_SPARC_OLO10), constant.MakeInt64(int64(q.R_SPARC_OLO10))}, + "R_SPARC_PC10": {reflect.TypeOf(q.R_SPARC_PC10), constant.MakeInt64(int64(q.R_SPARC_PC10))}, + "R_SPARC_PC22": {reflect.TypeOf(q.R_SPARC_PC22), constant.MakeInt64(int64(q.R_SPARC_PC22))}, + "R_SPARC_PCPLT10": {reflect.TypeOf(q.R_SPARC_PCPLT10), constant.MakeInt64(int64(q.R_SPARC_PCPLT10))}, + "R_SPARC_PCPLT22": {reflect.TypeOf(q.R_SPARC_PCPLT22), constant.MakeInt64(int64(q.R_SPARC_PCPLT22))}, + "R_SPARC_PCPLT32": {reflect.TypeOf(q.R_SPARC_PCPLT32), constant.MakeInt64(int64(q.R_SPARC_PCPLT32))}, + "R_SPARC_PC_HH22": {reflect.TypeOf(q.R_SPARC_PC_HH22), constant.MakeInt64(int64(q.R_SPARC_PC_HH22))}, + "R_SPARC_PC_HM10": {reflect.TypeOf(q.R_SPARC_PC_HM10), constant.MakeInt64(int64(q.R_SPARC_PC_HM10))}, + "R_SPARC_PC_LM22": {reflect.TypeOf(q.R_SPARC_PC_LM22), constant.MakeInt64(int64(q.R_SPARC_PC_LM22))}, + "R_SPARC_PLT32": {reflect.TypeOf(q.R_SPARC_PLT32), constant.MakeInt64(int64(q.R_SPARC_PLT32))}, + "R_SPARC_PLT64": {reflect.TypeOf(q.R_SPARC_PLT64), constant.MakeInt64(int64(q.R_SPARC_PLT64))}, + "R_SPARC_REGISTER": {reflect.TypeOf(q.R_SPARC_REGISTER), constant.MakeInt64(int64(q.R_SPARC_REGISTER))}, + "R_SPARC_RELATIVE": {reflect.TypeOf(q.R_SPARC_RELATIVE), constant.MakeInt64(int64(q.R_SPARC_RELATIVE))}, + "R_SPARC_UA16": {reflect.TypeOf(q.R_SPARC_UA16), constant.MakeInt64(int64(q.R_SPARC_UA16))}, + "R_SPARC_UA32": {reflect.TypeOf(q.R_SPARC_UA32), constant.MakeInt64(int64(q.R_SPARC_UA32))}, + "R_SPARC_UA64": {reflect.TypeOf(q.R_SPARC_UA64), constant.MakeInt64(int64(q.R_SPARC_UA64))}, + "R_SPARC_WDISP16": {reflect.TypeOf(q.R_SPARC_WDISP16), constant.MakeInt64(int64(q.R_SPARC_WDISP16))}, + "R_SPARC_WDISP19": {reflect.TypeOf(q.R_SPARC_WDISP19), constant.MakeInt64(int64(q.R_SPARC_WDISP19))}, + "R_SPARC_WDISP22": {reflect.TypeOf(q.R_SPARC_WDISP22), constant.MakeInt64(int64(q.R_SPARC_WDISP22))}, + "R_SPARC_WDISP30": {reflect.TypeOf(q.R_SPARC_WDISP30), constant.MakeInt64(int64(q.R_SPARC_WDISP30))}, + "R_SPARC_WPLT30": {reflect.TypeOf(q.R_SPARC_WPLT30), constant.MakeInt64(int64(q.R_SPARC_WPLT30))}, + "R_X86_64_16": {reflect.TypeOf(q.R_X86_64_16), constant.MakeInt64(int64(q.R_X86_64_16))}, + "R_X86_64_32": {reflect.TypeOf(q.R_X86_64_32), constant.MakeInt64(int64(q.R_X86_64_32))}, + "R_X86_64_32S": {reflect.TypeOf(q.R_X86_64_32S), constant.MakeInt64(int64(q.R_X86_64_32S))}, + "R_X86_64_64": {reflect.TypeOf(q.R_X86_64_64), constant.MakeInt64(int64(q.R_X86_64_64))}, + "R_X86_64_8": {reflect.TypeOf(q.R_X86_64_8), constant.MakeInt64(int64(q.R_X86_64_8))}, + "R_X86_64_COPY": {reflect.TypeOf(q.R_X86_64_COPY), constant.MakeInt64(int64(q.R_X86_64_COPY))}, + "R_X86_64_DTPMOD64": {reflect.TypeOf(q.R_X86_64_DTPMOD64), constant.MakeInt64(int64(q.R_X86_64_DTPMOD64))}, + "R_X86_64_DTPOFF32": {reflect.TypeOf(q.R_X86_64_DTPOFF32), constant.MakeInt64(int64(q.R_X86_64_DTPOFF32))}, + "R_X86_64_DTPOFF64": {reflect.TypeOf(q.R_X86_64_DTPOFF64), constant.MakeInt64(int64(q.R_X86_64_DTPOFF64))}, + "R_X86_64_GLOB_DAT": {reflect.TypeOf(q.R_X86_64_GLOB_DAT), constant.MakeInt64(int64(q.R_X86_64_GLOB_DAT))}, + "R_X86_64_GOT32": {reflect.TypeOf(q.R_X86_64_GOT32), constant.MakeInt64(int64(q.R_X86_64_GOT32))}, + "R_X86_64_GOT64": {reflect.TypeOf(q.R_X86_64_GOT64), constant.MakeInt64(int64(q.R_X86_64_GOT64))}, + "R_X86_64_GOTOFF64": {reflect.TypeOf(q.R_X86_64_GOTOFF64), constant.MakeInt64(int64(q.R_X86_64_GOTOFF64))}, + "R_X86_64_GOTPC32": {reflect.TypeOf(q.R_X86_64_GOTPC32), constant.MakeInt64(int64(q.R_X86_64_GOTPC32))}, + "R_X86_64_GOTPC32_TLSDESC": {reflect.TypeOf(q.R_X86_64_GOTPC32_TLSDESC), constant.MakeInt64(int64(q.R_X86_64_GOTPC32_TLSDESC))}, + "R_X86_64_GOTPC64": {reflect.TypeOf(q.R_X86_64_GOTPC64), constant.MakeInt64(int64(q.R_X86_64_GOTPC64))}, + "R_X86_64_GOTPCREL": {reflect.TypeOf(q.R_X86_64_GOTPCREL), constant.MakeInt64(int64(q.R_X86_64_GOTPCREL))}, + "R_X86_64_GOTPCREL64": {reflect.TypeOf(q.R_X86_64_GOTPCREL64), constant.MakeInt64(int64(q.R_X86_64_GOTPCREL64))}, + "R_X86_64_GOTPCRELX": {reflect.TypeOf(q.R_X86_64_GOTPCRELX), constant.MakeInt64(int64(q.R_X86_64_GOTPCRELX))}, + "R_X86_64_GOTPLT64": {reflect.TypeOf(q.R_X86_64_GOTPLT64), constant.MakeInt64(int64(q.R_X86_64_GOTPLT64))}, + "R_X86_64_GOTTPOFF": {reflect.TypeOf(q.R_X86_64_GOTTPOFF), constant.MakeInt64(int64(q.R_X86_64_GOTTPOFF))}, + "R_X86_64_IRELATIVE": {reflect.TypeOf(q.R_X86_64_IRELATIVE), constant.MakeInt64(int64(q.R_X86_64_IRELATIVE))}, + "R_X86_64_JMP_SLOT": {reflect.TypeOf(q.R_X86_64_JMP_SLOT), constant.MakeInt64(int64(q.R_X86_64_JMP_SLOT))}, + "R_X86_64_NONE": {reflect.TypeOf(q.R_X86_64_NONE), constant.MakeInt64(int64(q.R_X86_64_NONE))}, + "R_X86_64_PC16": {reflect.TypeOf(q.R_X86_64_PC16), constant.MakeInt64(int64(q.R_X86_64_PC16))}, + "R_X86_64_PC32": {reflect.TypeOf(q.R_X86_64_PC32), constant.MakeInt64(int64(q.R_X86_64_PC32))}, + "R_X86_64_PC32_BND": {reflect.TypeOf(q.R_X86_64_PC32_BND), constant.MakeInt64(int64(q.R_X86_64_PC32_BND))}, + "R_X86_64_PC64": {reflect.TypeOf(q.R_X86_64_PC64), constant.MakeInt64(int64(q.R_X86_64_PC64))}, + "R_X86_64_PC8": {reflect.TypeOf(q.R_X86_64_PC8), constant.MakeInt64(int64(q.R_X86_64_PC8))}, + "R_X86_64_PLT32": {reflect.TypeOf(q.R_X86_64_PLT32), constant.MakeInt64(int64(q.R_X86_64_PLT32))}, + "R_X86_64_PLT32_BND": {reflect.TypeOf(q.R_X86_64_PLT32_BND), constant.MakeInt64(int64(q.R_X86_64_PLT32_BND))}, + "R_X86_64_PLTOFF64": {reflect.TypeOf(q.R_X86_64_PLTOFF64), constant.MakeInt64(int64(q.R_X86_64_PLTOFF64))}, + "R_X86_64_RELATIVE": {reflect.TypeOf(q.R_X86_64_RELATIVE), constant.MakeInt64(int64(q.R_X86_64_RELATIVE))}, + "R_X86_64_RELATIVE64": {reflect.TypeOf(q.R_X86_64_RELATIVE64), constant.MakeInt64(int64(q.R_X86_64_RELATIVE64))}, + "R_X86_64_REX_GOTPCRELX": {reflect.TypeOf(q.R_X86_64_REX_GOTPCRELX), constant.MakeInt64(int64(q.R_X86_64_REX_GOTPCRELX))}, + "R_X86_64_SIZE32": {reflect.TypeOf(q.R_X86_64_SIZE32), constant.MakeInt64(int64(q.R_X86_64_SIZE32))}, + "R_X86_64_SIZE64": {reflect.TypeOf(q.R_X86_64_SIZE64), constant.MakeInt64(int64(q.R_X86_64_SIZE64))}, + "R_X86_64_TLSDESC": {reflect.TypeOf(q.R_X86_64_TLSDESC), constant.MakeInt64(int64(q.R_X86_64_TLSDESC))}, + "R_X86_64_TLSDESC_CALL": {reflect.TypeOf(q.R_X86_64_TLSDESC_CALL), constant.MakeInt64(int64(q.R_X86_64_TLSDESC_CALL))}, + "R_X86_64_TLSGD": {reflect.TypeOf(q.R_X86_64_TLSGD), constant.MakeInt64(int64(q.R_X86_64_TLSGD))}, + "R_X86_64_TLSLD": {reflect.TypeOf(q.R_X86_64_TLSLD), constant.MakeInt64(int64(q.R_X86_64_TLSLD))}, + "R_X86_64_TPOFF32": {reflect.TypeOf(q.R_X86_64_TPOFF32), constant.MakeInt64(int64(q.R_X86_64_TPOFF32))}, + "R_X86_64_TPOFF64": {reflect.TypeOf(q.R_X86_64_TPOFF64), constant.MakeInt64(int64(q.R_X86_64_TPOFF64))}, + "SHF_ALLOC": {reflect.TypeOf(q.SHF_ALLOC), constant.MakeInt64(int64(q.SHF_ALLOC))}, + "SHF_COMPRESSED": {reflect.TypeOf(q.SHF_COMPRESSED), constant.MakeInt64(int64(q.SHF_COMPRESSED))}, + "SHF_EXECINSTR": {reflect.TypeOf(q.SHF_EXECINSTR), constant.MakeInt64(int64(q.SHF_EXECINSTR))}, + "SHF_GROUP": {reflect.TypeOf(q.SHF_GROUP), constant.MakeInt64(int64(q.SHF_GROUP))}, + "SHF_INFO_LINK": {reflect.TypeOf(q.SHF_INFO_LINK), constant.MakeInt64(int64(q.SHF_INFO_LINK))}, + "SHF_LINK_ORDER": {reflect.TypeOf(q.SHF_LINK_ORDER), constant.MakeInt64(int64(q.SHF_LINK_ORDER))}, + "SHF_MASKOS": {reflect.TypeOf(q.SHF_MASKOS), constant.MakeInt64(int64(q.SHF_MASKOS))}, + "SHF_MASKPROC": {reflect.TypeOf(q.SHF_MASKPROC), constant.MakeInt64(int64(q.SHF_MASKPROC))}, + "SHF_MERGE": {reflect.TypeOf(q.SHF_MERGE), constant.MakeInt64(int64(q.SHF_MERGE))}, + "SHF_OS_NONCONFORMING": {reflect.TypeOf(q.SHF_OS_NONCONFORMING), constant.MakeInt64(int64(q.SHF_OS_NONCONFORMING))}, + "SHF_STRINGS": {reflect.TypeOf(q.SHF_STRINGS), constant.MakeInt64(int64(q.SHF_STRINGS))}, + "SHF_TLS": {reflect.TypeOf(q.SHF_TLS), constant.MakeInt64(int64(q.SHF_TLS))}, + "SHF_WRITE": {reflect.TypeOf(q.SHF_WRITE), constant.MakeInt64(int64(q.SHF_WRITE))}, + "SHN_ABS": {reflect.TypeOf(q.SHN_ABS), constant.MakeInt64(int64(q.SHN_ABS))}, + "SHN_COMMON": {reflect.TypeOf(q.SHN_COMMON), constant.MakeInt64(int64(q.SHN_COMMON))}, + "SHN_HIOS": {reflect.TypeOf(q.SHN_HIOS), constant.MakeInt64(int64(q.SHN_HIOS))}, + "SHN_HIPROC": {reflect.TypeOf(q.SHN_HIPROC), constant.MakeInt64(int64(q.SHN_HIPROC))}, + "SHN_HIRESERVE": {reflect.TypeOf(q.SHN_HIRESERVE), constant.MakeInt64(int64(q.SHN_HIRESERVE))}, + "SHN_LOOS": {reflect.TypeOf(q.SHN_LOOS), constant.MakeInt64(int64(q.SHN_LOOS))}, + "SHN_LOPROC": {reflect.TypeOf(q.SHN_LOPROC), constant.MakeInt64(int64(q.SHN_LOPROC))}, + "SHN_LORESERVE": {reflect.TypeOf(q.SHN_LORESERVE), constant.MakeInt64(int64(q.SHN_LORESERVE))}, + "SHN_UNDEF": {reflect.TypeOf(q.SHN_UNDEF), constant.MakeInt64(int64(q.SHN_UNDEF))}, + "SHN_XINDEX": {reflect.TypeOf(q.SHN_XINDEX), constant.MakeInt64(int64(q.SHN_XINDEX))}, + "SHT_DYNAMIC": {reflect.TypeOf(q.SHT_DYNAMIC), constant.MakeInt64(int64(q.SHT_DYNAMIC))}, + "SHT_DYNSYM": {reflect.TypeOf(q.SHT_DYNSYM), constant.MakeInt64(int64(q.SHT_DYNSYM))}, + "SHT_FINI_ARRAY": {reflect.TypeOf(q.SHT_FINI_ARRAY), constant.MakeInt64(int64(q.SHT_FINI_ARRAY))}, + "SHT_GNU_ATTRIBUTES": {reflect.TypeOf(q.SHT_GNU_ATTRIBUTES), constant.MakeInt64(int64(q.SHT_GNU_ATTRIBUTES))}, + "SHT_GNU_HASH": {reflect.TypeOf(q.SHT_GNU_HASH), constant.MakeInt64(int64(q.SHT_GNU_HASH))}, + "SHT_GNU_LIBLIST": {reflect.TypeOf(q.SHT_GNU_LIBLIST), constant.MakeInt64(int64(q.SHT_GNU_LIBLIST))}, + "SHT_GNU_VERDEF": {reflect.TypeOf(q.SHT_GNU_VERDEF), constant.MakeInt64(int64(q.SHT_GNU_VERDEF))}, + "SHT_GNU_VERNEED": {reflect.TypeOf(q.SHT_GNU_VERNEED), constant.MakeInt64(int64(q.SHT_GNU_VERNEED))}, + "SHT_GNU_VERSYM": {reflect.TypeOf(q.SHT_GNU_VERSYM), constant.MakeInt64(int64(q.SHT_GNU_VERSYM))}, + "SHT_GROUP": {reflect.TypeOf(q.SHT_GROUP), constant.MakeInt64(int64(q.SHT_GROUP))}, + "SHT_HASH": {reflect.TypeOf(q.SHT_HASH), constant.MakeInt64(int64(q.SHT_HASH))}, + "SHT_HIOS": {reflect.TypeOf(q.SHT_HIOS), constant.MakeInt64(int64(q.SHT_HIOS))}, + "SHT_HIPROC": {reflect.TypeOf(q.SHT_HIPROC), constant.MakeInt64(int64(q.SHT_HIPROC))}, + "SHT_HIUSER": {reflect.TypeOf(q.SHT_HIUSER), constant.MakeInt64(int64(q.SHT_HIUSER))}, + "SHT_INIT_ARRAY": {reflect.TypeOf(q.SHT_INIT_ARRAY), constant.MakeInt64(int64(q.SHT_INIT_ARRAY))}, + "SHT_LOOS": {reflect.TypeOf(q.SHT_LOOS), constant.MakeInt64(int64(q.SHT_LOOS))}, + "SHT_LOPROC": {reflect.TypeOf(q.SHT_LOPROC), constant.MakeInt64(int64(q.SHT_LOPROC))}, + "SHT_LOUSER": {reflect.TypeOf(q.SHT_LOUSER), constant.MakeInt64(int64(q.SHT_LOUSER))}, + "SHT_MIPS_ABIFLAGS": {reflect.TypeOf(q.SHT_MIPS_ABIFLAGS), constant.MakeInt64(int64(q.SHT_MIPS_ABIFLAGS))}, + "SHT_NOBITS": {reflect.TypeOf(q.SHT_NOBITS), constant.MakeInt64(int64(q.SHT_NOBITS))}, + "SHT_NOTE": {reflect.TypeOf(q.SHT_NOTE), constant.MakeInt64(int64(q.SHT_NOTE))}, + "SHT_NULL": {reflect.TypeOf(q.SHT_NULL), constant.MakeInt64(int64(q.SHT_NULL))}, + "SHT_PREINIT_ARRAY": {reflect.TypeOf(q.SHT_PREINIT_ARRAY), constant.MakeInt64(int64(q.SHT_PREINIT_ARRAY))}, + "SHT_PROGBITS": {reflect.TypeOf(q.SHT_PROGBITS), constant.MakeInt64(int64(q.SHT_PROGBITS))}, + "SHT_REL": {reflect.TypeOf(q.SHT_REL), constant.MakeInt64(int64(q.SHT_REL))}, + "SHT_RELA": {reflect.TypeOf(q.SHT_RELA), constant.MakeInt64(int64(q.SHT_RELA))}, + "SHT_SHLIB": {reflect.TypeOf(q.SHT_SHLIB), constant.MakeInt64(int64(q.SHT_SHLIB))}, + "SHT_STRTAB": {reflect.TypeOf(q.SHT_STRTAB), constant.MakeInt64(int64(q.SHT_STRTAB))}, + "SHT_SYMTAB": {reflect.TypeOf(q.SHT_SYMTAB), constant.MakeInt64(int64(q.SHT_SYMTAB))}, + "SHT_SYMTAB_SHNDX": {reflect.TypeOf(q.SHT_SYMTAB_SHNDX), constant.MakeInt64(int64(q.SHT_SYMTAB_SHNDX))}, + "STB_GLOBAL": {reflect.TypeOf(q.STB_GLOBAL), constant.MakeInt64(int64(q.STB_GLOBAL))}, + "STB_HIOS": {reflect.TypeOf(q.STB_HIOS), constant.MakeInt64(int64(q.STB_HIOS))}, + "STB_HIPROC": {reflect.TypeOf(q.STB_HIPROC), constant.MakeInt64(int64(q.STB_HIPROC))}, + "STB_LOCAL": {reflect.TypeOf(q.STB_LOCAL), constant.MakeInt64(int64(q.STB_LOCAL))}, + "STB_LOOS": {reflect.TypeOf(q.STB_LOOS), constant.MakeInt64(int64(q.STB_LOOS))}, + "STB_LOPROC": {reflect.TypeOf(q.STB_LOPROC), constant.MakeInt64(int64(q.STB_LOPROC))}, + "STB_WEAK": {reflect.TypeOf(q.STB_WEAK), constant.MakeInt64(int64(q.STB_WEAK))}, + "STT_COMMON": {reflect.TypeOf(q.STT_COMMON), constant.MakeInt64(int64(q.STT_COMMON))}, + "STT_FILE": {reflect.TypeOf(q.STT_FILE), constant.MakeInt64(int64(q.STT_FILE))}, + "STT_FUNC": {reflect.TypeOf(q.STT_FUNC), constant.MakeInt64(int64(q.STT_FUNC))}, + "STT_HIOS": {reflect.TypeOf(q.STT_HIOS), constant.MakeInt64(int64(q.STT_HIOS))}, + "STT_HIPROC": {reflect.TypeOf(q.STT_HIPROC), constant.MakeInt64(int64(q.STT_HIPROC))}, + "STT_LOOS": {reflect.TypeOf(q.STT_LOOS), constant.MakeInt64(int64(q.STT_LOOS))}, + "STT_LOPROC": {reflect.TypeOf(q.STT_LOPROC), constant.MakeInt64(int64(q.STT_LOPROC))}, + "STT_NOTYPE": {reflect.TypeOf(q.STT_NOTYPE), constant.MakeInt64(int64(q.STT_NOTYPE))}, + "STT_OBJECT": {reflect.TypeOf(q.STT_OBJECT), constant.MakeInt64(int64(q.STT_OBJECT))}, + "STT_SECTION": {reflect.TypeOf(q.STT_SECTION), constant.MakeInt64(int64(q.STT_SECTION))}, + "STT_TLS": {reflect.TypeOf(q.STT_TLS), constant.MakeInt64(int64(q.STT_TLS))}, + "STV_DEFAULT": {reflect.TypeOf(q.STV_DEFAULT), constant.MakeInt64(int64(q.STV_DEFAULT))}, + "STV_HIDDEN": {reflect.TypeOf(q.STV_HIDDEN), constant.MakeInt64(int64(q.STV_HIDDEN))}, + "STV_INTERNAL": {reflect.TypeOf(q.STV_INTERNAL), constant.MakeInt64(int64(q.STV_INTERNAL))}, + "STV_PROTECTED": {reflect.TypeOf(q.STV_PROTECTED), constant.MakeInt64(int64(q.STV_PROTECTED))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "ARM_MAGIC_TRAMP_NUMBER": {"untyped int", constant.MakeInt64(int64(q.ARM_MAGIC_TRAMP_NUMBER))}, + "EI_ABIVERSION": {"untyped int", constant.MakeInt64(int64(q.EI_ABIVERSION))}, + "EI_CLASS": {"untyped int", constant.MakeInt64(int64(q.EI_CLASS))}, + "EI_DATA": {"untyped int", constant.MakeInt64(int64(q.EI_DATA))}, + "EI_NIDENT": {"untyped int", constant.MakeInt64(int64(q.EI_NIDENT))}, + "EI_OSABI": {"untyped int", constant.MakeInt64(int64(q.EI_OSABI))}, + "EI_PAD": {"untyped int", constant.MakeInt64(int64(q.EI_PAD))}, + "EI_VERSION": {"untyped int", constant.MakeInt64(int64(q.EI_VERSION))}, + "ELFMAG": {"untyped string", constant.MakeString(string(q.ELFMAG))}, + "Sym32Size": {"untyped int", constant.MakeInt64(int64(q.Sym32Size))}, + "Sym64Size": {"untyped int", constant.MakeInt64(int64(q.Sym64Size))}, + }, + }) +} diff --git a/pkg/debug/elf/go123_export.go b/pkg/debug/elf/go123_export.go new file mode 100755 index 00000000..fa87cd46 --- /dev/null +++ b/pkg/debug/elf/go123_export.go @@ -0,0 +1,1587 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package elf + +import ( + q "debug/elf" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "elf", + Path: "debug/elf", + Deps: map[string]string{ + "bytes": "bytes", + "compress/zlib": "zlib", + "debug/dwarf": "dwarf", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "internal/saferio": "saferio", + "internal/zstd": "zstd", + "io": "io", + "os": "os", + "strconv": "strconv", + "strings": "strings", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Chdr32": reflect.TypeOf((*q.Chdr32)(nil)).Elem(), + "Chdr64": reflect.TypeOf((*q.Chdr64)(nil)).Elem(), + "Class": reflect.TypeOf((*q.Class)(nil)).Elem(), + "CompressionType": reflect.TypeOf((*q.CompressionType)(nil)).Elem(), + "Data": reflect.TypeOf((*q.Data)(nil)).Elem(), + "Dyn32": reflect.TypeOf((*q.Dyn32)(nil)).Elem(), + "Dyn64": reflect.TypeOf((*q.Dyn64)(nil)).Elem(), + "DynFlag": reflect.TypeOf((*q.DynFlag)(nil)).Elem(), + "DynFlag1": reflect.TypeOf((*q.DynFlag1)(nil)).Elem(), + "DynTag": reflect.TypeOf((*q.DynTag)(nil)).Elem(), + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "FileHeader": reflect.TypeOf((*q.FileHeader)(nil)).Elem(), + "FormatError": reflect.TypeOf((*q.FormatError)(nil)).Elem(), + "Header32": reflect.TypeOf((*q.Header32)(nil)).Elem(), + "Header64": reflect.TypeOf((*q.Header64)(nil)).Elem(), + "ImportedSymbol": reflect.TypeOf((*q.ImportedSymbol)(nil)).Elem(), + "Machine": reflect.TypeOf((*q.Machine)(nil)).Elem(), + "NType": reflect.TypeOf((*q.NType)(nil)).Elem(), + "OSABI": reflect.TypeOf((*q.OSABI)(nil)).Elem(), + "Prog": reflect.TypeOf((*q.Prog)(nil)).Elem(), + "Prog32": reflect.TypeOf((*q.Prog32)(nil)).Elem(), + "Prog64": reflect.TypeOf((*q.Prog64)(nil)).Elem(), + "ProgFlag": reflect.TypeOf((*q.ProgFlag)(nil)).Elem(), + "ProgHeader": reflect.TypeOf((*q.ProgHeader)(nil)).Elem(), + "ProgType": reflect.TypeOf((*q.ProgType)(nil)).Elem(), + "R_386": reflect.TypeOf((*q.R_386)(nil)).Elem(), + "R_390": reflect.TypeOf((*q.R_390)(nil)).Elem(), + "R_AARCH64": reflect.TypeOf((*q.R_AARCH64)(nil)).Elem(), + "R_ALPHA": reflect.TypeOf((*q.R_ALPHA)(nil)).Elem(), + "R_ARM": reflect.TypeOf((*q.R_ARM)(nil)).Elem(), + "R_LARCH": reflect.TypeOf((*q.R_LARCH)(nil)).Elem(), + "R_MIPS": reflect.TypeOf((*q.R_MIPS)(nil)).Elem(), + "R_PPC": reflect.TypeOf((*q.R_PPC)(nil)).Elem(), + "R_PPC64": reflect.TypeOf((*q.R_PPC64)(nil)).Elem(), + "R_RISCV": reflect.TypeOf((*q.R_RISCV)(nil)).Elem(), + "R_SPARC": reflect.TypeOf((*q.R_SPARC)(nil)).Elem(), + "R_X86_64": reflect.TypeOf((*q.R_X86_64)(nil)).Elem(), + "Rel32": reflect.TypeOf((*q.Rel32)(nil)).Elem(), + "Rel64": reflect.TypeOf((*q.Rel64)(nil)).Elem(), + "Rela32": reflect.TypeOf((*q.Rela32)(nil)).Elem(), + "Rela64": reflect.TypeOf((*q.Rela64)(nil)).Elem(), + "Section": reflect.TypeOf((*q.Section)(nil)).Elem(), + "Section32": reflect.TypeOf((*q.Section32)(nil)).Elem(), + "Section64": reflect.TypeOf((*q.Section64)(nil)).Elem(), + "SectionFlag": reflect.TypeOf((*q.SectionFlag)(nil)).Elem(), + "SectionHeader": reflect.TypeOf((*q.SectionHeader)(nil)).Elem(), + "SectionIndex": reflect.TypeOf((*q.SectionIndex)(nil)).Elem(), + "SectionType": reflect.TypeOf((*q.SectionType)(nil)).Elem(), + "Sym32": reflect.TypeOf((*q.Sym32)(nil)).Elem(), + "Sym64": reflect.TypeOf((*q.Sym64)(nil)).Elem(), + "SymBind": reflect.TypeOf((*q.SymBind)(nil)).Elem(), + "SymType": reflect.TypeOf((*q.SymType)(nil)).Elem(), + "SymVis": reflect.TypeOf((*q.SymVis)(nil)).Elem(), + "Symbol": reflect.TypeOf((*q.Symbol)(nil)).Elem(), + "Type": reflect.TypeOf((*q.Type)(nil)).Elem(), + "Version": reflect.TypeOf((*q.Version)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrNoSymbols": reflect.ValueOf(&q.ErrNoSymbols), + }, + Funcs: map[string]reflect.Value{ + "NewFile": reflect.ValueOf(q.NewFile), + "Open": reflect.ValueOf(q.Open), + "R_INFO": reflect.ValueOf(q.R_INFO), + "R_INFO32": reflect.ValueOf(q.R_INFO32), + "R_SYM32": reflect.ValueOf(q.R_SYM32), + "R_SYM64": reflect.ValueOf(q.R_SYM64), + "R_TYPE32": reflect.ValueOf(q.R_TYPE32), + "R_TYPE64": reflect.ValueOf(q.R_TYPE64), + "ST_BIND": reflect.ValueOf(q.ST_BIND), + "ST_INFO": reflect.ValueOf(q.ST_INFO), + "ST_TYPE": reflect.ValueOf(q.ST_TYPE), + "ST_VISIBILITY": reflect.ValueOf(q.ST_VISIBILITY), + }, + TypedConsts: map[string]igop.TypedConst{ + "COMPRESS_HIOS": {reflect.TypeOf(q.COMPRESS_HIOS), constant.MakeInt64(int64(q.COMPRESS_HIOS))}, + "COMPRESS_HIPROC": {reflect.TypeOf(q.COMPRESS_HIPROC), constant.MakeInt64(int64(q.COMPRESS_HIPROC))}, + "COMPRESS_LOOS": {reflect.TypeOf(q.COMPRESS_LOOS), constant.MakeInt64(int64(q.COMPRESS_LOOS))}, + "COMPRESS_LOPROC": {reflect.TypeOf(q.COMPRESS_LOPROC), constant.MakeInt64(int64(q.COMPRESS_LOPROC))}, + "COMPRESS_ZLIB": {reflect.TypeOf(q.COMPRESS_ZLIB), constant.MakeInt64(int64(q.COMPRESS_ZLIB))}, + "COMPRESS_ZSTD": {reflect.TypeOf(q.COMPRESS_ZSTD), constant.MakeInt64(int64(q.COMPRESS_ZSTD))}, + "DF_1_CONFALT": {reflect.TypeOf(q.DF_1_CONFALT), constant.MakeInt64(int64(q.DF_1_CONFALT))}, + "DF_1_DIRECT": {reflect.TypeOf(q.DF_1_DIRECT), constant.MakeInt64(int64(q.DF_1_DIRECT))}, + "DF_1_DISPRELDNE": {reflect.TypeOf(q.DF_1_DISPRELDNE), constant.MakeInt64(int64(q.DF_1_DISPRELDNE))}, + "DF_1_DISPRELPND": {reflect.TypeOf(q.DF_1_DISPRELPND), constant.MakeInt64(int64(q.DF_1_DISPRELPND))}, + "DF_1_EDITED": {reflect.TypeOf(q.DF_1_EDITED), constant.MakeInt64(int64(q.DF_1_EDITED))}, + "DF_1_ENDFILTEE": {reflect.TypeOf(q.DF_1_ENDFILTEE), constant.MakeInt64(int64(q.DF_1_ENDFILTEE))}, + "DF_1_GLOBAL": {reflect.TypeOf(q.DF_1_GLOBAL), constant.MakeInt64(int64(q.DF_1_GLOBAL))}, + "DF_1_GLOBAUDIT": {reflect.TypeOf(q.DF_1_GLOBAUDIT), constant.MakeInt64(int64(q.DF_1_GLOBAUDIT))}, + "DF_1_GROUP": {reflect.TypeOf(q.DF_1_GROUP), constant.MakeInt64(int64(q.DF_1_GROUP))}, + "DF_1_IGNMULDEF": {reflect.TypeOf(q.DF_1_IGNMULDEF), constant.MakeInt64(int64(q.DF_1_IGNMULDEF))}, + "DF_1_INITFIRST": {reflect.TypeOf(q.DF_1_INITFIRST), constant.MakeInt64(int64(q.DF_1_INITFIRST))}, + "DF_1_INTERPOSE": {reflect.TypeOf(q.DF_1_INTERPOSE), constant.MakeInt64(int64(q.DF_1_INTERPOSE))}, + "DF_1_KMOD": {reflect.TypeOf(q.DF_1_KMOD), constant.MakeInt64(int64(q.DF_1_KMOD))}, + "DF_1_LOADFLTR": {reflect.TypeOf(q.DF_1_LOADFLTR), constant.MakeInt64(int64(q.DF_1_LOADFLTR))}, + "DF_1_NOCOMMON": {reflect.TypeOf(q.DF_1_NOCOMMON), constant.MakeInt64(int64(q.DF_1_NOCOMMON))}, + "DF_1_NODEFLIB": {reflect.TypeOf(q.DF_1_NODEFLIB), constant.MakeInt64(int64(q.DF_1_NODEFLIB))}, + "DF_1_NODELETE": {reflect.TypeOf(q.DF_1_NODELETE), constant.MakeInt64(int64(q.DF_1_NODELETE))}, + "DF_1_NODIRECT": {reflect.TypeOf(q.DF_1_NODIRECT), constant.MakeInt64(int64(q.DF_1_NODIRECT))}, + "DF_1_NODUMP": {reflect.TypeOf(q.DF_1_NODUMP), constant.MakeInt64(int64(q.DF_1_NODUMP))}, + "DF_1_NOHDR": {reflect.TypeOf(q.DF_1_NOHDR), constant.MakeInt64(int64(q.DF_1_NOHDR))}, + "DF_1_NOKSYMS": {reflect.TypeOf(q.DF_1_NOKSYMS), constant.MakeInt64(int64(q.DF_1_NOKSYMS))}, + "DF_1_NOOPEN": {reflect.TypeOf(q.DF_1_NOOPEN), constant.MakeInt64(int64(q.DF_1_NOOPEN))}, + "DF_1_NORELOC": {reflect.TypeOf(q.DF_1_NORELOC), constant.MakeInt64(int64(q.DF_1_NORELOC))}, + "DF_1_NOW": {reflect.TypeOf(q.DF_1_NOW), constant.MakeInt64(int64(q.DF_1_NOW))}, + "DF_1_ORIGIN": {reflect.TypeOf(q.DF_1_ORIGIN), constant.MakeInt64(int64(q.DF_1_ORIGIN))}, + "DF_1_PIE": {reflect.TypeOf(q.DF_1_PIE), constant.MakeInt64(int64(q.DF_1_PIE))}, + "DF_1_SINGLETON": {reflect.TypeOf(q.DF_1_SINGLETON), constant.MakeInt64(int64(q.DF_1_SINGLETON))}, + "DF_1_STUB": {reflect.TypeOf(q.DF_1_STUB), constant.MakeInt64(int64(q.DF_1_STUB))}, + "DF_1_SYMINTPOSE": {reflect.TypeOf(q.DF_1_SYMINTPOSE), constant.MakeInt64(int64(q.DF_1_SYMINTPOSE))}, + "DF_1_TRANS": {reflect.TypeOf(q.DF_1_TRANS), constant.MakeInt64(int64(q.DF_1_TRANS))}, + "DF_1_WEAKFILTER": {reflect.TypeOf(q.DF_1_WEAKFILTER), constant.MakeInt64(int64(q.DF_1_WEAKFILTER))}, + "DF_BIND_NOW": {reflect.TypeOf(q.DF_BIND_NOW), constant.MakeInt64(int64(q.DF_BIND_NOW))}, + "DF_ORIGIN": {reflect.TypeOf(q.DF_ORIGIN), constant.MakeInt64(int64(q.DF_ORIGIN))}, + "DF_STATIC_TLS": {reflect.TypeOf(q.DF_STATIC_TLS), constant.MakeInt64(int64(q.DF_STATIC_TLS))}, + "DF_SYMBOLIC": {reflect.TypeOf(q.DF_SYMBOLIC), constant.MakeInt64(int64(q.DF_SYMBOLIC))}, + "DF_TEXTREL": {reflect.TypeOf(q.DF_TEXTREL), constant.MakeInt64(int64(q.DF_TEXTREL))}, + "DT_ADDRRNGHI": {reflect.TypeOf(q.DT_ADDRRNGHI), constant.MakeInt64(int64(q.DT_ADDRRNGHI))}, + "DT_ADDRRNGLO": {reflect.TypeOf(q.DT_ADDRRNGLO), constant.MakeInt64(int64(q.DT_ADDRRNGLO))}, + "DT_AUDIT": {reflect.TypeOf(q.DT_AUDIT), constant.MakeInt64(int64(q.DT_AUDIT))}, + "DT_AUXILIARY": {reflect.TypeOf(q.DT_AUXILIARY), constant.MakeInt64(int64(q.DT_AUXILIARY))}, + "DT_BIND_NOW": {reflect.TypeOf(q.DT_BIND_NOW), constant.MakeInt64(int64(q.DT_BIND_NOW))}, + "DT_CHECKSUM": {reflect.TypeOf(q.DT_CHECKSUM), constant.MakeInt64(int64(q.DT_CHECKSUM))}, + "DT_CONFIG": {reflect.TypeOf(q.DT_CONFIG), constant.MakeInt64(int64(q.DT_CONFIG))}, + "DT_DEBUG": {reflect.TypeOf(q.DT_DEBUG), constant.MakeInt64(int64(q.DT_DEBUG))}, + "DT_DEPAUDIT": {reflect.TypeOf(q.DT_DEPAUDIT), constant.MakeInt64(int64(q.DT_DEPAUDIT))}, + "DT_ENCODING": {reflect.TypeOf(q.DT_ENCODING), constant.MakeInt64(int64(q.DT_ENCODING))}, + "DT_FEATURE": {reflect.TypeOf(q.DT_FEATURE), constant.MakeInt64(int64(q.DT_FEATURE))}, + "DT_FILTER": {reflect.TypeOf(q.DT_FILTER), constant.MakeInt64(int64(q.DT_FILTER))}, + "DT_FINI": {reflect.TypeOf(q.DT_FINI), constant.MakeInt64(int64(q.DT_FINI))}, + "DT_FINI_ARRAY": {reflect.TypeOf(q.DT_FINI_ARRAY), constant.MakeInt64(int64(q.DT_FINI_ARRAY))}, + "DT_FINI_ARRAYSZ": {reflect.TypeOf(q.DT_FINI_ARRAYSZ), constant.MakeInt64(int64(q.DT_FINI_ARRAYSZ))}, + "DT_FLAGS": {reflect.TypeOf(q.DT_FLAGS), constant.MakeInt64(int64(q.DT_FLAGS))}, + "DT_FLAGS_1": {reflect.TypeOf(q.DT_FLAGS_1), constant.MakeInt64(int64(q.DT_FLAGS_1))}, + "DT_GNU_CONFLICT": {reflect.TypeOf(q.DT_GNU_CONFLICT), constant.MakeInt64(int64(q.DT_GNU_CONFLICT))}, + "DT_GNU_CONFLICTSZ": {reflect.TypeOf(q.DT_GNU_CONFLICTSZ), constant.MakeInt64(int64(q.DT_GNU_CONFLICTSZ))}, + "DT_GNU_HASH": {reflect.TypeOf(q.DT_GNU_HASH), constant.MakeInt64(int64(q.DT_GNU_HASH))}, + "DT_GNU_LIBLIST": {reflect.TypeOf(q.DT_GNU_LIBLIST), constant.MakeInt64(int64(q.DT_GNU_LIBLIST))}, + "DT_GNU_LIBLISTSZ": {reflect.TypeOf(q.DT_GNU_LIBLISTSZ), constant.MakeInt64(int64(q.DT_GNU_LIBLISTSZ))}, + "DT_GNU_PRELINKED": {reflect.TypeOf(q.DT_GNU_PRELINKED), constant.MakeInt64(int64(q.DT_GNU_PRELINKED))}, + "DT_HASH": {reflect.TypeOf(q.DT_HASH), constant.MakeInt64(int64(q.DT_HASH))}, + "DT_HIOS": {reflect.TypeOf(q.DT_HIOS), constant.MakeInt64(int64(q.DT_HIOS))}, + "DT_HIPROC": {reflect.TypeOf(q.DT_HIPROC), constant.MakeInt64(int64(q.DT_HIPROC))}, + "DT_INIT": {reflect.TypeOf(q.DT_INIT), constant.MakeInt64(int64(q.DT_INIT))}, + "DT_INIT_ARRAY": {reflect.TypeOf(q.DT_INIT_ARRAY), constant.MakeInt64(int64(q.DT_INIT_ARRAY))}, + "DT_INIT_ARRAYSZ": {reflect.TypeOf(q.DT_INIT_ARRAYSZ), constant.MakeInt64(int64(q.DT_INIT_ARRAYSZ))}, + "DT_JMPREL": {reflect.TypeOf(q.DT_JMPREL), constant.MakeInt64(int64(q.DT_JMPREL))}, + "DT_LOOS": {reflect.TypeOf(q.DT_LOOS), constant.MakeInt64(int64(q.DT_LOOS))}, + "DT_LOPROC": {reflect.TypeOf(q.DT_LOPROC), constant.MakeInt64(int64(q.DT_LOPROC))}, + "DT_MIPS_AUX_DYNAMIC": {reflect.TypeOf(q.DT_MIPS_AUX_DYNAMIC), constant.MakeInt64(int64(q.DT_MIPS_AUX_DYNAMIC))}, + "DT_MIPS_BASE_ADDRESS": {reflect.TypeOf(q.DT_MIPS_BASE_ADDRESS), constant.MakeInt64(int64(q.DT_MIPS_BASE_ADDRESS))}, + "DT_MIPS_COMPACT_SIZE": {reflect.TypeOf(q.DT_MIPS_COMPACT_SIZE), constant.MakeInt64(int64(q.DT_MIPS_COMPACT_SIZE))}, + "DT_MIPS_CONFLICT": {reflect.TypeOf(q.DT_MIPS_CONFLICT), constant.MakeInt64(int64(q.DT_MIPS_CONFLICT))}, + "DT_MIPS_CONFLICTNO": {reflect.TypeOf(q.DT_MIPS_CONFLICTNO), constant.MakeInt64(int64(q.DT_MIPS_CONFLICTNO))}, + "DT_MIPS_CXX_FLAGS": {reflect.TypeOf(q.DT_MIPS_CXX_FLAGS), constant.MakeInt64(int64(q.DT_MIPS_CXX_FLAGS))}, + "DT_MIPS_DELTA_CLASS": {reflect.TypeOf(q.DT_MIPS_DELTA_CLASS), constant.MakeInt64(int64(q.DT_MIPS_DELTA_CLASS))}, + "DT_MIPS_DELTA_CLASSSYM": {reflect.TypeOf(q.DT_MIPS_DELTA_CLASSSYM), constant.MakeInt64(int64(q.DT_MIPS_DELTA_CLASSSYM))}, + "DT_MIPS_DELTA_CLASSSYM_NO": {reflect.TypeOf(q.DT_MIPS_DELTA_CLASSSYM_NO), constant.MakeInt64(int64(q.DT_MIPS_DELTA_CLASSSYM_NO))}, + "DT_MIPS_DELTA_CLASS_NO": {reflect.TypeOf(q.DT_MIPS_DELTA_CLASS_NO), constant.MakeInt64(int64(q.DT_MIPS_DELTA_CLASS_NO))}, + "DT_MIPS_DELTA_INSTANCE": {reflect.TypeOf(q.DT_MIPS_DELTA_INSTANCE), constant.MakeInt64(int64(q.DT_MIPS_DELTA_INSTANCE))}, + "DT_MIPS_DELTA_INSTANCE_NO": {reflect.TypeOf(q.DT_MIPS_DELTA_INSTANCE_NO), constant.MakeInt64(int64(q.DT_MIPS_DELTA_INSTANCE_NO))}, + "DT_MIPS_DELTA_RELOC": {reflect.TypeOf(q.DT_MIPS_DELTA_RELOC), constant.MakeInt64(int64(q.DT_MIPS_DELTA_RELOC))}, + "DT_MIPS_DELTA_RELOC_NO": {reflect.TypeOf(q.DT_MIPS_DELTA_RELOC_NO), constant.MakeInt64(int64(q.DT_MIPS_DELTA_RELOC_NO))}, + "DT_MIPS_DELTA_SYM": {reflect.TypeOf(q.DT_MIPS_DELTA_SYM), constant.MakeInt64(int64(q.DT_MIPS_DELTA_SYM))}, + "DT_MIPS_DELTA_SYM_NO": {reflect.TypeOf(q.DT_MIPS_DELTA_SYM_NO), constant.MakeInt64(int64(q.DT_MIPS_DELTA_SYM_NO))}, + "DT_MIPS_DYNSTR_ALIGN": {reflect.TypeOf(q.DT_MIPS_DYNSTR_ALIGN), constant.MakeInt64(int64(q.DT_MIPS_DYNSTR_ALIGN))}, + "DT_MIPS_FLAGS": {reflect.TypeOf(q.DT_MIPS_FLAGS), constant.MakeInt64(int64(q.DT_MIPS_FLAGS))}, + "DT_MIPS_GOTSYM": {reflect.TypeOf(q.DT_MIPS_GOTSYM), constant.MakeInt64(int64(q.DT_MIPS_GOTSYM))}, + "DT_MIPS_GP_VALUE": {reflect.TypeOf(q.DT_MIPS_GP_VALUE), constant.MakeInt64(int64(q.DT_MIPS_GP_VALUE))}, + "DT_MIPS_HIDDEN_GOTIDX": {reflect.TypeOf(q.DT_MIPS_HIDDEN_GOTIDX), constant.MakeInt64(int64(q.DT_MIPS_HIDDEN_GOTIDX))}, + "DT_MIPS_HIPAGENO": {reflect.TypeOf(q.DT_MIPS_HIPAGENO), constant.MakeInt64(int64(q.DT_MIPS_HIPAGENO))}, + "DT_MIPS_ICHECKSUM": {reflect.TypeOf(q.DT_MIPS_ICHECKSUM), constant.MakeInt64(int64(q.DT_MIPS_ICHECKSUM))}, + "DT_MIPS_INTERFACE": {reflect.TypeOf(q.DT_MIPS_INTERFACE), constant.MakeInt64(int64(q.DT_MIPS_INTERFACE))}, + "DT_MIPS_INTERFACE_SIZE": {reflect.TypeOf(q.DT_MIPS_INTERFACE_SIZE), constant.MakeInt64(int64(q.DT_MIPS_INTERFACE_SIZE))}, + "DT_MIPS_IVERSION": {reflect.TypeOf(q.DT_MIPS_IVERSION), constant.MakeInt64(int64(q.DT_MIPS_IVERSION))}, + "DT_MIPS_LIBLIST": {reflect.TypeOf(q.DT_MIPS_LIBLIST), constant.MakeInt64(int64(q.DT_MIPS_LIBLIST))}, + "DT_MIPS_LIBLISTNO": {reflect.TypeOf(q.DT_MIPS_LIBLISTNO), constant.MakeInt64(int64(q.DT_MIPS_LIBLISTNO))}, + "DT_MIPS_LOCALPAGE_GOTIDX": {reflect.TypeOf(q.DT_MIPS_LOCALPAGE_GOTIDX), constant.MakeInt64(int64(q.DT_MIPS_LOCALPAGE_GOTIDX))}, + "DT_MIPS_LOCAL_GOTIDX": {reflect.TypeOf(q.DT_MIPS_LOCAL_GOTIDX), constant.MakeInt64(int64(q.DT_MIPS_LOCAL_GOTIDX))}, + "DT_MIPS_LOCAL_GOTNO": {reflect.TypeOf(q.DT_MIPS_LOCAL_GOTNO), constant.MakeInt64(int64(q.DT_MIPS_LOCAL_GOTNO))}, + "DT_MIPS_MSYM": {reflect.TypeOf(q.DT_MIPS_MSYM), constant.MakeInt64(int64(q.DT_MIPS_MSYM))}, + "DT_MIPS_OPTIONS": {reflect.TypeOf(q.DT_MIPS_OPTIONS), constant.MakeInt64(int64(q.DT_MIPS_OPTIONS))}, + "DT_MIPS_PERF_SUFFIX": {reflect.TypeOf(q.DT_MIPS_PERF_SUFFIX), constant.MakeInt64(int64(q.DT_MIPS_PERF_SUFFIX))}, + "DT_MIPS_PIXIE_INIT": {reflect.TypeOf(q.DT_MIPS_PIXIE_INIT), constant.MakeInt64(int64(q.DT_MIPS_PIXIE_INIT))}, + "DT_MIPS_PLTGOT": {reflect.TypeOf(q.DT_MIPS_PLTGOT), constant.MakeInt64(int64(q.DT_MIPS_PLTGOT))}, + "DT_MIPS_PROTECTED_GOTIDX": {reflect.TypeOf(q.DT_MIPS_PROTECTED_GOTIDX), constant.MakeInt64(int64(q.DT_MIPS_PROTECTED_GOTIDX))}, + "DT_MIPS_RLD_MAP": {reflect.TypeOf(q.DT_MIPS_RLD_MAP), constant.MakeInt64(int64(q.DT_MIPS_RLD_MAP))}, + "DT_MIPS_RLD_MAP_REL": {reflect.TypeOf(q.DT_MIPS_RLD_MAP_REL), constant.MakeInt64(int64(q.DT_MIPS_RLD_MAP_REL))}, + "DT_MIPS_RLD_TEXT_RESOLVE_ADDR": {reflect.TypeOf(q.DT_MIPS_RLD_TEXT_RESOLVE_ADDR), constant.MakeInt64(int64(q.DT_MIPS_RLD_TEXT_RESOLVE_ADDR))}, + "DT_MIPS_RLD_VERSION": {reflect.TypeOf(q.DT_MIPS_RLD_VERSION), constant.MakeInt64(int64(q.DT_MIPS_RLD_VERSION))}, + "DT_MIPS_RWPLT": {reflect.TypeOf(q.DT_MIPS_RWPLT), constant.MakeInt64(int64(q.DT_MIPS_RWPLT))}, + "DT_MIPS_SYMBOL_LIB": {reflect.TypeOf(q.DT_MIPS_SYMBOL_LIB), constant.MakeInt64(int64(q.DT_MIPS_SYMBOL_LIB))}, + "DT_MIPS_SYMTABNO": {reflect.TypeOf(q.DT_MIPS_SYMTABNO), constant.MakeInt64(int64(q.DT_MIPS_SYMTABNO))}, + "DT_MIPS_TIME_STAMP": {reflect.TypeOf(q.DT_MIPS_TIME_STAMP), constant.MakeInt64(int64(q.DT_MIPS_TIME_STAMP))}, + "DT_MIPS_UNREFEXTNO": {reflect.TypeOf(q.DT_MIPS_UNREFEXTNO), constant.MakeInt64(int64(q.DT_MIPS_UNREFEXTNO))}, + "DT_MOVEENT": {reflect.TypeOf(q.DT_MOVEENT), constant.MakeInt64(int64(q.DT_MOVEENT))}, + "DT_MOVESZ": {reflect.TypeOf(q.DT_MOVESZ), constant.MakeInt64(int64(q.DT_MOVESZ))}, + "DT_MOVETAB": {reflect.TypeOf(q.DT_MOVETAB), constant.MakeInt64(int64(q.DT_MOVETAB))}, + "DT_NEEDED": {reflect.TypeOf(q.DT_NEEDED), constant.MakeInt64(int64(q.DT_NEEDED))}, + "DT_NULL": {reflect.TypeOf(q.DT_NULL), constant.MakeInt64(int64(q.DT_NULL))}, + "DT_PLTGOT": {reflect.TypeOf(q.DT_PLTGOT), constant.MakeInt64(int64(q.DT_PLTGOT))}, + "DT_PLTPAD": {reflect.TypeOf(q.DT_PLTPAD), constant.MakeInt64(int64(q.DT_PLTPAD))}, + "DT_PLTPADSZ": {reflect.TypeOf(q.DT_PLTPADSZ), constant.MakeInt64(int64(q.DT_PLTPADSZ))}, + "DT_PLTREL": {reflect.TypeOf(q.DT_PLTREL), constant.MakeInt64(int64(q.DT_PLTREL))}, + "DT_PLTRELSZ": {reflect.TypeOf(q.DT_PLTRELSZ), constant.MakeInt64(int64(q.DT_PLTRELSZ))}, + "DT_POSFLAG_1": {reflect.TypeOf(q.DT_POSFLAG_1), constant.MakeInt64(int64(q.DT_POSFLAG_1))}, + "DT_PPC64_GLINK": {reflect.TypeOf(q.DT_PPC64_GLINK), constant.MakeInt64(int64(q.DT_PPC64_GLINK))}, + "DT_PPC64_OPD": {reflect.TypeOf(q.DT_PPC64_OPD), constant.MakeInt64(int64(q.DT_PPC64_OPD))}, + "DT_PPC64_OPDSZ": {reflect.TypeOf(q.DT_PPC64_OPDSZ), constant.MakeInt64(int64(q.DT_PPC64_OPDSZ))}, + "DT_PPC64_OPT": {reflect.TypeOf(q.DT_PPC64_OPT), constant.MakeInt64(int64(q.DT_PPC64_OPT))}, + "DT_PPC_GOT": {reflect.TypeOf(q.DT_PPC_GOT), constant.MakeInt64(int64(q.DT_PPC_GOT))}, + "DT_PPC_OPT": {reflect.TypeOf(q.DT_PPC_OPT), constant.MakeInt64(int64(q.DT_PPC_OPT))}, + "DT_PREINIT_ARRAY": {reflect.TypeOf(q.DT_PREINIT_ARRAY), constant.MakeInt64(int64(q.DT_PREINIT_ARRAY))}, + "DT_PREINIT_ARRAYSZ": {reflect.TypeOf(q.DT_PREINIT_ARRAYSZ), constant.MakeInt64(int64(q.DT_PREINIT_ARRAYSZ))}, + "DT_REL": {reflect.TypeOf(q.DT_REL), constant.MakeInt64(int64(q.DT_REL))}, + "DT_RELA": {reflect.TypeOf(q.DT_RELA), constant.MakeInt64(int64(q.DT_RELA))}, + "DT_RELACOUNT": {reflect.TypeOf(q.DT_RELACOUNT), constant.MakeInt64(int64(q.DT_RELACOUNT))}, + "DT_RELAENT": {reflect.TypeOf(q.DT_RELAENT), constant.MakeInt64(int64(q.DT_RELAENT))}, + "DT_RELASZ": {reflect.TypeOf(q.DT_RELASZ), constant.MakeInt64(int64(q.DT_RELASZ))}, + "DT_RELCOUNT": {reflect.TypeOf(q.DT_RELCOUNT), constant.MakeInt64(int64(q.DT_RELCOUNT))}, + "DT_RELENT": {reflect.TypeOf(q.DT_RELENT), constant.MakeInt64(int64(q.DT_RELENT))}, + "DT_RELSZ": {reflect.TypeOf(q.DT_RELSZ), constant.MakeInt64(int64(q.DT_RELSZ))}, + "DT_RPATH": {reflect.TypeOf(q.DT_RPATH), constant.MakeInt64(int64(q.DT_RPATH))}, + "DT_RUNPATH": {reflect.TypeOf(q.DT_RUNPATH), constant.MakeInt64(int64(q.DT_RUNPATH))}, + "DT_SONAME": {reflect.TypeOf(q.DT_SONAME), constant.MakeInt64(int64(q.DT_SONAME))}, + "DT_SPARC_REGISTER": {reflect.TypeOf(q.DT_SPARC_REGISTER), constant.MakeInt64(int64(q.DT_SPARC_REGISTER))}, + "DT_STRSZ": {reflect.TypeOf(q.DT_STRSZ), constant.MakeInt64(int64(q.DT_STRSZ))}, + "DT_STRTAB": {reflect.TypeOf(q.DT_STRTAB), constant.MakeInt64(int64(q.DT_STRTAB))}, + "DT_SYMBOLIC": {reflect.TypeOf(q.DT_SYMBOLIC), constant.MakeInt64(int64(q.DT_SYMBOLIC))}, + "DT_SYMENT": {reflect.TypeOf(q.DT_SYMENT), constant.MakeInt64(int64(q.DT_SYMENT))}, + "DT_SYMINENT": {reflect.TypeOf(q.DT_SYMINENT), constant.MakeInt64(int64(q.DT_SYMINENT))}, + "DT_SYMINFO": {reflect.TypeOf(q.DT_SYMINFO), constant.MakeInt64(int64(q.DT_SYMINFO))}, + "DT_SYMINSZ": {reflect.TypeOf(q.DT_SYMINSZ), constant.MakeInt64(int64(q.DT_SYMINSZ))}, + "DT_SYMTAB": {reflect.TypeOf(q.DT_SYMTAB), constant.MakeInt64(int64(q.DT_SYMTAB))}, + "DT_SYMTAB_SHNDX": {reflect.TypeOf(q.DT_SYMTAB_SHNDX), constant.MakeInt64(int64(q.DT_SYMTAB_SHNDX))}, + "DT_TEXTREL": {reflect.TypeOf(q.DT_TEXTREL), constant.MakeInt64(int64(q.DT_TEXTREL))}, + "DT_TLSDESC_GOT": {reflect.TypeOf(q.DT_TLSDESC_GOT), constant.MakeInt64(int64(q.DT_TLSDESC_GOT))}, + "DT_TLSDESC_PLT": {reflect.TypeOf(q.DT_TLSDESC_PLT), constant.MakeInt64(int64(q.DT_TLSDESC_PLT))}, + "DT_USED": {reflect.TypeOf(q.DT_USED), constant.MakeInt64(int64(q.DT_USED))}, + "DT_VALRNGHI": {reflect.TypeOf(q.DT_VALRNGHI), constant.MakeInt64(int64(q.DT_VALRNGHI))}, + "DT_VALRNGLO": {reflect.TypeOf(q.DT_VALRNGLO), constant.MakeInt64(int64(q.DT_VALRNGLO))}, + "DT_VERDEF": {reflect.TypeOf(q.DT_VERDEF), constant.MakeInt64(int64(q.DT_VERDEF))}, + "DT_VERDEFNUM": {reflect.TypeOf(q.DT_VERDEFNUM), constant.MakeInt64(int64(q.DT_VERDEFNUM))}, + "DT_VERNEED": {reflect.TypeOf(q.DT_VERNEED), constant.MakeInt64(int64(q.DT_VERNEED))}, + "DT_VERNEEDNUM": {reflect.TypeOf(q.DT_VERNEEDNUM), constant.MakeInt64(int64(q.DT_VERNEEDNUM))}, + "DT_VERSYM": {reflect.TypeOf(q.DT_VERSYM), constant.MakeInt64(int64(q.DT_VERSYM))}, + "ELFCLASS32": {reflect.TypeOf(q.ELFCLASS32), constant.MakeInt64(int64(q.ELFCLASS32))}, + "ELFCLASS64": {reflect.TypeOf(q.ELFCLASS64), constant.MakeInt64(int64(q.ELFCLASS64))}, + "ELFCLASSNONE": {reflect.TypeOf(q.ELFCLASSNONE), constant.MakeInt64(int64(q.ELFCLASSNONE))}, + "ELFDATA2LSB": {reflect.TypeOf(q.ELFDATA2LSB), constant.MakeInt64(int64(q.ELFDATA2LSB))}, + "ELFDATA2MSB": {reflect.TypeOf(q.ELFDATA2MSB), constant.MakeInt64(int64(q.ELFDATA2MSB))}, + "ELFDATANONE": {reflect.TypeOf(q.ELFDATANONE), constant.MakeInt64(int64(q.ELFDATANONE))}, + "ELFOSABI_86OPEN": {reflect.TypeOf(q.ELFOSABI_86OPEN), constant.MakeInt64(int64(q.ELFOSABI_86OPEN))}, + "ELFOSABI_AIX": {reflect.TypeOf(q.ELFOSABI_AIX), constant.MakeInt64(int64(q.ELFOSABI_AIX))}, + "ELFOSABI_ARM": {reflect.TypeOf(q.ELFOSABI_ARM), constant.MakeInt64(int64(q.ELFOSABI_ARM))}, + "ELFOSABI_AROS": {reflect.TypeOf(q.ELFOSABI_AROS), constant.MakeInt64(int64(q.ELFOSABI_AROS))}, + "ELFOSABI_CLOUDABI": {reflect.TypeOf(q.ELFOSABI_CLOUDABI), constant.MakeInt64(int64(q.ELFOSABI_CLOUDABI))}, + "ELFOSABI_FENIXOS": {reflect.TypeOf(q.ELFOSABI_FENIXOS), constant.MakeInt64(int64(q.ELFOSABI_FENIXOS))}, + "ELFOSABI_FREEBSD": {reflect.TypeOf(q.ELFOSABI_FREEBSD), constant.MakeInt64(int64(q.ELFOSABI_FREEBSD))}, + "ELFOSABI_HPUX": {reflect.TypeOf(q.ELFOSABI_HPUX), constant.MakeInt64(int64(q.ELFOSABI_HPUX))}, + "ELFOSABI_HURD": {reflect.TypeOf(q.ELFOSABI_HURD), constant.MakeInt64(int64(q.ELFOSABI_HURD))}, + "ELFOSABI_IRIX": {reflect.TypeOf(q.ELFOSABI_IRIX), constant.MakeInt64(int64(q.ELFOSABI_IRIX))}, + "ELFOSABI_LINUX": {reflect.TypeOf(q.ELFOSABI_LINUX), constant.MakeInt64(int64(q.ELFOSABI_LINUX))}, + "ELFOSABI_MODESTO": {reflect.TypeOf(q.ELFOSABI_MODESTO), constant.MakeInt64(int64(q.ELFOSABI_MODESTO))}, + "ELFOSABI_NETBSD": {reflect.TypeOf(q.ELFOSABI_NETBSD), constant.MakeInt64(int64(q.ELFOSABI_NETBSD))}, + "ELFOSABI_NONE": {reflect.TypeOf(q.ELFOSABI_NONE), constant.MakeInt64(int64(q.ELFOSABI_NONE))}, + "ELFOSABI_NSK": {reflect.TypeOf(q.ELFOSABI_NSK), constant.MakeInt64(int64(q.ELFOSABI_NSK))}, + "ELFOSABI_OPENBSD": {reflect.TypeOf(q.ELFOSABI_OPENBSD), constant.MakeInt64(int64(q.ELFOSABI_OPENBSD))}, + "ELFOSABI_OPENVMS": {reflect.TypeOf(q.ELFOSABI_OPENVMS), constant.MakeInt64(int64(q.ELFOSABI_OPENVMS))}, + "ELFOSABI_SOLARIS": {reflect.TypeOf(q.ELFOSABI_SOLARIS), constant.MakeInt64(int64(q.ELFOSABI_SOLARIS))}, + "ELFOSABI_STANDALONE": {reflect.TypeOf(q.ELFOSABI_STANDALONE), constant.MakeInt64(int64(q.ELFOSABI_STANDALONE))}, + "ELFOSABI_TRU64": {reflect.TypeOf(q.ELFOSABI_TRU64), constant.MakeInt64(int64(q.ELFOSABI_TRU64))}, + "EM_386": {reflect.TypeOf(q.EM_386), constant.MakeInt64(int64(q.EM_386))}, + "EM_486": {reflect.TypeOf(q.EM_486), constant.MakeInt64(int64(q.EM_486))}, + "EM_56800EX": {reflect.TypeOf(q.EM_56800EX), constant.MakeInt64(int64(q.EM_56800EX))}, + "EM_68HC05": {reflect.TypeOf(q.EM_68HC05), constant.MakeInt64(int64(q.EM_68HC05))}, + "EM_68HC08": {reflect.TypeOf(q.EM_68HC08), constant.MakeInt64(int64(q.EM_68HC08))}, + "EM_68HC11": {reflect.TypeOf(q.EM_68HC11), constant.MakeInt64(int64(q.EM_68HC11))}, + "EM_68HC12": {reflect.TypeOf(q.EM_68HC12), constant.MakeInt64(int64(q.EM_68HC12))}, + "EM_68HC16": {reflect.TypeOf(q.EM_68HC16), constant.MakeInt64(int64(q.EM_68HC16))}, + "EM_68K": {reflect.TypeOf(q.EM_68K), constant.MakeInt64(int64(q.EM_68K))}, + "EM_78KOR": {reflect.TypeOf(q.EM_78KOR), constant.MakeInt64(int64(q.EM_78KOR))}, + "EM_8051": {reflect.TypeOf(q.EM_8051), constant.MakeInt64(int64(q.EM_8051))}, + "EM_860": {reflect.TypeOf(q.EM_860), constant.MakeInt64(int64(q.EM_860))}, + "EM_88K": {reflect.TypeOf(q.EM_88K), constant.MakeInt64(int64(q.EM_88K))}, + "EM_960": {reflect.TypeOf(q.EM_960), constant.MakeInt64(int64(q.EM_960))}, + "EM_AARCH64": {reflect.TypeOf(q.EM_AARCH64), constant.MakeInt64(int64(q.EM_AARCH64))}, + "EM_ALPHA": {reflect.TypeOf(q.EM_ALPHA), constant.MakeInt64(int64(q.EM_ALPHA))}, + "EM_ALPHA_STD": {reflect.TypeOf(q.EM_ALPHA_STD), constant.MakeInt64(int64(q.EM_ALPHA_STD))}, + "EM_ALTERA_NIOS2": {reflect.TypeOf(q.EM_ALTERA_NIOS2), constant.MakeInt64(int64(q.EM_ALTERA_NIOS2))}, + "EM_AMDGPU": {reflect.TypeOf(q.EM_AMDGPU), constant.MakeInt64(int64(q.EM_AMDGPU))}, + "EM_ARC": {reflect.TypeOf(q.EM_ARC), constant.MakeInt64(int64(q.EM_ARC))}, + "EM_ARCA": {reflect.TypeOf(q.EM_ARCA), constant.MakeInt64(int64(q.EM_ARCA))}, + "EM_ARC_COMPACT": {reflect.TypeOf(q.EM_ARC_COMPACT), constant.MakeInt64(int64(q.EM_ARC_COMPACT))}, + "EM_ARC_COMPACT2": {reflect.TypeOf(q.EM_ARC_COMPACT2), constant.MakeInt64(int64(q.EM_ARC_COMPACT2))}, + "EM_ARM": {reflect.TypeOf(q.EM_ARM), constant.MakeInt64(int64(q.EM_ARM))}, + "EM_AVR": {reflect.TypeOf(q.EM_AVR), constant.MakeInt64(int64(q.EM_AVR))}, + "EM_AVR32": {reflect.TypeOf(q.EM_AVR32), constant.MakeInt64(int64(q.EM_AVR32))}, + "EM_BA1": {reflect.TypeOf(q.EM_BA1), constant.MakeInt64(int64(q.EM_BA1))}, + "EM_BA2": {reflect.TypeOf(q.EM_BA2), constant.MakeInt64(int64(q.EM_BA2))}, + "EM_BLACKFIN": {reflect.TypeOf(q.EM_BLACKFIN), constant.MakeInt64(int64(q.EM_BLACKFIN))}, + "EM_BPF": {reflect.TypeOf(q.EM_BPF), constant.MakeInt64(int64(q.EM_BPF))}, + "EM_C166": {reflect.TypeOf(q.EM_C166), constant.MakeInt64(int64(q.EM_C166))}, + "EM_CDP": {reflect.TypeOf(q.EM_CDP), constant.MakeInt64(int64(q.EM_CDP))}, + "EM_CE": {reflect.TypeOf(q.EM_CE), constant.MakeInt64(int64(q.EM_CE))}, + "EM_CLOUDSHIELD": {reflect.TypeOf(q.EM_CLOUDSHIELD), constant.MakeInt64(int64(q.EM_CLOUDSHIELD))}, + "EM_COGE": {reflect.TypeOf(q.EM_COGE), constant.MakeInt64(int64(q.EM_COGE))}, + "EM_COLDFIRE": {reflect.TypeOf(q.EM_COLDFIRE), constant.MakeInt64(int64(q.EM_COLDFIRE))}, + "EM_COOL": {reflect.TypeOf(q.EM_COOL), constant.MakeInt64(int64(q.EM_COOL))}, + "EM_COREA_1ST": {reflect.TypeOf(q.EM_COREA_1ST), constant.MakeInt64(int64(q.EM_COREA_1ST))}, + "EM_COREA_2ND": {reflect.TypeOf(q.EM_COREA_2ND), constant.MakeInt64(int64(q.EM_COREA_2ND))}, + "EM_CR": {reflect.TypeOf(q.EM_CR), constant.MakeInt64(int64(q.EM_CR))}, + "EM_CR16": {reflect.TypeOf(q.EM_CR16), constant.MakeInt64(int64(q.EM_CR16))}, + "EM_CRAYNV2": {reflect.TypeOf(q.EM_CRAYNV2), constant.MakeInt64(int64(q.EM_CRAYNV2))}, + "EM_CRIS": {reflect.TypeOf(q.EM_CRIS), constant.MakeInt64(int64(q.EM_CRIS))}, + "EM_CRX": {reflect.TypeOf(q.EM_CRX), constant.MakeInt64(int64(q.EM_CRX))}, + "EM_CSR_KALIMBA": {reflect.TypeOf(q.EM_CSR_KALIMBA), constant.MakeInt64(int64(q.EM_CSR_KALIMBA))}, + "EM_CUDA": {reflect.TypeOf(q.EM_CUDA), constant.MakeInt64(int64(q.EM_CUDA))}, + "EM_CYPRESS_M8C": {reflect.TypeOf(q.EM_CYPRESS_M8C), constant.MakeInt64(int64(q.EM_CYPRESS_M8C))}, + "EM_D10V": {reflect.TypeOf(q.EM_D10V), constant.MakeInt64(int64(q.EM_D10V))}, + "EM_D30V": {reflect.TypeOf(q.EM_D30V), constant.MakeInt64(int64(q.EM_D30V))}, + "EM_DSP24": {reflect.TypeOf(q.EM_DSP24), constant.MakeInt64(int64(q.EM_DSP24))}, + "EM_DSPIC30F": {reflect.TypeOf(q.EM_DSPIC30F), constant.MakeInt64(int64(q.EM_DSPIC30F))}, + "EM_DXP": {reflect.TypeOf(q.EM_DXP), constant.MakeInt64(int64(q.EM_DXP))}, + "EM_ECOG1": {reflect.TypeOf(q.EM_ECOG1), constant.MakeInt64(int64(q.EM_ECOG1))}, + "EM_ECOG16": {reflect.TypeOf(q.EM_ECOG16), constant.MakeInt64(int64(q.EM_ECOG16))}, + "EM_ECOG1X": {reflect.TypeOf(q.EM_ECOG1X), constant.MakeInt64(int64(q.EM_ECOG1X))}, + "EM_ECOG2": {reflect.TypeOf(q.EM_ECOG2), constant.MakeInt64(int64(q.EM_ECOG2))}, + "EM_ETPU": {reflect.TypeOf(q.EM_ETPU), constant.MakeInt64(int64(q.EM_ETPU))}, + "EM_EXCESS": {reflect.TypeOf(q.EM_EXCESS), constant.MakeInt64(int64(q.EM_EXCESS))}, + "EM_F2MC16": {reflect.TypeOf(q.EM_F2MC16), constant.MakeInt64(int64(q.EM_F2MC16))}, + "EM_FIREPATH": {reflect.TypeOf(q.EM_FIREPATH), constant.MakeInt64(int64(q.EM_FIREPATH))}, + "EM_FR20": {reflect.TypeOf(q.EM_FR20), constant.MakeInt64(int64(q.EM_FR20))}, + "EM_FR30": {reflect.TypeOf(q.EM_FR30), constant.MakeInt64(int64(q.EM_FR30))}, + "EM_FT32": {reflect.TypeOf(q.EM_FT32), constant.MakeInt64(int64(q.EM_FT32))}, + "EM_FX66": {reflect.TypeOf(q.EM_FX66), constant.MakeInt64(int64(q.EM_FX66))}, + "EM_H8S": {reflect.TypeOf(q.EM_H8S), constant.MakeInt64(int64(q.EM_H8S))}, + "EM_H8_300": {reflect.TypeOf(q.EM_H8_300), constant.MakeInt64(int64(q.EM_H8_300))}, + "EM_H8_300H": {reflect.TypeOf(q.EM_H8_300H), constant.MakeInt64(int64(q.EM_H8_300H))}, + "EM_H8_500": {reflect.TypeOf(q.EM_H8_500), constant.MakeInt64(int64(q.EM_H8_500))}, + "EM_HUANY": {reflect.TypeOf(q.EM_HUANY), constant.MakeInt64(int64(q.EM_HUANY))}, + "EM_IA_64": {reflect.TypeOf(q.EM_IA_64), constant.MakeInt64(int64(q.EM_IA_64))}, + "EM_INTEL205": {reflect.TypeOf(q.EM_INTEL205), constant.MakeInt64(int64(q.EM_INTEL205))}, + "EM_INTEL206": {reflect.TypeOf(q.EM_INTEL206), constant.MakeInt64(int64(q.EM_INTEL206))}, + "EM_INTEL207": {reflect.TypeOf(q.EM_INTEL207), constant.MakeInt64(int64(q.EM_INTEL207))}, + "EM_INTEL208": {reflect.TypeOf(q.EM_INTEL208), constant.MakeInt64(int64(q.EM_INTEL208))}, + "EM_INTEL209": {reflect.TypeOf(q.EM_INTEL209), constant.MakeInt64(int64(q.EM_INTEL209))}, + "EM_IP2K": {reflect.TypeOf(q.EM_IP2K), constant.MakeInt64(int64(q.EM_IP2K))}, + "EM_JAVELIN": {reflect.TypeOf(q.EM_JAVELIN), constant.MakeInt64(int64(q.EM_JAVELIN))}, + "EM_K10M": {reflect.TypeOf(q.EM_K10M), constant.MakeInt64(int64(q.EM_K10M))}, + "EM_KM32": {reflect.TypeOf(q.EM_KM32), constant.MakeInt64(int64(q.EM_KM32))}, + "EM_KMX16": {reflect.TypeOf(q.EM_KMX16), constant.MakeInt64(int64(q.EM_KMX16))}, + "EM_KMX32": {reflect.TypeOf(q.EM_KMX32), constant.MakeInt64(int64(q.EM_KMX32))}, + "EM_KMX8": {reflect.TypeOf(q.EM_KMX8), constant.MakeInt64(int64(q.EM_KMX8))}, + "EM_KVARC": {reflect.TypeOf(q.EM_KVARC), constant.MakeInt64(int64(q.EM_KVARC))}, + "EM_L10M": {reflect.TypeOf(q.EM_L10M), constant.MakeInt64(int64(q.EM_L10M))}, + "EM_LANAI": {reflect.TypeOf(q.EM_LANAI), constant.MakeInt64(int64(q.EM_LANAI))}, + "EM_LATTICEMICO32": {reflect.TypeOf(q.EM_LATTICEMICO32), constant.MakeInt64(int64(q.EM_LATTICEMICO32))}, + "EM_LOONGARCH": {reflect.TypeOf(q.EM_LOONGARCH), constant.MakeInt64(int64(q.EM_LOONGARCH))}, + "EM_M16C": {reflect.TypeOf(q.EM_M16C), constant.MakeInt64(int64(q.EM_M16C))}, + "EM_M32": {reflect.TypeOf(q.EM_M32), constant.MakeInt64(int64(q.EM_M32))}, + "EM_M32C": {reflect.TypeOf(q.EM_M32C), constant.MakeInt64(int64(q.EM_M32C))}, + "EM_M32R": {reflect.TypeOf(q.EM_M32R), constant.MakeInt64(int64(q.EM_M32R))}, + "EM_MANIK": {reflect.TypeOf(q.EM_MANIK), constant.MakeInt64(int64(q.EM_MANIK))}, + "EM_MAX": {reflect.TypeOf(q.EM_MAX), constant.MakeInt64(int64(q.EM_MAX))}, + "EM_MAXQ30": {reflect.TypeOf(q.EM_MAXQ30), constant.MakeInt64(int64(q.EM_MAXQ30))}, + "EM_MCHP_PIC": {reflect.TypeOf(q.EM_MCHP_PIC), constant.MakeInt64(int64(q.EM_MCHP_PIC))}, + "EM_MCST_ELBRUS": {reflect.TypeOf(q.EM_MCST_ELBRUS), constant.MakeInt64(int64(q.EM_MCST_ELBRUS))}, + "EM_ME16": {reflect.TypeOf(q.EM_ME16), constant.MakeInt64(int64(q.EM_ME16))}, + "EM_METAG": {reflect.TypeOf(q.EM_METAG), constant.MakeInt64(int64(q.EM_METAG))}, + "EM_MICROBLAZE": {reflect.TypeOf(q.EM_MICROBLAZE), constant.MakeInt64(int64(q.EM_MICROBLAZE))}, + "EM_MIPS": {reflect.TypeOf(q.EM_MIPS), constant.MakeInt64(int64(q.EM_MIPS))}, + "EM_MIPS_RS3_LE": {reflect.TypeOf(q.EM_MIPS_RS3_LE), constant.MakeInt64(int64(q.EM_MIPS_RS3_LE))}, + "EM_MIPS_RS4_BE": {reflect.TypeOf(q.EM_MIPS_RS4_BE), constant.MakeInt64(int64(q.EM_MIPS_RS4_BE))}, + "EM_MIPS_X": {reflect.TypeOf(q.EM_MIPS_X), constant.MakeInt64(int64(q.EM_MIPS_X))}, + "EM_MMA": {reflect.TypeOf(q.EM_MMA), constant.MakeInt64(int64(q.EM_MMA))}, + "EM_MMDSP_PLUS": {reflect.TypeOf(q.EM_MMDSP_PLUS), constant.MakeInt64(int64(q.EM_MMDSP_PLUS))}, + "EM_MMIX": {reflect.TypeOf(q.EM_MMIX), constant.MakeInt64(int64(q.EM_MMIX))}, + "EM_MN10200": {reflect.TypeOf(q.EM_MN10200), constant.MakeInt64(int64(q.EM_MN10200))}, + "EM_MN10300": {reflect.TypeOf(q.EM_MN10300), constant.MakeInt64(int64(q.EM_MN10300))}, + "EM_MOXIE": {reflect.TypeOf(q.EM_MOXIE), constant.MakeInt64(int64(q.EM_MOXIE))}, + "EM_MSP430": {reflect.TypeOf(q.EM_MSP430), constant.MakeInt64(int64(q.EM_MSP430))}, + "EM_NCPU": {reflect.TypeOf(q.EM_NCPU), constant.MakeInt64(int64(q.EM_NCPU))}, + "EM_NDR1": {reflect.TypeOf(q.EM_NDR1), constant.MakeInt64(int64(q.EM_NDR1))}, + "EM_NDS32": {reflect.TypeOf(q.EM_NDS32), constant.MakeInt64(int64(q.EM_NDS32))}, + "EM_NONE": {reflect.TypeOf(q.EM_NONE), constant.MakeInt64(int64(q.EM_NONE))}, + "EM_NORC": {reflect.TypeOf(q.EM_NORC), constant.MakeInt64(int64(q.EM_NORC))}, + "EM_NS32K": {reflect.TypeOf(q.EM_NS32K), constant.MakeInt64(int64(q.EM_NS32K))}, + "EM_OPEN8": {reflect.TypeOf(q.EM_OPEN8), constant.MakeInt64(int64(q.EM_OPEN8))}, + "EM_OPENRISC": {reflect.TypeOf(q.EM_OPENRISC), constant.MakeInt64(int64(q.EM_OPENRISC))}, + "EM_PARISC": {reflect.TypeOf(q.EM_PARISC), constant.MakeInt64(int64(q.EM_PARISC))}, + "EM_PCP": {reflect.TypeOf(q.EM_PCP), constant.MakeInt64(int64(q.EM_PCP))}, + "EM_PDP10": {reflect.TypeOf(q.EM_PDP10), constant.MakeInt64(int64(q.EM_PDP10))}, + "EM_PDP11": {reflect.TypeOf(q.EM_PDP11), constant.MakeInt64(int64(q.EM_PDP11))}, + "EM_PDSP": {reflect.TypeOf(q.EM_PDSP), constant.MakeInt64(int64(q.EM_PDSP))}, + "EM_PJ": {reflect.TypeOf(q.EM_PJ), constant.MakeInt64(int64(q.EM_PJ))}, + "EM_PPC": {reflect.TypeOf(q.EM_PPC), constant.MakeInt64(int64(q.EM_PPC))}, + "EM_PPC64": {reflect.TypeOf(q.EM_PPC64), constant.MakeInt64(int64(q.EM_PPC64))}, + "EM_PRISM": {reflect.TypeOf(q.EM_PRISM), constant.MakeInt64(int64(q.EM_PRISM))}, + "EM_QDSP6": {reflect.TypeOf(q.EM_QDSP6), constant.MakeInt64(int64(q.EM_QDSP6))}, + "EM_R32C": {reflect.TypeOf(q.EM_R32C), constant.MakeInt64(int64(q.EM_R32C))}, + "EM_RCE": {reflect.TypeOf(q.EM_RCE), constant.MakeInt64(int64(q.EM_RCE))}, + "EM_RH32": {reflect.TypeOf(q.EM_RH32), constant.MakeInt64(int64(q.EM_RH32))}, + "EM_RISCV": {reflect.TypeOf(q.EM_RISCV), constant.MakeInt64(int64(q.EM_RISCV))}, + "EM_RL78": {reflect.TypeOf(q.EM_RL78), constant.MakeInt64(int64(q.EM_RL78))}, + "EM_RS08": {reflect.TypeOf(q.EM_RS08), constant.MakeInt64(int64(q.EM_RS08))}, + "EM_RX": {reflect.TypeOf(q.EM_RX), constant.MakeInt64(int64(q.EM_RX))}, + "EM_S370": {reflect.TypeOf(q.EM_S370), constant.MakeInt64(int64(q.EM_S370))}, + "EM_S390": {reflect.TypeOf(q.EM_S390), constant.MakeInt64(int64(q.EM_S390))}, + "EM_SCORE7": {reflect.TypeOf(q.EM_SCORE7), constant.MakeInt64(int64(q.EM_SCORE7))}, + "EM_SEP": {reflect.TypeOf(q.EM_SEP), constant.MakeInt64(int64(q.EM_SEP))}, + "EM_SE_C17": {reflect.TypeOf(q.EM_SE_C17), constant.MakeInt64(int64(q.EM_SE_C17))}, + "EM_SE_C33": {reflect.TypeOf(q.EM_SE_C33), constant.MakeInt64(int64(q.EM_SE_C33))}, + "EM_SH": {reflect.TypeOf(q.EM_SH), constant.MakeInt64(int64(q.EM_SH))}, + "EM_SHARC": {reflect.TypeOf(q.EM_SHARC), constant.MakeInt64(int64(q.EM_SHARC))}, + "EM_SLE9X": {reflect.TypeOf(q.EM_SLE9X), constant.MakeInt64(int64(q.EM_SLE9X))}, + "EM_SNP1K": {reflect.TypeOf(q.EM_SNP1K), constant.MakeInt64(int64(q.EM_SNP1K))}, + "EM_SPARC": {reflect.TypeOf(q.EM_SPARC), constant.MakeInt64(int64(q.EM_SPARC))}, + "EM_SPARC32PLUS": {reflect.TypeOf(q.EM_SPARC32PLUS), constant.MakeInt64(int64(q.EM_SPARC32PLUS))}, + "EM_SPARCV9": {reflect.TypeOf(q.EM_SPARCV9), constant.MakeInt64(int64(q.EM_SPARCV9))}, + "EM_ST100": {reflect.TypeOf(q.EM_ST100), constant.MakeInt64(int64(q.EM_ST100))}, + "EM_ST19": {reflect.TypeOf(q.EM_ST19), constant.MakeInt64(int64(q.EM_ST19))}, + "EM_ST200": {reflect.TypeOf(q.EM_ST200), constant.MakeInt64(int64(q.EM_ST200))}, + "EM_ST7": {reflect.TypeOf(q.EM_ST7), constant.MakeInt64(int64(q.EM_ST7))}, + "EM_ST9PLUS": {reflect.TypeOf(q.EM_ST9PLUS), constant.MakeInt64(int64(q.EM_ST9PLUS))}, + "EM_STARCORE": {reflect.TypeOf(q.EM_STARCORE), constant.MakeInt64(int64(q.EM_STARCORE))}, + "EM_STM8": {reflect.TypeOf(q.EM_STM8), constant.MakeInt64(int64(q.EM_STM8))}, + "EM_STXP7X": {reflect.TypeOf(q.EM_STXP7X), constant.MakeInt64(int64(q.EM_STXP7X))}, + "EM_SVX": {reflect.TypeOf(q.EM_SVX), constant.MakeInt64(int64(q.EM_SVX))}, + "EM_TILE64": {reflect.TypeOf(q.EM_TILE64), constant.MakeInt64(int64(q.EM_TILE64))}, + "EM_TILEGX": {reflect.TypeOf(q.EM_TILEGX), constant.MakeInt64(int64(q.EM_TILEGX))}, + "EM_TILEPRO": {reflect.TypeOf(q.EM_TILEPRO), constant.MakeInt64(int64(q.EM_TILEPRO))}, + "EM_TINYJ": {reflect.TypeOf(q.EM_TINYJ), constant.MakeInt64(int64(q.EM_TINYJ))}, + "EM_TI_ARP32": {reflect.TypeOf(q.EM_TI_ARP32), constant.MakeInt64(int64(q.EM_TI_ARP32))}, + "EM_TI_C2000": {reflect.TypeOf(q.EM_TI_C2000), constant.MakeInt64(int64(q.EM_TI_C2000))}, + "EM_TI_C5500": {reflect.TypeOf(q.EM_TI_C5500), constant.MakeInt64(int64(q.EM_TI_C5500))}, + "EM_TI_C6000": {reflect.TypeOf(q.EM_TI_C6000), constant.MakeInt64(int64(q.EM_TI_C6000))}, + "EM_TI_PRU": {reflect.TypeOf(q.EM_TI_PRU), constant.MakeInt64(int64(q.EM_TI_PRU))}, + "EM_TMM_GPP": {reflect.TypeOf(q.EM_TMM_GPP), constant.MakeInt64(int64(q.EM_TMM_GPP))}, + "EM_TPC": {reflect.TypeOf(q.EM_TPC), constant.MakeInt64(int64(q.EM_TPC))}, + "EM_TRICORE": {reflect.TypeOf(q.EM_TRICORE), constant.MakeInt64(int64(q.EM_TRICORE))}, + "EM_TRIMEDIA": {reflect.TypeOf(q.EM_TRIMEDIA), constant.MakeInt64(int64(q.EM_TRIMEDIA))}, + "EM_TSK3000": {reflect.TypeOf(q.EM_TSK3000), constant.MakeInt64(int64(q.EM_TSK3000))}, + "EM_UNICORE": {reflect.TypeOf(q.EM_UNICORE), constant.MakeInt64(int64(q.EM_UNICORE))}, + "EM_V800": {reflect.TypeOf(q.EM_V800), constant.MakeInt64(int64(q.EM_V800))}, + "EM_V850": {reflect.TypeOf(q.EM_V850), constant.MakeInt64(int64(q.EM_V850))}, + "EM_VAX": {reflect.TypeOf(q.EM_VAX), constant.MakeInt64(int64(q.EM_VAX))}, + "EM_VIDEOCORE": {reflect.TypeOf(q.EM_VIDEOCORE), constant.MakeInt64(int64(q.EM_VIDEOCORE))}, + "EM_VIDEOCORE3": {reflect.TypeOf(q.EM_VIDEOCORE3), constant.MakeInt64(int64(q.EM_VIDEOCORE3))}, + "EM_VIDEOCORE5": {reflect.TypeOf(q.EM_VIDEOCORE5), constant.MakeInt64(int64(q.EM_VIDEOCORE5))}, + "EM_VISIUM": {reflect.TypeOf(q.EM_VISIUM), constant.MakeInt64(int64(q.EM_VISIUM))}, + "EM_VPP500": {reflect.TypeOf(q.EM_VPP500), constant.MakeInt64(int64(q.EM_VPP500))}, + "EM_X86_64": {reflect.TypeOf(q.EM_X86_64), constant.MakeInt64(int64(q.EM_X86_64))}, + "EM_XCORE": {reflect.TypeOf(q.EM_XCORE), constant.MakeInt64(int64(q.EM_XCORE))}, + "EM_XGATE": {reflect.TypeOf(q.EM_XGATE), constant.MakeInt64(int64(q.EM_XGATE))}, + "EM_XIMO16": {reflect.TypeOf(q.EM_XIMO16), constant.MakeInt64(int64(q.EM_XIMO16))}, + "EM_XTENSA": {reflect.TypeOf(q.EM_XTENSA), constant.MakeInt64(int64(q.EM_XTENSA))}, + "EM_Z80": {reflect.TypeOf(q.EM_Z80), constant.MakeInt64(int64(q.EM_Z80))}, + "EM_ZSP": {reflect.TypeOf(q.EM_ZSP), constant.MakeInt64(int64(q.EM_ZSP))}, + "ET_CORE": {reflect.TypeOf(q.ET_CORE), constant.MakeInt64(int64(q.ET_CORE))}, + "ET_DYN": {reflect.TypeOf(q.ET_DYN), constant.MakeInt64(int64(q.ET_DYN))}, + "ET_EXEC": {reflect.TypeOf(q.ET_EXEC), constant.MakeInt64(int64(q.ET_EXEC))}, + "ET_HIOS": {reflect.TypeOf(q.ET_HIOS), constant.MakeInt64(int64(q.ET_HIOS))}, + "ET_HIPROC": {reflect.TypeOf(q.ET_HIPROC), constant.MakeInt64(int64(q.ET_HIPROC))}, + "ET_LOOS": {reflect.TypeOf(q.ET_LOOS), constant.MakeInt64(int64(q.ET_LOOS))}, + "ET_LOPROC": {reflect.TypeOf(q.ET_LOPROC), constant.MakeInt64(int64(q.ET_LOPROC))}, + "ET_NONE": {reflect.TypeOf(q.ET_NONE), constant.MakeInt64(int64(q.ET_NONE))}, + "ET_REL": {reflect.TypeOf(q.ET_REL), constant.MakeInt64(int64(q.ET_REL))}, + "EV_CURRENT": {reflect.TypeOf(q.EV_CURRENT), constant.MakeInt64(int64(q.EV_CURRENT))}, + "EV_NONE": {reflect.TypeOf(q.EV_NONE), constant.MakeInt64(int64(q.EV_NONE))}, + "NT_FPREGSET": {reflect.TypeOf(q.NT_FPREGSET), constant.MakeInt64(int64(q.NT_FPREGSET))}, + "NT_PRPSINFO": {reflect.TypeOf(q.NT_PRPSINFO), constant.MakeInt64(int64(q.NT_PRPSINFO))}, + "NT_PRSTATUS": {reflect.TypeOf(q.NT_PRSTATUS), constant.MakeInt64(int64(q.NT_PRSTATUS))}, + "PF_MASKOS": {reflect.TypeOf(q.PF_MASKOS), constant.MakeInt64(int64(q.PF_MASKOS))}, + "PF_MASKPROC": {reflect.TypeOf(q.PF_MASKPROC), constant.MakeInt64(int64(q.PF_MASKPROC))}, + "PF_R": {reflect.TypeOf(q.PF_R), constant.MakeInt64(int64(q.PF_R))}, + "PF_W": {reflect.TypeOf(q.PF_W), constant.MakeInt64(int64(q.PF_W))}, + "PF_X": {reflect.TypeOf(q.PF_X), constant.MakeInt64(int64(q.PF_X))}, + "PT_AARCH64_ARCHEXT": {reflect.TypeOf(q.PT_AARCH64_ARCHEXT), constant.MakeInt64(int64(q.PT_AARCH64_ARCHEXT))}, + "PT_AARCH64_UNWIND": {reflect.TypeOf(q.PT_AARCH64_UNWIND), constant.MakeInt64(int64(q.PT_AARCH64_UNWIND))}, + "PT_ARM_ARCHEXT": {reflect.TypeOf(q.PT_ARM_ARCHEXT), constant.MakeInt64(int64(q.PT_ARM_ARCHEXT))}, + "PT_ARM_EXIDX": {reflect.TypeOf(q.PT_ARM_EXIDX), constant.MakeInt64(int64(q.PT_ARM_EXIDX))}, + "PT_DYNAMIC": {reflect.TypeOf(q.PT_DYNAMIC), constant.MakeInt64(int64(q.PT_DYNAMIC))}, + "PT_GNU_EH_FRAME": {reflect.TypeOf(q.PT_GNU_EH_FRAME), constant.MakeInt64(int64(q.PT_GNU_EH_FRAME))}, + "PT_GNU_MBIND_HI": {reflect.TypeOf(q.PT_GNU_MBIND_HI), constant.MakeInt64(int64(q.PT_GNU_MBIND_HI))}, + "PT_GNU_MBIND_LO": {reflect.TypeOf(q.PT_GNU_MBIND_LO), constant.MakeInt64(int64(q.PT_GNU_MBIND_LO))}, + "PT_GNU_PROPERTY": {reflect.TypeOf(q.PT_GNU_PROPERTY), constant.MakeInt64(int64(q.PT_GNU_PROPERTY))}, + "PT_GNU_RELRO": {reflect.TypeOf(q.PT_GNU_RELRO), constant.MakeInt64(int64(q.PT_GNU_RELRO))}, + "PT_GNU_STACK": {reflect.TypeOf(q.PT_GNU_STACK), constant.MakeInt64(int64(q.PT_GNU_STACK))}, + "PT_HIOS": {reflect.TypeOf(q.PT_HIOS), constant.MakeInt64(int64(q.PT_HIOS))}, + "PT_HIPROC": {reflect.TypeOf(q.PT_HIPROC), constant.MakeInt64(int64(q.PT_HIPROC))}, + "PT_INTERP": {reflect.TypeOf(q.PT_INTERP), constant.MakeInt64(int64(q.PT_INTERP))}, + "PT_LOAD": {reflect.TypeOf(q.PT_LOAD), constant.MakeInt64(int64(q.PT_LOAD))}, + "PT_LOOS": {reflect.TypeOf(q.PT_LOOS), constant.MakeInt64(int64(q.PT_LOOS))}, + "PT_LOPROC": {reflect.TypeOf(q.PT_LOPROC), constant.MakeInt64(int64(q.PT_LOPROC))}, + "PT_MIPS_ABIFLAGS": {reflect.TypeOf(q.PT_MIPS_ABIFLAGS), constant.MakeInt64(int64(q.PT_MIPS_ABIFLAGS))}, + "PT_MIPS_OPTIONS": {reflect.TypeOf(q.PT_MIPS_OPTIONS), constant.MakeInt64(int64(q.PT_MIPS_OPTIONS))}, + "PT_MIPS_REGINFO": {reflect.TypeOf(q.PT_MIPS_REGINFO), constant.MakeInt64(int64(q.PT_MIPS_REGINFO))}, + "PT_MIPS_RTPROC": {reflect.TypeOf(q.PT_MIPS_RTPROC), constant.MakeInt64(int64(q.PT_MIPS_RTPROC))}, + "PT_NOTE": {reflect.TypeOf(q.PT_NOTE), constant.MakeInt64(int64(q.PT_NOTE))}, + "PT_NULL": {reflect.TypeOf(q.PT_NULL), constant.MakeInt64(int64(q.PT_NULL))}, + "PT_OPENBSD_BOOTDATA": {reflect.TypeOf(q.PT_OPENBSD_BOOTDATA), constant.MakeInt64(int64(q.PT_OPENBSD_BOOTDATA))}, + "PT_OPENBSD_NOBTCFI": {reflect.TypeOf(q.PT_OPENBSD_NOBTCFI), constant.MakeInt64(int64(q.PT_OPENBSD_NOBTCFI))}, + "PT_OPENBSD_RANDOMIZE": {reflect.TypeOf(q.PT_OPENBSD_RANDOMIZE), constant.MakeInt64(int64(q.PT_OPENBSD_RANDOMIZE))}, + "PT_OPENBSD_WXNEEDED": {reflect.TypeOf(q.PT_OPENBSD_WXNEEDED), constant.MakeInt64(int64(q.PT_OPENBSD_WXNEEDED))}, + "PT_PAX_FLAGS": {reflect.TypeOf(q.PT_PAX_FLAGS), constant.MakeInt64(int64(q.PT_PAX_FLAGS))}, + "PT_PHDR": {reflect.TypeOf(q.PT_PHDR), constant.MakeInt64(int64(q.PT_PHDR))}, + "PT_S390_PGSTE": {reflect.TypeOf(q.PT_S390_PGSTE), constant.MakeInt64(int64(q.PT_S390_PGSTE))}, + "PT_SHLIB": {reflect.TypeOf(q.PT_SHLIB), constant.MakeInt64(int64(q.PT_SHLIB))}, + "PT_SUNWSTACK": {reflect.TypeOf(q.PT_SUNWSTACK), constant.MakeInt64(int64(q.PT_SUNWSTACK))}, + "PT_SUNW_EH_FRAME": {reflect.TypeOf(q.PT_SUNW_EH_FRAME), constant.MakeInt64(int64(q.PT_SUNW_EH_FRAME))}, + "PT_TLS": {reflect.TypeOf(q.PT_TLS), constant.MakeInt64(int64(q.PT_TLS))}, + "R_386_16": {reflect.TypeOf(q.R_386_16), constant.MakeInt64(int64(q.R_386_16))}, + "R_386_32": {reflect.TypeOf(q.R_386_32), constant.MakeInt64(int64(q.R_386_32))}, + "R_386_32PLT": {reflect.TypeOf(q.R_386_32PLT), constant.MakeInt64(int64(q.R_386_32PLT))}, + "R_386_8": {reflect.TypeOf(q.R_386_8), constant.MakeInt64(int64(q.R_386_8))}, + "R_386_COPY": {reflect.TypeOf(q.R_386_COPY), constant.MakeInt64(int64(q.R_386_COPY))}, + "R_386_GLOB_DAT": {reflect.TypeOf(q.R_386_GLOB_DAT), constant.MakeInt64(int64(q.R_386_GLOB_DAT))}, + "R_386_GOT32": {reflect.TypeOf(q.R_386_GOT32), constant.MakeInt64(int64(q.R_386_GOT32))}, + "R_386_GOT32X": {reflect.TypeOf(q.R_386_GOT32X), constant.MakeInt64(int64(q.R_386_GOT32X))}, + "R_386_GOTOFF": {reflect.TypeOf(q.R_386_GOTOFF), constant.MakeInt64(int64(q.R_386_GOTOFF))}, + "R_386_GOTPC": {reflect.TypeOf(q.R_386_GOTPC), constant.MakeInt64(int64(q.R_386_GOTPC))}, + "R_386_IRELATIVE": {reflect.TypeOf(q.R_386_IRELATIVE), constant.MakeInt64(int64(q.R_386_IRELATIVE))}, + "R_386_JMP_SLOT": {reflect.TypeOf(q.R_386_JMP_SLOT), constant.MakeInt64(int64(q.R_386_JMP_SLOT))}, + "R_386_NONE": {reflect.TypeOf(q.R_386_NONE), constant.MakeInt64(int64(q.R_386_NONE))}, + "R_386_PC16": {reflect.TypeOf(q.R_386_PC16), constant.MakeInt64(int64(q.R_386_PC16))}, + "R_386_PC32": {reflect.TypeOf(q.R_386_PC32), constant.MakeInt64(int64(q.R_386_PC32))}, + "R_386_PC8": {reflect.TypeOf(q.R_386_PC8), constant.MakeInt64(int64(q.R_386_PC8))}, + "R_386_PLT32": {reflect.TypeOf(q.R_386_PLT32), constant.MakeInt64(int64(q.R_386_PLT32))}, + "R_386_RELATIVE": {reflect.TypeOf(q.R_386_RELATIVE), constant.MakeInt64(int64(q.R_386_RELATIVE))}, + "R_386_SIZE32": {reflect.TypeOf(q.R_386_SIZE32), constant.MakeInt64(int64(q.R_386_SIZE32))}, + "R_386_TLS_DESC": {reflect.TypeOf(q.R_386_TLS_DESC), constant.MakeInt64(int64(q.R_386_TLS_DESC))}, + "R_386_TLS_DESC_CALL": {reflect.TypeOf(q.R_386_TLS_DESC_CALL), constant.MakeInt64(int64(q.R_386_TLS_DESC_CALL))}, + "R_386_TLS_DTPMOD32": {reflect.TypeOf(q.R_386_TLS_DTPMOD32), constant.MakeInt64(int64(q.R_386_TLS_DTPMOD32))}, + "R_386_TLS_DTPOFF32": {reflect.TypeOf(q.R_386_TLS_DTPOFF32), constant.MakeInt64(int64(q.R_386_TLS_DTPOFF32))}, + "R_386_TLS_GD": {reflect.TypeOf(q.R_386_TLS_GD), constant.MakeInt64(int64(q.R_386_TLS_GD))}, + "R_386_TLS_GD_32": {reflect.TypeOf(q.R_386_TLS_GD_32), constant.MakeInt64(int64(q.R_386_TLS_GD_32))}, + "R_386_TLS_GD_CALL": {reflect.TypeOf(q.R_386_TLS_GD_CALL), constant.MakeInt64(int64(q.R_386_TLS_GD_CALL))}, + "R_386_TLS_GD_POP": {reflect.TypeOf(q.R_386_TLS_GD_POP), constant.MakeInt64(int64(q.R_386_TLS_GD_POP))}, + "R_386_TLS_GD_PUSH": {reflect.TypeOf(q.R_386_TLS_GD_PUSH), constant.MakeInt64(int64(q.R_386_TLS_GD_PUSH))}, + "R_386_TLS_GOTDESC": {reflect.TypeOf(q.R_386_TLS_GOTDESC), constant.MakeInt64(int64(q.R_386_TLS_GOTDESC))}, + "R_386_TLS_GOTIE": {reflect.TypeOf(q.R_386_TLS_GOTIE), constant.MakeInt64(int64(q.R_386_TLS_GOTIE))}, + "R_386_TLS_IE": {reflect.TypeOf(q.R_386_TLS_IE), constant.MakeInt64(int64(q.R_386_TLS_IE))}, + "R_386_TLS_IE_32": {reflect.TypeOf(q.R_386_TLS_IE_32), constant.MakeInt64(int64(q.R_386_TLS_IE_32))}, + "R_386_TLS_LDM": {reflect.TypeOf(q.R_386_TLS_LDM), constant.MakeInt64(int64(q.R_386_TLS_LDM))}, + "R_386_TLS_LDM_32": {reflect.TypeOf(q.R_386_TLS_LDM_32), constant.MakeInt64(int64(q.R_386_TLS_LDM_32))}, + "R_386_TLS_LDM_CALL": {reflect.TypeOf(q.R_386_TLS_LDM_CALL), constant.MakeInt64(int64(q.R_386_TLS_LDM_CALL))}, + "R_386_TLS_LDM_POP": {reflect.TypeOf(q.R_386_TLS_LDM_POP), constant.MakeInt64(int64(q.R_386_TLS_LDM_POP))}, + "R_386_TLS_LDM_PUSH": {reflect.TypeOf(q.R_386_TLS_LDM_PUSH), constant.MakeInt64(int64(q.R_386_TLS_LDM_PUSH))}, + "R_386_TLS_LDO_32": {reflect.TypeOf(q.R_386_TLS_LDO_32), constant.MakeInt64(int64(q.R_386_TLS_LDO_32))}, + "R_386_TLS_LE": {reflect.TypeOf(q.R_386_TLS_LE), constant.MakeInt64(int64(q.R_386_TLS_LE))}, + "R_386_TLS_LE_32": {reflect.TypeOf(q.R_386_TLS_LE_32), constant.MakeInt64(int64(q.R_386_TLS_LE_32))}, + "R_386_TLS_TPOFF": {reflect.TypeOf(q.R_386_TLS_TPOFF), constant.MakeInt64(int64(q.R_386_TLS_TPOFF))}, + "R_386_TLS_TPOFF32": {reflect.TypeOf(q.R_386_TLS_TPOFF32), constant.MakeInt64(int64(q.R_386_TLS_TPOFF32))}, + "R_390_12": {reflect.TypeOf(q.R_390_12), constant.MakeInt64(int64(q.R_390_12))}, + "R_390_16": {reflect.TypeOf(q.R_390_16), constant.MakeInt64(int64(q.R_390_16))}, + "R_390_20": {reflect.TypeOf(q.R_390_20), constant.MakeInt64(int64(q.R_390_20))}, + "R_390_32": {reflect.TypeOf(q.R_390_32), constant.MakeInt64(int64(q.R_390_32))}, + "R_390_64": {reflect.TypeOf(q.R_390_64), constant.MakeInt64(int64(q.R_390_64))}, + "R_390_8": {reflect.TypeOf(q.R_390_8), constant.MakeInt64(int64(q.R_390_8))}, + "R_390_COPY": {reflect.TypeOf(q.R_390_COPY), constant.MakeInt64(int64(q.R_390_COPY))}, + "R_390_GLOB_DAT": {reflect.TypeOf(q.R_390_GLOB_DAT), constant.MakeInt64(int64(q.R_390_GLOB_DAT))}, + "R_390_GOT12": {reflect.TypeOf(q.R_390_GOT12), constant.MakeInt64(int64(q.R_390_GOT12))}, + "R_390_GOT16": {reflect.TypeOf(q.R_390_GOT16), constant.MakeInt64(int64(q.R_390_GOT16))}, + "R_390_GOT20": {reflect.TypeOf(q.R_390_GOT20), constant.MakeInt64(int64(q.R_390_GOT20))}, + "R_390_GOT32": {reflect.TypeOf(q.R_390_GOT32), constant.MakeInt64(int64(q.R_390_GOT32))}, + "R_390_GOT64": {reflect.TypeOf(q.R_390_GOT64), constant.MakeInt64(int64(q.R_390_GOT64))}, + "R_390_GOTENT": {reflect.TypeOf(q.R_390_GOTENT), constant.MakeInt64(int64(q.R_390_GOTENT))}, + "R_390_GOTOFF": {reflect.TypeOf(q.R_390_GOTOFF), constant.MakeInt64(int64(q.R_390_GOTOFF))}, + "R_390_GOTOFF16": {reflect.TypeOf(q.R_390_GOTOFF16), constant.MakeInt64(int64(q.R_390_GOTOFF16))}, + "R_390_GOTOFF64": {reflect.TypeOf(q.R_390_GOTOFF64), constant.MakeInt64(int64(q.R_390_GOTOFF64))}, + "R_390_GOTPC": {reflect.TypeOf(q.R_390_GOTPC), constant.MakeInt64(int64(q.R_390_GOTPC))}, + "R_390_GOTPCDBL": {reflect.TypeOf(q.R_390_GOTPCDBL), constant.MakeInt64(int64(q.R_390_GOTPCDBL))}, + "R_390_GOTPLT12": {reflect.TypeOf(q.R_390_GOTPLT12), constant.MakeInt64(int64(q.R_390_GOTPLT12))}, + "R_390_GOTPLT16": {reflect.TypeOf(q.R_390_GOTPLT16), constant.MakeInt64(int64(q.R_390_GOTPLT16))}, + "R_390_GOTPLT20": {reflect.TypeOf(q.R_390_GOTPLT20), constant.MakeInt64(int64(q.R_390_GOTPLT20))}, + "R_390_GOTPLT32": {reflect.TypeOf(q.R_390_GOTPLT32), constant.MakeInt64(int64(q.R_390_GOTPLT32))}, + "R_390_GOTPLT64": {reflect.TypeOf(q.R_390_GOTPLT64), constant.MakeInt64(int64(q.R_390_GOTPLT64))}, + "R_390_GOTPLTENT": {reflect.TypeOf(q.R_390_GOTPLTENT), constant.MakeInt64(int64(q.R_390_GOTPLTENT))}, + "R_390_GOTPLTOFF16": {reflect.TypeOf(q.R_390_GOTPLTOFF16), constant.MakeInt64(int64(q.R_390_GOTPLTOFF16))}, + "R_390_GOTPLTOFF32": {reflect.TypeOf(q.R_390_GOTPLTOFF32), constant.MakeInt64(int64(q.R_390_GOTPLTOFF32))}, + "R_390_GOTPLTOFF64": {reflect.TypeOf(q.R_390_GOTPLTOFF64), constant.MakeInt64(int64(q.R_390_GOTPLTOFF64))}, + "R_390_JMP_SLOT": {reflect.TypeOf(q.R_390_JMP_SLOT), constant.MakeInt64(int64(q.R_390_JMP_SLOT))}, + "R_390_NONE": {reflect.TypeOf(q.R_390_NONE), constant.MakeInt64(int64(q.R_390_NONE))}, + "R_390_PC16": {reflect.TypeOf(q.R_390_PC16), constant.MakeInt64(int64(q.R_390_PC16))}, + "R_390_PC16DBL": {reflect.TypeOf(q.R_390_PC16DBL), constant.MakeInt64(int64(q.R_390_PC16DBL))}, + "R_390_PC32": {reflect.TypeOf(q.R_390_PC32), constant.MakeInt64(int64(q.R_390_PC32))}, + "R_390_PC32DBL": {reflect.TypeOf(q.R_390_PC32DBL), constant.MakeInt64(int64(q.R_390_PC32DBL))}, + "R_390_PC64": {reflect.TypeOf(q.R_390_PC64), constant.MakeInt64(int64(q.R_390_PC64))}, + "R_390_PLT16DBL": {reflect.TypeOf(q.R_390_PLT16DBL), constant.MakeInt64(int64(q.R_390_PLT16DBL))}, + "R_390_PLT32": {reflect.TypeOf(q.R_390_PLT32), constant.MakeInt64(int64(q.R_390_PLT32))}, + "R_390_PLT32DBL": {reflect.TypeOf(q.R_390_PLT32DBL), constant.MakeInt64(int64(q.R_390_PLT32DBL))}, + "R_390_PLT64": {reflect.TypeOf(q.R_390_PLT64), constant.MakeInt64(int64(q.R_390_PLT64))}, + "R_390_RELATIVE": {reflect.TypeOf(q.R_390_RELATIVE), constant.MakeInt64(int64(q.R_390_RELATIVE))}, + "R_390_TLS_DTPMOD": {reflect.TypeOf(q.R_390_TLS_DTPMOD), constant.MakeInt64(int64(q.R_390_TLS_DTPMOD))}, + "R_390_TLS_DTPOFF": {reflect.TypeOf(q.R_390_TLS_DTPOFF), constant.MakeInt64(int64(q.R_390_TLS_DTPOFF))}, + "R_390_TLS_GD32": {reflect.TypeOf(q.R_390_TLS_GD32), constant.MakeInt64(int64(q.R_390_TLS_GD32))}, + "R_390_TLS_GD64": {reflect.TypeOf(q.R_390_TLS_GD64), constant.MakeInt64(int64(q.R_390_TLS_GD64))}, + "R_390_TLS_GDCALL": {reflect.TypeOf(q.R_390_TLS_GDCALL), constant.MakeInt64(int64(q.R_390_TLS_GDCALL))}, + "R_390_TLS_GOTIE12": {reflect.TypeOf(q.R_390_TLS_GOTIE12), constant.MakeInt64(int64(q.R_390_TLS_GOTIE12))}, + "R_390_TLS_GOTIE20": {reflect.TypeOf(q.R_390_TLS_GOTIE20), constant.MakeInt64(int64(q.R_390_TLS_GOTIE20))}, + "R_390_TLS_GOTIE32": {reflect.TypeOf(q.R_390_TLS_GOTIE32), constant.MakeInt64(int64(q.R_390_TLS_GOTIE32))}, + "R_390_TLS_GOTIE64": {reflect.TypeOf(q.R_390_TLS_GOTIE64), constant.MakeInt64(int64(q.R_390_TLS_GOTIE64))}, + "R_390_TLS_IE32": {reflect.TypeOf(q.R_390_TLS_IE32), constant.MakeInt64(int64(q.R_390_TLS_IE32))}, + "R_390_TLS_IE64": {reflect.TypeOf(q.R_390_TLS_IE64), constant.MakeInt64(int64(q.R_390_TLS_IE64))}, + "R_390_TLS_IEENT": {reflect.TypeOf(q.R_390_TLS_IEENT), constant.MakeInt64(int64(q.R_390_TLS_IEENT))}, + "R_390_TLS_LDCALL": {reflect.TypeOf(q.R_390_TLS_LDCALL), constant.MakeInt64(int64(q.R_390_TLS_LDCALL))}, + "R_390_TLS_LDM32": {reflect.TypeOf(q.R_390_TLS_LDM32), constant.MakeInt64(int64(q.R_390_TLS_LDM32))}, + "R_390_TLS_LDM64": {reflect.TypeOf(q.R_390_TLS_LDM64), constant.MakeInt64(int64(q.R_390_TLS_LDM64))}, + "R_390_TLS_LDO32": {reflect.TypeOf(q.R_390_TLS_LDO32), constant.MakeInt64(int64(q.R_390_TLS_LDO32))}, + "R_390_TLS_LDO64": {reflect.TypeOf(q.R_390_TLS_LDO64), constant.MakeInt64(int64(q.R_390_TLS_LDO64))}, + "R_390_TLS_LE32": {reflect.TypeOf(q.R_390_TLS_LE32), constant.MakeInt64(int64(q.R_390_TLS_LE32))}, + "R_390_TLS_LE64": {reflect.TypeOf(q.R_390_TLS_LE64), constant.MakeInt64(int64(q.R_390_TLS_LE64))}, + "R_390_TLS_LOAD": {reflect.TypeOf(q.R_390_TLS_LOAD), constant.MakeInt64(int64(q.R_390_TLS_LOAD))}, + "R_390_TLS_TPOFF": {reflect.TypeOf(q.R_390_TLS_TPOFF), constant.MakeInt64(int64(q.R_390_TLS_TPOFF))}, + "R_AARCH64_ABS16": {reflect.TypeOf(q.R_AARCH64_ABS16), constant.MakeInt64(int64(q.R_AARCH64_ABS16))}, + "R_AARCH64_ABS32": {reflect.TypeOf(q.R_AARCH64_ABS32), constant.MakeInt64(int64(q.R_AARCH64_ABS32))}, + "R_AARCH64_ABS64": {reflect.TypeOf(q.R_AARCH64_ABS64), constant.MakeInt64(int64(q.R_AARCH64_ABS64))}, + "R_AARCH64_ADD_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_ADD_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_ADD_ABS_LO12_NC))}, + "R_AARCH64_ADR_GOT_PAGE": {reflect.TypeOf(q.R_AARCH64_ADR_GOT_PAGE), constant.MakeInt64(int64(q.R_AARCH64_ADR_GOT_PAGE))}, + "R_AARCH64_ADR_PREL_LO21": {reflect.TypeOf(q.R_AARCH64_ADR_PREL_LO21), constant.MakeInt64(int64(q.R_AARCH64_ADR_PREL_LO21))}, + "R_AARCH64_ADR_PREL_PG_HI21": {reflect.TypeOf(q.R_AARCH64_ADR_PREL_PG_HI21), constant.MakeInt64(int64(q.R_AARCH64_ADR_PREL_PG_HI21))}, + "R_AARCH64_ADR_PREL_PG_HI21_NC": {reflect.TypeOf(q.R_AARCH64_ADR_PREL_PG_HI21_NC), constant.MakeInt64(int64(q.R_AARCH64_ADR_PREL_PG_HI21_NC))}, + "R_AARCH64_CALL26": {reflect.TypeOf(q.R_AARCH64_CALL26), constant.MakeInt64(int64(q.R_AARCH64_CALL26))}, + "R_AARCH64_CONDBR19": {reflect.TypeOf(q.R_AARCH64_CONDBR19), constant.MakeInt64(int64(q.R_AARCH64_CONDBR19))}, + "R_AARCH64_COPY": {reflect.TypeOf(q.R_AARCH64_COPY), constant.MakeInt64(int64(q.R_AARCH64_COPY))}, + "R_AARCH64_GLOB_DAT": {reflect.TypeOf(q.R_AARCH64_GLOB_DAT), constant.MakeInt64(int64(q.R_AARCH64_GLOB_DAT))}, + "R_AARCH64_GOT_LD_PREL19": {reflect.TypeOf(q.R_AARCH64_GOT_LD_PREL19), constant.MakeInt64(int64(q.R_AARCH64_GOT_LD_PREL19))}, + "R_AARCH64_IRELATIVE": {reflect.TypeOf(q.R_AARCH64_IRELATIVE), constant.MakeInt64(int64(q.R_AARCH64_IRELATIVE))}, + "R_AARCH64_JUMP26": {reflect.TypeOf(q.R_AARCH64_JUMP26), constant.MakeInt64(int64(q.R_AARCH64_JUMP26))}, + "R_AARCH64_JUMP_SLOT": {reflect.TypeOf(q.R_AARCH64_JUMP_SLOT), constant.MakeInt64(int64(q.R_AARCH64_JUMP_SLOT))}, + "R_AARCH64_LD64_GOTOFF_LO15": {reflect.TypeOf(q.R_AARCH64_LD64_GOTOFF_LO15), constant.MakeInt64(int64(q.R_AARCH64_LD64_GOTOFF_LO15))}, + "R_AARCH64_LD64_GOTPAGE_LO15": {reflect.TypeOf(q.R_AARCH64_LD64_GOTPAGE_LO15), constant.MakeInt64(int64(q.R_AARCH64_LD64_GOTPAGE_LO15))}, + "R_AARCH64_LD64_GOT_LO12_NC": {reflect.TypeOf(q.R_AARCH64_LD64_GOT_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_LD64_GOT_LO12_NC))}, + "R_AARCH64_LDST128_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_LDST128_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_LDST128_ABS_LO12_NC))}, + "R_AARCH64_LDST16_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_LDST16_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_LDST16_ABS_LO12_NC))}, + "R_AARCH64_LDST32_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_LDST32_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_LDST32_ABS_LO12_NC))}, + "R_AARCH64_LDST64_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_LDST64_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_LDST64_ABS_LO12_NC))}, + "R_AARCH64_LDST8_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_LDST8_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_LDST8_ABS_LO12_NC))}, + "R_AARCH64_LD_PREL_LO19": {reflect.TypeOf(q.R_AARCH64_LD_PREL_LO19), constant.MakeInt64(int64(q.R_AARCH64_LD_PREL_LO19))}, + "R_AARCH64_MOVW_SABS_G0": {reflect.TypeOf(q.R_AARCH64_MOVW_SABS_G0), constant.MakeInt64(int64(q.R_AARCH64_MOVW_SABS_G0))}, + "R_AARCH64_MOVW_SABS_G1": {reflect.TypeOf(q.R_AARCH64_MOVW_SABS_G1), constant.MakeInt64(int64(q.R_AARCH64_MOVW_SABS_G1))}, + "R_AARCH64_MOVW_SABS_G2": {reflect.TypeOf(q.R_AARCH64_MOVW_SABS_G2), constant.MakeInt64(int64(q.R_AARCH64_MOVW_SABS_G2))}, + "R_AARCH64_MOVW_UABS_G0": {reflect.TypeOf(q.R_AARCH64_MOVW_UABS_G0), constant.MakeInt64(int64(q.R_AARCH64_MOVW_UABS_G0))}, + "R_AARCH64_MOVW_UABS_G0_NC": {reflect.TypeOf(q.R_AARCH64_MOVW_UABS_G0_NC), constant.MakeInt64(int64(q.R_AARCH64_MOVW_UABS_G0_NC))}, + "R_AARCH64_MOVW_UABS_G1": {reflect.TypeOf(q.R_AARCH64_MOVW_UABS_G1), constant.MakeInt64(int64(q.R_AARCH64_MOVW_UABS_G1))}, + "R_AARCH64_MOVW_UABS_G1_NC": {reflect.TypeOf(q.R_AARCH64_MOVW_UABS_G1_NC), constant.MakeInt64(int64(q.R_AARCH64_MOVW_UABS_G1_NC))}, + "R_AARCH64_MOVW_UABS_G2": {reflect.TypeOf(q.R_AARCH64_MOVW_UABS_G2), constant.MakeInt64(int64(q.R_AARCH64_MOVW_UABS_G2))}, + "R_AARCH64_MOVW_UABS_G2_NC": {reflect.TypeOf(q.R_AARCH64_MOVW_UABS_G2_NC), constant.MakeInt64(int64(q.R_AARCH64_MOVW_UABS_G2_NC))}, + "R_AARCH64_MOVW_UABS_G3": {reflect.TypeOf(q.R_AARCH64_MOVW_UABS_G3), constant.MakeInt64(int64(q.R_AARCH64_MOVW_UABS_G3))}, + "R_AARCH64_NONE": {reflect.TypeOf(q.R_AARCH64_NONE), constant.MakeInt64(int64(q.R_AARCH64_NONE))}, + "R_AARCH64_NULL": {reflect.TypeOf(q.R_AARCH64_NULL), constant.MakeInt64(int64(q.R_AARCH64_NULL))}, + "R_AARCH64_P32_ABS16": {reflect.TypeOf(q.R_AARCH64_P32_ABS16), constant.MakeInt64(int64(q.R_AARCH64_P32_ABS16))}, + "R_AARCH64_P32_ABS32": {reflect.TypeOf(q.R_AARCH64_P32_ABS32), constant.MakeInt64(int64(q.R_AARCH64_P32_ABS32))}, + "R_AARCH64_P32_ADD_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_ADD_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_ADD_ABS_LO12_NC))}, + "R_AARCH64_P32_ADR_GOT_PAGE": {reflect.TypeOf(q.R_AARCH64_P32_ADR_GOT_PAGE), constant.MakeInt64(int64(q.R_AARCH64_P32_ADR_GOT_PAGE))}, + "R_AARCH64_P32_ADR_PREL_LO21": {reflect.TypeOf(q.R_AARCH64_P32_ADR_PREL_LO21), constant.MakeInt64(int64(q.R_AARCH64_P32_ADR_PREL_LO21))}, + "R_AARCH64_P32_ADR_PREL_PG_HI21": {reflect.TypeOf(q.R_AARCH64_P32_ADR_PREL_PG_HI21), constant.MakeInt64(int64(q.R_AARCH64_P32_ADR_PREL_PG_HI21))}, + "R_AARCH64_P32_CALL26": {reflect.TypeOf(q.R_AARCH64_P32_CALL26), constant.MakeInt64(int64(q.R_AARCH64_P32_CALL26))}, + "R_AARCH64_P32_CONDBR19": {reflect.TypeOf(q.R_AARCH64_P32_CONDBR19), constant.MakeInt64(int64(q.R_AARCH64_P32_CONDBR19))}, + "R_AARCH64_P32_COPY": {reflect.TypeOf(q.R_AARCH64_P32_COPY), constant.MakeInt64(int64(q.R_AARCH64_P32_COPY))}, + "R_AARCH64_P32_GLOB_DAT": {reflect.TypeOf(q.R_AARCH64_P32_GLOB_DAT), constant.MakeInt64(int64(q.R_AARCH64_P32_GLOB_DAT))}, + "R_AARCH64_P32_GOT_LD_PREL19": {reflect.TypeOf(q.R_AARCH64_P32_GOT_LD_PREL19), constant.MakeInt64(int64(q.R_AARCH64_P32_GOT_LD_PREL19))}, + "R_AARCH64_P32_IRELATIVE": {reflect.TypeOf(q.R_AARCH64_P32_IRELATIVE), constant.MakeInt64(int64(q.R_AARCH64_P32_IRELATIVE))}, + "R_AARCH64_P32_JUMP26": {reflect.TypeOf(q.R_AARCH64_P32_JUMP26), constant.MakeInt64(int64(q.R_AARCH64_P32_JUMP26))}, + "R_AARCH64_P32_JUMP_SLOT": {reflect.TypeOf(q.R_AARCH64_P32_JUMP_SLOT), constant.MakeInt64(int64(q.R_AARCH64_P32_JUMP_SLOT))}, + "R_AARCH64_P32_LD32_GOT_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_LD32_GOT_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_LD32_GOT_LO12_NC))}, + "R_AARCH64_P32_LDST128_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_LDST128_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_LDST128_ABS_LO12_NC))}, + "R_AARCH64_P32_LDST16_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_LDST16_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_LDST16_ABS_LO12_NC))}, + "R_AARCH64_P32_LDST32_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_LDST32_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_LDST32_ABS_LO12_NC))}, + "R_AARCH64_P32_LDST64_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_LDST64_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_LDST64_ABS_LO12_NC))}, + "R_AARCH64_P32_LDST8_ABS_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_LDST8_ABS_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_LDST8_ABS_LO12_NC))}, + "R_AARCH64_P32_LD_PREL_LO19": {reflect.TypeOf(q.R_AARCH64_P32_LD_PREL_LO19), constant.MakeInt64(int64(q.R_AARCH64_P32_LD_PREL_LO19))}, + "R_AARCH64_P32_MOVW_SABS_G0": {reflect.TypeOf(q.R_AARCH64_P32_MOVW_SABS_G0), constant.MakeInt64(int64(q.R_AARCH64_P32_MOVW_SABS_G0))}, + "R_AARCH64_P32_MOVW_UABS_G0": {reflect.TypeOf(q.R_AARCH64_P32_MOVW_UABS_G0), constant.MakeInt64(int64(q.R_AARCH64_P32_MOVW_UABS_G0))}, + "R_AARCH64_P32_MOVW_UABS_G0_NC": {reflect.TypeOf(q.R_AARCH64_P32_MOVW_UABS_G0_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_MOVW_UABS_G0_NC))}, + "R_AARCH64_P32_MOVW_UABS_G1": {reflect.TypeOf(q.R_AARCH64_P32_MOVW_UABS_G1), constant.MakeInt64(int64(q.R_AARCH64_P32_MOVW_UABS_G1))}, + "R_AARCH64_P32_PREL16": {reflect.TypeOf(q.R_AARCH64_P32_PREL16), constant.MakeInt64(int64(q.R_AARCH64_P32_PREL16))}, + "R_AARCH64_P32_PREL32": {reflect.TypeOf(q.R_AARCH64_P32_PREL32), constant.MakeInt64(int64(q.R_AARCH64_P32_PREL32))}, + "R_AARCH64_P32_RELATIVE": {reflect.TypeOf(q.R_AARCH64_P32_RELATIVE), constant.MakeInt64(int64(q.R_AARCH64_P32_RELATIVE))}, + "R_AARCH64_P32_TLSDESC": {reflect.TypeOf(q.R_AARCH64_P32_TLSDESC), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSDESC))}, + "R_AARCH64_P32_TLSDESC_ADD_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_TLSDESC_ADD_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSDESC_ADD_LO12_NC))}, + "R_AARCH64_P32_TLSDESC_ADR_PAGE21": {reflect.TypeOf(q.R_AARCH64_P32_TLSDESC_ADR_PAGE21), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSDESC_ADR_PAGE21))}, + "R_AARCH64_P32_TLSDESC_ADR_PREL21": {reflect.TypeOf(q.R_AARCH64_P32_TLSDESC_ADR_PREL21), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSDESC_ADR_PREL21))}, + "R_AARCH64_P32_TLSDESC_CALL": {reflect.TypeOf(q.R_AARCH64_P32_TLSDESC_CALL), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSDESC_CALL))}, + "R_AARCH64_P32_TLSDESC_LD32_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_TLSDESC_LD32_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSDESC_LD32_LO12_NC))}, + "R_AARCH64_P32_TLSDESC_LD_PREL19": {reflect.TypeOf(q.R_AARCH64_P32_TLSDESC_LD_PREL19), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSDESC_LD_PREL19))}, + "R_AARCH64_P32_TLSGD_ADD_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_TLSGD_ADD_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSGD_ADD_LO12_NC))}, + "R_AARCH64_P32_TLSGD_ADR_PAGE21": {reflect.TypeOf(q.R_AARCH64_P32_TLSGD_ADR_PAGE21), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSGD_ADR_PAGE21))}, + "R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21": {reflect.TypeOf(q.R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21))}, + "R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC))}, + "R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19": {reflect.TypeOf(q.R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19))}, + "R_AARCH64_P32_TLSLE_ADD_TPREL_HI12": {reflect.TypeOf(q.R_AARCH64_P32_TLSLE_ADD_TPREL_HI12), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSLE_ADD_TPREL_HI12))}, + "R_AARCH64_P32_TLSLE_ADD_TPREL_LO12": {reflect.TypeOf(q.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12))}, + "R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC": {reflect.TypeOf(q.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC))}, + "R_AARCH64_P32_TLSLE_MOVW_TPREL_G0": {reflect.TypeOf(q.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0))}, + "R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC": {reflect.TypeOf(q.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC))}, + "R_AARCH64_P32_TLSLE_MOVW_TPREL_G1": {reflect.TypeOf(q.R_AARCH64_P32_TLSLE_MOVW_TPREL_G1), constant.MakeInt64(int64(q.R_AARCH64_P32_TLSLE_MOVW_TPREL_G1))}, + "R_AARCH64_P32_TLS_DTPMOD": {reflect.TypeOf(q.R_AARCH64_P32_TLS_DTPMOD), constant.MakeInt64(int64(q.R_AARCH64_P32_TLS_DTPMOD))}, + "R_AARCH64_P32_TLS_DTPREL": {reflect.TypeOf(q.R_AARCH64_P32_TLS_DTPREL), constant.MakeInt64(int64(q.R_AARCH64_P32_TLS_DTPREL))}, + "R_AARCH64_P32_TLS_TPREL": {reflect.TypeOf(q.R_AARCH64_P32_TLS_TPREL), constant.MakeInt64(int64(q.R_AARCH64_P32_TLS_TPREL))}, + "R_AARCH64_P32_TSTBR14": {reflect.TypeOf(q.R_AARCH64_P32_TSTBR14), constant.MakeInt64(int64(q.R_AARCH64_P32_TSTBR14))}, + "R_AARCH64_PREL16": {reflect.TypeOf(q.R_AARCH64_PREL16), constant.MakeInt64(int64(q.R_AARCH64_PREL16))}, + "R_AARCH64_PREL32": {reflect.TypeOf(q.R_AARCH64_PREL32), constant.MakeInt64(int64(q.R_AARCH64_PREL32))}, + "R_AARCH64_PREL64": {reflect.TypeOf(q.R_AARCH64_PREL64), constant.MakeInt64(int64(q.R_AARCH64_PREL64))}, + "R_AARCH64_RELATIVE": {reflect.TypeOf(q.R_AARCH64_RELATIVE), constant.MakeInt64(int64(q.R_AARCH64_RELATIVE))}, + "R_AARCH64_TLSDESC": {reflect.TypeOf(q.R_AARCH64_TLSDESC), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC))}, + "R_AARCH64_TLSDESC_ADD": {reflect.TypeOf(q.R_AARCH64_TLSDESC_ADD), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_ADD))}, + "R_AARCH64_TLSDESC_ADD_LO12_NC": {reflect.TypeOf(q.R_AARCH64_TLSDESC_ADD_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_ADD_LO12_NC))}, + "R_AARCH64_TLSDESC_ADR_PAGE21": {reflect.TypeOf(q.R_AARCH64_TLSDESC_ADR_PAGE21), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_ADR_PAGE21))}, + "R_AARCH64_TLSDESC_ADR_PREL21": {reflect.TypeOf(q.R_AARCH64_TLSDESC_ADR_PREL21), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_ADR_PREL21))}, + "R_AARCH64_TLSDESC_CALL": {reflect.TypeOf(q.R_AARCH64_TLSDESC_CALL), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_CALL))}, + "R_AARCH64_TLSDESC_LD64_LO12_NC": {reflect.TypeOf(q.R_AARCH64_TLSDESC_LD64_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_LD64_LO12_NC))}, + "R_AARCH64_TLSDESC_LDR": {reflect.TypeOf(q.R_AARCH64_TLSDESC_LDR), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_LDR))}, + "R_AARCH64_TLSDESC_LD_PREL19": {reflect.TypeOf(q.R_AARCH64_TLSDESC_LD_PREL19), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_LD_PREL19))}, + "R_AARCH64_TLSDESC_OFF_G0_NC": {reflect.TypeOf(q.R_AARCH64_TLSDESC_OFF_G0_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_OFF_G0_NC))}, + "R_AARCH64_TLSDESC_OFF_G1": {reflect.TypeOf(q.R_AARCH64_TLSDESC_OFF_G1), constant.MakeInt64(int64(q.R_AARCH64_TLSDESC_OFF_G1))}, + "R_AARCH64_TLSGD_ADD_LO12_NC": {reflect.TypeOf(q.R_AARCH64_TLSGD_ADD_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSGD_ADD_LO12_NC))}, + "R_AARCH64_TLSGD_ADR_PAGE21": {reflect.TypeOf(q.R_AARCH64_TLSGD_ADR_PAGE21), constant.MakeInt64(int64(q.R_AARCH64_TLSGD_ADR_PAGE21))}, + "R_AARCH64_TLSGD_ADR_PREL21": {reflect.TypeOf(q.R_AARCH64_TLSGD_ADR_PREL21), constant.MakeInt64(int64(q.R_AARCH64_TLSGD_ADR_PREL21))}, + "R_AARCH64_TLSGD_MOVW_G0_NC": {reflect.TypeOf(q.R_AARCH64_TLSGD_MOVW_G0_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSGD_MOVW_G0_NC))}, + "R_AARCH64_TLSGD_MOVW_G1": {reflect.TypeOf(q.R_AARCH64_TLSGD_MOVW_G1), constant.MakeInt64(int64(q.R_AARCH64_TLSGD_MOVW_G1))}, + "R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21": {reflect.TypeOf(q.R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21), constant.MakeInt64(int64(q.R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21))}, + "R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC": {reflect.TypeOf(q.R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC))}, + "R_AARCH64_TLSIE_LD_GOTTPREL_PREL19": {reflect.TypeOf(q.R_AARCH64_TLSIE_LD_GOTTPREL_PREL19), constant.MakeInt64(int64(q.R_AARCH64_TLSIE_LD_GOTTPREL_PREL19))}, + "R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC": {reflect.TypeOf(q.R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC))}, + "R_AARCH64_TLSIE_MOVW_GOTTPREL_G1": {reflect.TypeOf(q.R_AARCH64_TLSIE_MOVW_GOTTPREL_G1), constant.MakeInt64(int64(q.R_AARCH64_TLSIE_MOVW_GOTTPREL_G1))}, + "R_AARCH64_TLSLD_ADR_PAGE21": {reflect.TypeOf(q.R_AARCH64_TLSLD_ADR_PAGE21), constant.MakeInt64(int64(q.R_AARCH64_TLSLD_ADR_PAGE21))}, + "R_AARCH64_TLSLD_ADR_PREL21": {reflect.TypeOf(q.R_AARCH64_TLSLD_ADR_PREL21), constant.MakeInt64(int64(q.R_AARCH64_TLSLD_ADR_PREL21))}, + "R_AARCH64_TLSLD_LDST128_DTPREL_LO12": {reflect.TypeOf(q.R_AARCH64_TLSLD_LDST128_DTPREL_LO12), constant.MakeInt64(int64(q.R_AARCH64_TLSLD_LDST128_DTPREL_LO12))}, + "R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC": {reflect.TypeOf(q.R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC))}, + "R_AARCH64_TLSLE_ADD_TPREL_HI12": {reflect.TypeOf(q.R_AARCH64_TLSLE_ADD_TPREL_HI12), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_ADD_TPREL_HI12))}, + "R_AARCH64_TLSLE_ADD_TPREL_LO12": {reflect.TypeOf(q.R_AARCH64_TLSLE_ADD_TPREL_LO12), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_ADD_TPREL_LO12))}, + "R_AARCH64_TLSLE_ADD_TPREL_LO12_NC": {reflect.TypeOf(q.R_AARCH64_TLSLE_ADD_TPREL_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_ADD_TPREL_LO12_NC))}, + "R_AARCH64_TLSLE_LDST128_TPREL_LO12": {reflect.TypeOf(q.R_AARCH64_TLSLE_LDST128_TPREL_LO12), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_LDST128_TPREL_LO12))}, + "R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC": {reflect.TypeOf(q.R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC))}, + "R_AARCH64_TLSLE_MOVW_TPREL_G0": {reflect.TypeOf(q.R_AARCH64_TLSLE_MOVW_TPREL_G0), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_MOVW_TPREL_G0))}, + "R_AARCH64_TLSLE_MOVW_TPREL_G0_NC": {reflect.TypeOf(q.R_AARCH64_TLSLE_MOVW_TPREL_G0_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_MOVW_TPREL_G0_NC))}, + "R_AARCH64_TLSLE_MOVW_TPREL_G1": {reflect.TypeOf(q.R_AARCH64_TLSLE_MOVW_TPREL_G1), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_MOVW_TPREL_G1))}, + "R_AARCH64_TLSLE_MOVW_TPREL_G1_NC": {reflect.TypeOf(q.R_AARCH64_TLSLE_MOVW_TPREL_G1_NC), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_MOVW_TPREL_G1_NC))}, + "R_AARCH64_TLSLE_MOVW_TPREL_G2": {reflect.TypeOf(q.R_AARCH64_TLSLE_MOVW_TPREL_G2), constant.MakeInt64(int64(q.R_AARCH64_TLSLE_MOVW_TPREL_G2))}, + "R_AARCH64_TLS_DTPMOD64": {reflect.TypeOf(q.R_AARCH64_TLS_DTPMOD64), constant.MakeInt64(int64(q.R_AARCH64_TLS_DTPMOD64))}, + "R_AARCH64_TLS_DTPREL64": {reflect.TypeOf(q.R_AARCH64_TLS_DTPREL64), constant.MakeInt64(int64(q.R_AARCH64_TLS_DTPREL64))}, + "R_AARCH64_TLS_TPREL64": {reflect.TypeOf(q.R_AARCH64_TLS_TPREL64), constant.MakeInt64(int64(q.R_AARCH64_TLS_TPREL64))}, + "R_AARCH64_TSTBR14": {reflect.TypeOf(q.R_AARCH64_TSTBR14), constant.MakeInt64(int64(q.R_AARCH64_TSTBR14))}, + "R_ALPHA_BRADDR": {reflect.TypeOf(q.R_ALPHA_BRADDR), constant.MakeInt64(int64(q.R_ALPHA_BRADDR))}, + "R_ALPHA_COPY": {reflect.TypeOf(q.R_ALPHA_COPY), constant.MakeInt64(int64(q.R_ALPHA_COPY))}, + "R_ALPHA_GLOB_DAT": {reflect.TypeOf(q.R_ALPHA_GLOB_DAT), constant.MakeInt64(int64(q.R_ALPHA_GLOB_DAT))}, + "R_ALPHA_GPDISP": {reflect.TypeOf(q.R_ALPHA_GPDISP), constant.MakeInt64(int64(q.R_ALPHA_GPDISP))}, + "R_ALPHA_GPREL32": {reflect.TypeOf(q.R_ALPHA_GPREL32), constant.MakeInt64(int64(q.R_ALPHA_GPREL32))}, + "R_ALPHA_GPRELHIGH": {reflect.TypeOf(q.R_ALPHA_GPRELHIGH), constant.MakeInt64(int64(q.R_ALPHA_GPRELHIGH))}, + "R_ALPHA_GPRELLOW": {reflect.TypeOf(q.R_ALPHA_GPRELLOW), constant.MakeInt64(int64(q.R_ALPHA_GPRELLOW))}, + "R_ALPHA_GPVALUE": {reflect.TypeOf(q.R_ALPHA_GPVALUE), constant.MakeInt64(int64(q.R_ALPHA_GPVALUE))}, + "R_ALPHA_HINT": {reflect.TypeOf(q.R_ALPHA_HINT), constant.MakeInt64(int64(q.R_ALPHA_HINT))}, + "R_ALPHA_IMMED_BR_HI32": {reflect.TypeOf(q.R_ALPHA_IMMED_BR_HI32), constant.MakeInt64(int64(q.R_ALPHA_IMMED_BR_HI32))}, + "R_ALPHA_IMMED_GP_16": {reflect.TypeOf(q.R_ALPHA_IMMED_GP_16), constant.MakeInt64(int64(q.R_ALPHA_IMMED_GP_16))}, + "R_ALPHA_IMMED_GP_HI32": {reflect.TypeOf(q.R_ALPHA_IMMED_GP_HI32), constant.MakeInt64(int64(q.R_ALPHA_IMMED_GP_HI32))}, + "R_ALPHA_IMMED_LO32": {reflect.TypeOf(q.R_ALPHA_IMMED_LO32), constant.MakeInt64(int64(q.R_ALPHA_IMMED_LO32))}, + "R_ALPHA_IMMED_SCN_HI32": {reflect.TypeOf(q.R_ALPHA_IMMED_SCN_HI32), constant.MakeInt64(int64(q.R_ALPHA_IMMED_SCN_HI32))}, + "R_ALPHA_JMP_SLOT": {reflect.TypeOf(q.R_ALPHA_JMP_SLOT), constant.MakeInt64(int64(q.R_ALPHA_JMP_SLOT))}, + "R_ALPHA_LITERAL": {reflect.TypeOf(q.R_ALPHA_LITERAL), constant.MakeInt64(int64(q.R_ALPHA_LITERAL))}, + "R_ALPHA_LITUSE": {reflect.TypeOf(q.R_ALPHA_LITUSE), constant.MakeInt64(int64(q.R_ALPHA_LITUSE))}, + "R_ALPHA_NONE": {reflect.TypeOf(q.R_ALPHA_NONE), constant.MakeInt64(int64(q.R_ALPHA_NONE))}, + "R_ALPHA_OP_PRSHIFT": {reflect.TypeOf(q.R_ALPHA_OP_PRSHIFT), constant.MakeInt64(int64(q.R_ALPHA_OP_PRSHIFT))}, + "R_ALPHA_OP_PSUB": {reflect.TypeOf(q.R_ALPHA_OP_PSUB), constant.MakeInt64(int64(q.R_ALPHA_OP_PSUB))}, + "R_ALPHA_OP_PUSH": {reflect.TypeOf(q.R_ALPHA_OP_PUSH), constant.MakeInt64(int64(q.R_ALPHA_OP_PUSH))}, + "R_ALPHA_OP_STORE": {reflect.TypeOf(q.R_ALPHA_OP_STORE), constant.MakeInt64(int64(q.R_ALPHA_OP_STORE))}, + "R_ALPHA_REFLONG": {reflect.TypeOf(q.R_ALPHA_REFLONG), constant.MakeInt64(int64(q.R_ALPHA_REFLONG))}, + "R_ALPHA_REFQUAD": {reflect.TypeOf(q.R_ALPHA_REFQUAD), constant.MakeInt64(int64(q.R_ALPHA_REFQUAD))}, + "R_ALPHA_RELATIVE": {reflect.TypeOf(q.R_ALPHA_RELATIVE), constant.MakeInt64(int64(q.R_ALPHA_RELATIVE))}, + "R_ALPHA_SREL16": {reflect.TypeOf(q.R_ALPHA_SREL16), constant.MakeInt64(int64(q.R_ALPHA_SREL16))}, + "R_ALPHA_SREL32": {reflect.TypeOf(q.R_ALPHA_SREL32), constant.MakeInt64(int64(q.R_ALPHA_SREL32))}, + "R_ALPHA_SREL64": {reflect.TypeOf(q.R_ALPHA_SREL64), constant.MakeInt64(int64(q.R_ALPHA_SREL64))}, + "R_ARM_ABS12": {reflect.TypeOf(q.R_ARM_ABS12), constant.MakeInt64(int64(q.R_ARM_ABS12))}, + "R_ARM_ABS16": {reflect.TypeOf(q.R_ARM_ABS16), constant.MakeInt64(int64(q.R_ARM_ABS16))}, + "R_ARM_ABS32": {reflect.TypeOf(q.R_ARM_ABS32), constant.MakeInt64(int64(q.R_ARM_ABS32))}, + "R_ARM_ABS32_NOI": {reflect.TypeOf(q.R_ARM_ABS32_NOI), constant.MakeInt64(int64(q.R_ARM_ABS32_NOI))}, + "R_ARM_ABS8": {reflect.TypeOf(q.R_ARM_ABS8), constant.MakeInt64(int64(q.R_ARM_ABS8))}, + "R_ARM_ALU_PCREL_15_8": {reflect.TypeOf(q.R_ARM_ALU_PCREL_15_8), constant.MakeInt64(int64(q.R_ARM_ALU_PCREL_15_8))}, + "R_ARM_ALU_PCREL_23_15": {reflect.TypeOf(q.R_ARM_ALU_PCREL_23_15), constant.MakeInt64(int64(q.R_ARM_ALU_PCREL_23_15))}, + "R_ARM_ALU_PCREL_7_0": {reflect.TypeOf(q.R_ARM_ALU_PCREL_7_0), constant.MakeInt64(int64(q.R_ARM_ALU_PCREL_7_0))}, + "R_ARM_ALU_PC_G0": {reflect.TypeOf(q.R_ARM_ALU_PC_G0), constant.MakeInt64(int64(q.R_ARM_ALU_PC_G0))}, + "R_ARM_ALU_PC_G0_NC": {reflect.TypeOf(q.R_ARM_ALU_PC_G0_NC), constant.MakeInt64(int64(q.R_ARM_ALU_PC_G0_NC))}, + "R_ARM_ALU_PC_G1": {reflect.TypeOf(q.R_ARM_ALU_PC_G1), constant.MakeInt64(int64(q.R_ARM_ALU_PC_G1))}, + "R_ARM_ALU_PC_G1_NC": {reflect.TypeOf(q.R_ARM_ALU_PC_G1_NC), constant.MakeInt64(int64(q.R_ARM_ALU_PC_G1_NC))}, + "R_ARM_ALU_PC_G2": {reflect.TypeOf(q.R_ARM_ALU_PC_G2), constant.MakeInt64(int64(q.R_ARM_ALU_PC_G2))}, + "R_ARM_ALU_SBREL_19_12_NC": {reflect.TypeOf(q.R_ARM_ALU_SBREL_19_12_NC), constant.MakeInt64(int64(q.R_ARM_ALU_SBREL_19_12_NC))}, + "R_ARM_ALU_SBREL_27_20_CK": {reflect.TypeOf(q.R_ARM_ALU_SBREL_27_20_CK), constant.MakeInt64(int64(q.R_ARM_ALU_SBREL_27_20_CK))}, + "R_ARM_ALU_SB_G0": {reflect.TypeOf(q.R_ARM_ALU_SB_G0), constant.MakeInt64(int64(q.R_ARM_ALU_SB_G0))}, + "R_ARM_ALU_SB_G0_NC": {reflect.TypeOf(q.R_ARM_ALU_SB_G0_NC), constant.MakeInt64(int64(q.R_ARM_ALU_SB_G0_NC))}, + "R_ARM_ALU_SB_G1": {reflect.TypeOf(q.R_ARM_ALU_SB_G1), constant.MakeInt64(int64(q.R_ARM_ALU_SB_G1))}, + "R_ARM_ALU_SB_G1_NC": {reflect.TypeOf(q.R_ARM_ALU_SB_G1_NC), constant.MakeInt64(int64(q.R_ARM_ALU_SB_G1_NC))}, + "R_ARM_ALU_SB_G2": {reflect.TypeOf(q.R_ARM_ALU_SB_G2), constant.MakeInt64(int64(q.R_ARM_ALU_SB_G2))}, + "R_ARM_AMP_VCALL9": {reflect.TypeOf(q.R_ARM_AMP_VCALL9), constant.MakeInt64(int64(q.R_ARM_AMP_VCALL9))}, + "R_ARM_BASE_ABS": {reflect.TypeOf(q.R_ARM_BASE_ABS), constant.MakeInt64(int64(q.R_ARM_BASE_ABS))}, + "R_ARM_CALL": {reflect.TypeOf(q.R_ARM_CALL), constant.MakeInt64(int64(q.R_ARM_CALL))}, + "R_ARM_COPY": {reflect.TypeOf(q.R_ARM_COPY), constant.MakeInt64(int64(q.R_ARM_COPY))}, + "R_ARM_GLOB_DAT": {reflect.TypeOf(q.R_ARM_GLOB_DAT), constant.MakeInt64(int64(q.R_ARM_GLOB_DAT))}, + "R_ARM_GNU_VTENTRY": {reflect.TypeOf(q.R_ARM_GNU_VTENTRY), constant.MakeInt64(int64(q.R_ARM_GNU_VTENTRY))}, + "R_ARM_GNU_VTINHERIT": {reflect.TypeOf(q.R_ARM_GNU_VTINHERIT), constant.MakeInt64(int64(q.R_ARM_GNU_VTINHERIT))}, + "R_ARM_GOT32": {reflect.TypeOf(q.R_ARM_GOT32), constant.MakeInt64(int64(q.R_ARM_GOT32))}, + "R_ARM_GOTOFF": {reflect.TypeOf(q.R_ARM_GOTOFF), constant.MakeInt64(int64(q.R_ARM_GOTOFF))}, + "R_ARM_GOTOFF12": {reflect.TypeOf(q.R_ARM_GOTOFF12), constant.MakeInt64(int64(q.R_ARM_GOTOFF12))}, + "R_ARM_GOTPC": {reflect.TypeOf(q.R_ARM_GOTPC), constant.MakeInt64(int64(q.R_ARM_GOTPC))}, + "R_ARM_GOTRELAX": {reflect.TypeOf(q.R_ARM_GOTRELAX), constant.MakeInt64(int64(q.R_ARM_GOTRELAX))}, + "R_ARM_GOT_ABS": {reflect.TypeOf(q.R_ARM_GOT_ABS), constant.MakeInt64(int64(q.R_ARM_GOT_ABS))}, + "R_ARM_GOT_BREL12": {reflect.TypeOf(q.R_ARM_GOT_BREL12), constant.MakeInt64(int64(q.R_ARM_GOT_BREL12))}, + "R_ARM_GOT_PREL": {reflect.TypeOf(q.R_ARM_GOT_PREL), constant.MakeInt64(int64(q.R_ARM_GOT_PREL))}, + "R_ARM_IRELATIVE": {reflect.TypeOf(q.R_ARM_IRELATIVE), constant.MakeInt64(int64(q.R_ARM_IRELATIVE))}, + "R_ARM_JUMP24": {reflect.TypeOf(q.R_ARM_JUMP24), constant.MakeInt64(int64(q.R_ARM_JUMP24))}, + "R_ARM_JUMP_SLOT": {reflect.TypeOf(q.R_ARM_JUMP_SLOT), constant.MakeInt64(int64(q.R_ARM_JUMP_SLOT))}, + "R_ARM_LDC_PC_G0": {reflect.TypeOf(q.R_ARM_LDC_PC_G0), constant.MakeInt64(int64(q.R_ARM_LDC_PC_G0))}, + "R_ARM_LDC_PC_G1": {reflect.TypeOf(q.R_ARM_LDC_PC_G1), constant.MakeInt64(int64(q.R_ARM_LDC_PC_G1))}, + "R_ARM_LDC_PC_G2": {reflect.TypeOf(q.R_ARM_LDC_PC_G2), constant.MakeInt64(int64(q.R_ARM_LDC_PC_G2))}, + "R_ARM_LDC_SB_G0": {reflect.TypeOf(q.R_ARM_LDC_SB_G0), constant.MakeInt64(int64(q.R_ARM_LDC_SB_G0))}, + "R_ARM_LDC_SB_G1": {reflect.TypeOf(q.R_ARM_LDC_SB_G1), constant.MakeInt64(int64(q.R_ARM_LDC_SB_G1))}, + "R_ARM_LDC_SB_G2": {reflect.TypeOf(q.R_ARM_LDC_SB_G2), constant.MakeInt64(int64(q.R_ARM_LDC_SB_G2))}, + "R_ARM_LDRS_PC_G0": {reflect.TypeOf(q.R_ARM_LDRS_PC_G0), constant.MakeInt64(int64(q.R_ARM_LDRS_PC_G0))}, + "R_ARM_LDRS_PC_G1": {reflect.TypeOf(q.R_ARM_LDRS_PC_G1), constant.MakeInt64(int64(q.R_ARM_LDRS_PC_G1))}, + "R_ARM_LDRS_PC_G2": {reflect.TypeOf(q.R_ARM_LDRS_PC_G2), constant.MakeInt64(int64(q.R_ARM_LDRS_PC_G2))}, + "R_ARM_LDRS_SB_G0": {reflect.TypeOf(q.R_ARM_LDRS_SB_G0), constant.MakeInt64(int64(q.R_ARM_LDRS_SB_G0))}, + "R_ARM_LDRS_SB_G1": {reflect.TypeOf(q.R_ARM_LDRS_SB_G1), constant.MakeInt64(int64(q.R_ARM_LDRS_SB_G1))}, + "R_ARM_LDRS_SB_G2": {reflect.TypeOf(q.R_ARM_LDRS_SB_G2), constant.MakeInt64(int64(q.R_ARM_LDRS_SB_G2))}, + "R_ARM_LDR_PC_G1": {reflect.TypeOf(q.R_ARM_LDR_PC_G1), constant.MakeInt64(int64(q.R_ARM_LDR_PC_G1))}, + "R_ARM_LDR_PC_G2": {reflect.TypeOf(q.R_ARM_LDR_PC_G2), constant.MakeInt64(int64(q.R_ARM_LDR_PC_G2))}, + "R_ARM_LDR_SBREL_11_10_NC": {reflect.TypeOf(q.R_ARM_LDR_SBREL_11_10_NC), constant.MakeInt64(int64(q.R_ARM_LDR_SBREL_11_10_NC))}, + "R_ARM_LDR_SB_G0": {reflect.TypeOf(q.R_ARM_LDR_SB_G0), constant.MakeInt64(int64(q.R_ARM_LDR_SB_G0))}, + "R_ARM_LDR_SB_G1": {reflect.TypeOf(q.R_ARM_LDR_SB_G1), constant.MakeInt64(int64(q.R_ARM_LDR_SB_G1))}, + "R_ARM_LDR_SB_G2": {reflect.TypeOf(q.R_ARM_LDR_SB_G2), constant.MakeInt64(int64(q.R_ARM_LDR_SB_G2))}, + "R_ARM_ME_TOO": {reflect.TypeOf(q.R_ARM_ME_TOO), constant.MakeInt64(int64(q.R_ARM_ME_TOO))}, + "R_ARM_MOVT_ABS": {reflect.TypeOf(q.R_ARM_MOVT_ABS), constant.MakeInt64(int64(q.R_ARM_MOVT_ABS))}, + "R_ARM_MOVT_BREL": {reflect.TypeOf(q.R_ARM_MOVT_BREL), constant.MakeInt64(int64(q.R_ARM_MOVT_BREL))}, + "R_ARM_MOVT_PREL": {reflect.TypeOf(q.R_ARM_MOVT_PREL), constant.MakeInt64(int64(q.R_ARM_MOVT_PREL))}, + "R_ARM_MOVW_ABS_NC": {reflect.TypeOf(q.R_ARM_MOVW_ABS_NC), constant.MakeInt64(int64(q.R_ARM_MOVW_ABS_NC))}, + "R_ARM_MOVW_BREL": {reflect.TypeOf(q.R_ARM_MOVW_BREL), constant.MakeInt64(int64(q.R_ARM_MOVW_BREL))}, + "R_ARM_MOVW_BREL_NC": {reflect.TypeOf(q.R_ARM_MOVW_BREL_NC), constant.MakeInt64(int64(q.R_ARM_MOVW_BREL_NC))}, + "R_ARM_MOVW_PREL_NC": {reflect.TypeOf(q.R_ARM_MOVW_PREL_NC), constant.MakeInt64(int64(q.R_ARM_MOVW_PREL_NC))}, + "R_ARM_NONE": {reflect.TypeOf(q.R_ARM_NONE), constant.MakeInt64(int64(q.R_ARM_NONE))}, + "R_ARM_PC13": {reflect.TypeOf(q.R_ARM_PC13), constant.MakeInt64(int64(q.R_ARM_PC13))}, + "R_ARM_PC24": {reflect.TypeOf(q.R_ARM_PC24), constant.MakeInt64(int64(q.R_ARM_PC24))}, + "R_ARM_PLT32": {reflect.TypeOf(q.R_ARM_PLT32), constant.MakeInt64(int64(q.R_ARM_PLT32))}, + "R_ARM_PLT32_ABS": {reflect.TypeOf(q.R_ARM_PLT32_ABS), constant.MakeInt64(int64(q.R_ARM_PLT32_ABS))}, + "R_ARM_PREL31": {reflect.TypeOf(q.R_ARM_PREL31), constant.MakeInt64(int64(q.R_ARM_PREL31))}, + "R_ARM_PRIVATE_0": {reflect.TypeOf(q.R_ARM_PRIVATE_0), constant.MakeInt64(int64(q.R_ARM_PRIVATE_0))}, + "R_ARM_PRIVATE_1": {reflect.TypeOf(q.R_ARM_PRIVATE_1), constant.MakeInt64(int64(q.R_ARM_PRIVATE_1))}, + "R_ARM_PRIVATE_10": {reflect.TypeOf(q.R_ARM_PRIVATE_10), constant.MakeInt64(int64(q.R_ARM_PRIVATE_10))}, + "R_ARM_PRIVATE_11": {reflect.TypeOf(q.R_ARM_PRIVATE_11), constant.MakeInt64(int64(q.R_ARM_PRIVATE_11))}, + "R_ARM_PRIVATE_12": {reflect.TypeOf(q.R_ARM_PRIVATE_12), constant.MakeInt64(int64(q.R_ARM_PRIVATE_12))}, + "R_ARM_PRIVATE_13": {reflect.TypeOf(q.R_ARM_PRIVATE_13), constant.MakeInt64(int64(q.R_ARM_PRIVATE_13))}, + "R_ARM_PRIVATE_14": {reflect.TypeOf(q.R_ARM_PRIVATE_14), constant.MakeInt64(int64(q.R_ARM_PRIVATE_14))}, + "R_ARM_PRIVATE_15": {reflect.TypeOf(q.R_ARM_PRIVATE_15), constant.MakeInt64(int64(q.R_ARM_PRIVATE_15))}, + "R_ARM_PRIVATE_2": {reflect.TypeOf(q.R_ARM_PRIVATE_2), constant.MakeInt64(int64(q.R_ARM_PRIVATE_2))}, + "R_ARM_PRIVATE_3": {reflect.TypeOf(q.R_ARM_PRIVATE_3), constant.MakeInt64(int64(q.R_ARM_PRIVATE_3))}, + "R_ARM_PRIVATE_4": {reflect.TypeOf(q.R_ARM_PRIVATE_4), constant.MakeInt64(int64(q.R_ARM_PRIVATE_4))}, + "R_ARM_PRIVATE_5": {reflect.TypeOf(q.R_ARM_PRIVATE_5), constant.MakeInt64(int64(q.R_ARM_PRIVATE_5))}, + "R_ARM_PRIVATE_6": {reflect.TypeOf(q.R_ARM_PRIVATE_6), constant.MakeInt64(int64(q.R_ARM_PRIVATE_6))}, + "R_ARM_PRIVATE_7": {reflect.TypeOf(q.R_ARM_PRIVATE_7), constant.MakeInt64(int64(q.R_ARM_PRIVATE_7))}, + "R_ARM_PRIVATE_8": {reflect.TypeOf(q.R_ARM_PRIVATE_8), constant.MakeInt64(int64(q.R_ARM_PRIVATE_8))}, + "R_ARM_PRIVATE_9": {reflect.TypeOf(q.R_ARM_PRIVATE_9), constant.MakeInt64(int64(q.R_ARM_PRIVATE_9))}, + "R_ARM_RABS32": {reflect.TypeOf(q.R_ARM_RABS32), constant.MakeInt64(int64(q.R_ARM_RABS32))}, + "R_ARM_RBASE": {reflect.TypeOf(q.R_ARM_RBASE), constant.MakeInt64(int64(q.R_ARM_RBASE))}, + "R_ARM_REL32": {reflect.TypeOf(q.R_ARM_REL32), constant.MakeInt64(int64(q.R_ARM_REL32))}, + "R_ARM_REL32_NOI": {reflect.TypeOf(q.R_ARM_REL32_NOI), constant.MakeInt64(int64(q.R_ARM_REL32_NOI))}, + "R_ARM_RELATIVE": {reflect.TypeOf(q.R_ARM_RELATIVE), constant.MakeInt64(int64(q.R_ARM_RELATIVE))}, + "R_ARM_RPC24": {reflect.TypeOf(q.R_ARM_RPC24), constant.MakeInt64(int64(q.R_ARM_RPC24))}, + "R_ARM_RREL32": {reflect.TypeOf(q.R_ARM_RREL32), constant.MakeInt64(int64(q.R_ARM_RREL32))}, + "R_ARM_RSBREL32": {reflect.TypeOf(q.R_ARM_RSBREL32), constant.MakeInt64(int64(q.R_ARM_RSBREL32))}, + "R_ARM_RXPC25": {reflect.TypeOf(q.R_ARM_RXPC25), constant.MakeInt64(int64(q.R_ARM_RXPC25))}, + "R_ARM_SBREL31": {reflect.TypeOf(q.R_ARM_SBREL31), constant.MakeInt64(int64(q.R_ARM_SBREL31))}, + "R_ARM_SBREL32": {reflect.TypeOf(q.R_ARM_SBREL32), constant.MakeInt64(int64(q.R_ARM_SBREL32))}, + "R_ARM_SWI24": {reflect.TypeOf(q.R_ARM_SWI24), constant.MakeInt64(int64(q.R_ARM_SWI24))}, + "R_ARM_TARGET1": {reflect.TypeOf(q.R_ARM_TARGET1), constant.MakeInt64(int64(q.R_ARM_TARGET1))}, + "R_ARM_TARGET2": {reflect.TypeOf(q.R_ARM_TARGET2), constant.MakeInt64(int64(q.R_ARM_TARGET2))}, + "R_ARM_THM_ABS5": {reflect.TypeOf(q.R_ARM_THM_ABS5), constant.MakeInt64(int64(q.R_ARM_THM_ABS5))}, + "R_ARM_THM_ALU_ABS_G0_NC": {reflect.TypeOf(q.R_ARM_THM_ALU_ABS_G0_NC), constant.MakeInt64(int64(q.R_ARM_THM_ALU_ABS_G0_NC))}, + "R_ARM_THM_ALU_ABS_G1_NC": {reflect.TypeOf(q.R_ARM_THM_ALU_ABS_G1_NC), constant.MakeInt64(int64(q.R_ARM_THM_ALU_ABS_G1_NC))}, + "R_ARM_THM_ALU_ABS_G2_NC": {reflect.TypeOf(q.R_ARM_THM_ALU_ABS_G2_NC), constant.MakeInt64(int64(q.R_ARM_THM_ALU_ABS_G2_NC))}, + "R_ARM_THM_ALU_ABS_G3": {reflect.TypeOf(q.R_ARM_THM_ALU_ABS_G3), constant.MakeInt64(int64(q.R_ARM_THM_ALU_ABS_G3))}, + "R_ARM_THM_ALU_PREL_11_0": {reflect.TypeOf(q.R_ARM_THM_ALU_PREL_11_0), constant.MakeInt64(int64(q.R_ARM_THM_ALU_PREL_11_0))}, + "R_ARM_THM_GOT_BREL12": {reflect.TypeOf(q.R_ARM_THM_GOT_BREL12), constant.MakeInt64(int64(q.R_ARM_THM_GOT_BREL12))}, + "R_ARM_THM_JUMP11": {reflect.TypeOf(q.R_ARM_THM_JUMP11), constant.MakeInt64(int64(q.R_ARM_THM_JUMP11))}, + "R_ARM_THM_JUMP19": {reflect.TypeOf(q.R_ARM_THM_JUMP19), constant.MakeInt64(int64(q.R_ARM_THM_JUMP19))}, + "R_ARM_THM_JUMP24": {reflect.TypeOf(q.R_ARM_THM_JUMP24), constant.MakeInt64(int64(q.R_ARM_THM_JUMP24))}, + "R_ARM_THM_JUMP6": {reflect.TypeOf(q.R_ARM_THM_JUMP6), constant.MakeInt64(int64(q.R_ARM_THM_JUMP6))}, + "R_ARM_THM_JUMP8": {reflect.TypeOf(q.R_ARM_THM_JUMP8), constant.MakeInt64(int64(q.R_ARM_THM_JUMP8))}, + "R_ARM_THM_MOVT_ABS": {reflect.TypeOf(q.R_ARM_THM_MOVT_ABS), constant.MakeInt64(int64(q.R_ARM_THM_MOVT_ABS))}, + "R_ARM_THM_MOVT_BREL": {reflect.TypeOf(q.R_ARM_THM_MOVT_BREL), constant.MakeInt64(int64(q.R_ARM_THM_MOVT_BREL))}, + "R_ARM_THM_MOVT_PREL": {reflect.TypeOf(q.R_ARM_THM_MOVT_PREL), constant.MakeInt64(int64(q.R_ARM_THM_MOVT_PREL))}, + "R_ARM_THM_MOVW_ABS_NC": {reflect.TypeOf(q.R_ARM_THM_MOVW_ABS_NC), constant.MakeInt64(int64(q.R_ARM_THM_MOVW_ABS_NC))}, + "R_ARM_THM_MOVW_BREL": {reflect.TypeOf(q.R_ARM_THM_MOVW_BREL), constant.MakeInt64(int64(q.R_ARM_THM_MOVW_BREL))}, + "R_ARM_THM_MOVW_BREL_NC": {reflect.TypeOf(q.R_ARM_THM_MOVW_BREL_NC), constant.MakeInt64(int64(q.R_ARM_THM_MOVW_BREL_NC))}, + "R_ARM_THM_MOVW_PREL_NC": {reflect.TypeOf(q.R_ARM_THM_MOVW_PREL_NC), constant.MakeInt64(int64(q.R_ARM_THM_MOVW_PREL_NC))}, + "R_ARM_THM_PC12": {reflect.TypeOf(q.R_ARM_THM_PC12), constant.MakeInt64(int64(q.R_ARM_THM_PC12))}, + "R_ARM_THM_PC22": {reflect.TypeOf(q.R_ARM_THM_PC22), constant.MakeInt64(int64(q.R_ARM_THM_PC22))}, + "R_ARM_THM_PC8": {reflect.TypeOf(q.R_ARM_THM_PC8), constant.MakeInt64(int64(q.R_ARM_THM_PC8))}, + "R_ARM_THM_RPC22": {reflect.TypeOf(q.R_ARM_THM_RPC22), constant.MakeInt64(int64(q.R_ARM_THM_RPC22))}, + "R_ARM_THM_SWI8": {reflect.TypeOf(q.R_ARM_THM_SWI8), constant.MakeInt64(int64(q.R_ARM_THM_SWI8))}, + "R_ARM_THM_TLS_CALL": {reflect.TypeOf(q.R_ARM_THM_TLS_CALL), constant.MakeInt64(int64(q.R_ARM_THM_TLS_CALL))}, + "R_ARM_THM_TLS_DESCSEQ16": {reflect.TypeOf(q.R_ARM_THM_TLS_DESCSEQ16), constant.MakeInt64(int64(q.R_ARM_THM_TLS_DESCSEQ16))}, + "R_ARM_THM_TLS_DESCSEQ32": {reflect.TypeOf(q.R_ARM_THM_TLS_DESCSEQ32), constant.MakeInt64(int64(q.R_ARM_THM_TLS_DESCSEQ32))}, + "R_ARM_THM_XPC22": {reflect.TypeOf(q.R_ARM_THM_XPC22), constant.MakeInt64(int64(q.R_ARM_THM_XPC22))}, + "R_ARM_TLS_CALL": {reflect.TypeOf(q.R_ARM_TLS_CALL), constant.MakeInt64(int64(q.R_ARM_TLS_CALL))}, + "R_ARM_TLS_DESCSEQ": {reflect.TypeOf(q.R_ARM_TLS_DESCSEQ), constant.MakeInt64(int64(q.R_ARM_TLS_DESCSEQ))}, + "R_ARM_TLS_DTPMOD32": {reflect.TypeOf(q.R_ARM_TLS_DTPMOD32), constant.MakeInt64(int64(q.R_ARM_TLS_DTPMOD32))}, + "R_ARM_TLS_DTPOFF32": {reflect.TypeOf(q.R_ARM_TLS_DTPOFF32), constant.MakeInt64(int64(q.R_ARM_TLS_DTPOFF32))}, + "R_ARM_TLS_GD32": {reflect.TypeOf(q.R_ARM_TLS_GD32), constant.MakeInt64(int64(q.R_ARM_TLS_GD32))}, + "R_ARM_TLS_GOTDESC": {reflect.TypeOf(q.R_ARM_TLS_GOTDESC), constant.MakeInt64(int64(q.R_ARM_TLS_GOTDESC))}, + "R_ARM_TLS_IE12GP": {reflect.TypeOf(q.R_ARM_TLS_IE12GP), constant.MakeInt64(int64(q.R_ARM_TLS_IE12GP))}, + "R_ARM_TLS_IE32": {reflect.TypeOf(q.R_ARM_TLS_IE32), constant.MakeInt64(int64(q.R_ARM_TLS_IE32))}, + "R_ARM_TLS_LDM32": {reflect.TypeOf(q.R_ARM_TLS_LDM32), constant.MakeInt64(int64(q.R_ARM_TLS_LDM32))}, + "R_ARM_TLS_LDO12": {reflect.TypeOf(q.R_ARM_TLS_LDO12), constant.MakeInt64(int64(q.R_ARM_TLS_LDO12))}, + "R_ARM_TLS_LDO32": {reflect.TypeOf(q.R_ARM_TLS_LDO32), constant.MakeInt64(int64(q.R_ARM_TLS_LDO32))}, + "R_ARM_TLS_LE12": {reflect.TypeOf(q.R_ARM_TLS_LE12), constant.MakeInt64(int64(q.R_ARM_TLS_LE12))}, + "R_ARM_TLS_LE32": {reflect.TypeOf(q.R_ARM_TLS_LE32), constant.MakeInt64(int64(q.R_ARM_TLS_LE32))}, + "R_ARM_TLS_TPOFF32": {reflect.TypeOf(q.R_ARM_TLS_TPOFF32), constant.MakeInt64(int64(q.R_ARM_TLS_TPOFF32))}, + "R_ARM_V4BX": {reflect.TypeOf(q.R_ARM_V4BX), constant.MakeInt64(int64(q.R_ARM_V4BX))}, + "R_ARM_XPC25": {reflect.TypeOf(q.R_ARM_XPC25), constant.MakeInt64(int64(q.R_ARM_XPC25))}, + "R_LARCH_32": {reflect.TypeOf(q.R_LARCH_32), constant.MakeInt64(int64(q.R_LARCH_32))}, + "R_LARCH_32_PCREL": {reflect.TypeOf(q.R_LARCH_32_PCREL), constant.MakeInt64(int64(q.R_LARCH_32_PCREL))}, + "R_LARCH_64": {reflect.TypeOf(q.R_LARCH_64), constant.MakeInt64(int64(q.R_LARCH_64))}, + "R_LARCH_64_PCREL": {reflect.TypeOf(q.R_LARCH_64_PCREL), constant.MakeInt64(int64(q.R_LARCH_64_PCREL))}, + "R_LARCH_ABS64_HI12": {reflect.TypeOf(q.R_LARCH_ABS64_HI12), constant.MakeInt64(int64(q.R_LARCH_ABS64_HI12))}, + "R_LARCH_ABS64_LO20": {reflect.TypeOf(q.R_LARCH_ABS64_LO20), constant.MakeInt64(int64(q.R_LARCH_ABS64_LO20))}, + "R_LARCH_ABS_HI20": {reflect.TypeOf(q.R_LARCH_ABS_HI20), constant.MakeInt64(int64(q.R_LARCH_ABS_HI20))}, + "R_LARCH_ABS_LO12": {reflect.TypeOf(q.R_LARCH_ABS_LO12), constant.MakeInt64(int64(q.R_LARCH_ABS_LO12))}, + "R_LARCH_ADD16": {reflect.TypeOf(q.R_LARCH_ADD16), constant.MakeInt64(int64(q.R_LARCH_ADD16))}, + "R_LARCH_ADD24": {reflect.TypeOf(q.R_LARCH_ADD24), constant.MakeInt64(int64(q.R_LARCH_ADD24))}, + "R_LARCH_ADD32": {reflect.TypeOf(q.R_LARCH_ADD32), constant.MakeInt64(int64(q.R_LARCH_ADD32))}, + "R_LARCH_ADD6": {reflect.TypeOf(q.R_LARCH_ADD6), constant.MakeInt64(int64(q.R_LARCH_ADD6))}, + "R_LARCH_ADD64": {reflect.TypeOf(q.R_LARCH_ADD64), constant.MakeInt64(int64(q.R_LARCH_ADD64))}, + "R_LARCH_ADD8": {reflect.TypeOf(q.R_LARCH_ADD8), constant.MakeInt64(int64(q.R_LARCH_ADD8))}, + "R_LARCH_ADD_ULEB128": {reflect.TypeOf(q.R_LARCH_ADD_ULEB128), constant.MakeInt64(int64(q.R_LARCH_ADD_ULEB128))}, + "R_LARCH_ALIGN": {reflect.TypeOf(q.R_LARCH_ALIGN), constant.MakeInt64(int64(q.R_LARCH_ALIGN))}, + "R_LARCH_B16": {reflect.TypeOf(q.R_LARCH_B16), constant.MakeInt64(int64(q.R_LARCH_B16))}, + "R_LARCH_B21": {reflect.TypeOf(q.R_LARCH_B21), constant.MakeInt64(int64(q.R_LARCH_B21))}, + "R_LARCH_B26": {reflect.TypeOf(q.R_LARCH_B26), constant.MakeInt64(int64(q.R_LARCH_B26))}, + "R_LARCH_CFA": {reflect.TypeOf(q.R_LARCH_CFA), constant.MakeInt64(int64(q.R_LARCH_CFA))}, + "R_LARCH_COPY": {reflect.TypeOf(q.R_LARCH_COPY), constant.MakeInt64(int64(q.R_LARCH_COPY))}, + "R_LARCH_DELETE": {reflect.TypeOf(q.R_LARCH_DELETE), constant.MakeInt64(int64(q.R_LARCH_DELETE))}, + "R_LARCH_GNU_VTENTRY": {reflect.TypeOf(q.R_LARCH_GNU_VTENTRY), constant.MakeInt64(int64(q.R_LARCH_GNU_VTENTRY))}, + "R_LARCH_GNU_VTINHERIT": {reflect.TypeOf(q.R_LARCH_GNU_VTINHERIT), constant.MakeInt64(int64(q.R_LARCH_GNU_VTINHERIT))}, + "R_LARCH_GOT64_HI12": {reflect.TypeOf(q.R_LARCH_GOT64_HI12), constant.MakeInt64(int64(q.R_LARCH_GOT64_HI12))}, + "R_LARCH_GOT64_LO20": {reflect.TypeOf(q.R_LARCH_GOT64_LO20), constant.MakeInt64(int64(q.R_LARCH_GOT64_LO20))}, + "R_LARCH_GOT64_PC_HI12": {reflect.TypeOf(q.R_LARCH_GOT64_PC_HI12), constant.MakeInt64(int64(q.R_LARCH_GOT64_PC_HI12))}, + "R_LARCH_GOT64_PC_LO20": {reflect.TypeOf(q.R_LARCH_GOT64_PC_LO20), constant.MakeInt64(int64(q.R_LARCH_GOT64_PC_LO20))}, + "R_LARCH_GOT_HI20": {reflect.TypeOf(q.R_LARCH_GOT_HI20), constant.MakeInt64(int64(q.R_LARCH_GOT_HI20))}, + "R_LARCH_GOT_LO12": {reflect.TypeOf(q.R_LARCH_GOT_LO12), constant.MakeInt64(int64(q.R_LARCH_GOT_LO12))}, + "R_LARCH_GOT_PC_HI20": {reflect.TypeOf(q.R_LARCH_GOT_PC_HI20), constant.MakeInt64(int64(q.R_LARCH_GOT_PC_HI20))}, + "R_LARCH_GOT_PC_LO12": {reflect.TypeOf(q.R_LARCH_GOT_PC_LO12), constant.MakeInt64(int64(q.R_LARCH_GOT_PC_LO12))}, + "R_LARCH_IRELATIVE": {reflect.TypeOf(q.R_LARCH_IRELATIVE), constant.MakeInt64(int64(q.R_LARCH_IRELATIVE))}, + "R_LARCH_JUMP_SLOT": {reflect.TypeOf(q.R_LARCH_JUMP_SLOT), constant.MakeInt64(int64(q.R_LARCH_JUMP_SLOT))}, + "R_LARCH_MARK_LA": {reflect.TypeOf(q.R_LARCH_MARK_LA), constant.MakeInt64(int64(q.R_LARCH_MARK_LA))}, + "R_LARCH_MARK_PCREL": {reflect.TypeOf(q.R_LARCH_MARK_PCREL), constant.MakeInt64(int64(q.R_LARCH_MARK_PCREL))}, + "R_LARCH_NONE": {reflect.TypeOf(q.R_LARCH_NONE), constant.MakeInt64(int64(q.R_LARCH_NONE))}, + "R_LARCH_PCALA64_HI12": {reflect.TypeOf(q.R_LARCH_PCALA64_HI12), constant.MakeInt64(int64(q.R_LARCH_PCALA64_HI12))}, + "R_LARCH_PCALA64_LO20": {reflect.TypeOf(q.R_LARCH_PCALA64_LO20), constant.MakeInt64(int64(q.R_LARCH_PCALA64_LO20))}, + "R_LARCH_PCALA_HI20": {reflect.TypeOf(q.R_LARCH_PCALA_HI20), constant.MakeInt64(int64(q.R_LARCH_PCALA_HI20))}, + "R_LARCH_PCALA_LO12": {reflect.TypeOf(q.R_LARCH_PCALA_LO12), constant.MakeInt64(int64(q.R_LARCH_PCALA_LO12))}, + "R_LARCH_PCREL20_S2": {reflect.TypeOf(q.R_LARCH_PCREL20_S2), constant.MakeInt64(int64(q.R_LARCH_PCREL20_S2))}, + "R_LARCH_RELATIVE": {reflect.TypeOf(q.R_LARCH_RELATIVE), constant.MakeInt64(int64(q.R_LARCH_RELATIVE))}, + "R_LARCH_RELAX": {reflect.TypeOf(q.R_LARCH_RELAX), constant.MakeInt64(int64(q.R_LARCH_RELAX))}, + "R_LARCH_SOP_ADD": {reflect.TypeOf(q.R_LARCH_SOP_ADD), constant.MakeInt64(int64(q.R_LARCH_SOP_ADD))}, + "R_LARCH_SOP_AND": {reflect.TypeOf(q.R_LARCH_SOP_AND), constant.MakeInt64(int64(q.R_LARCH_SOP_AND))}, + "R_LARCH_SOP_ASSERT": {reflect.TypeOf(q.R_LARCH_SOP_ASSERT), constant.MakeInt64(int64(q.R_LARCH_SOP_ASSERT))}, + "R_LARCH_SOP_IF_ELSE": {reflect.TypeOf(q.R_LARCH_SOP_IF_ELSE), constant.MakeInt64(int64(q.R_LARCH_SOP_IF_ELSE))}, + "R_LARCH_SOP_NOT": {reflect.TypeOf(q.R_LARCH_SOP_NOT), constant.MakeInt64(int64(q.R_LARCH_SOP_NOT))}, + "R_LARCH_SOP_POP_32_S_0_10_10_16_S2": {reflect.TypeOf(q.R_LARCH_SOP_POP_32_S_0_10_10_16_S2), constant.MakeInt64(int64(q.R_LARCH_SOP_POP_32_S_0_10_10_16_S2))}, + "R_LARCH_SOP_POP_32_S_0_5_10_16_S2": {reflect.TypeOf(q.R_LARCH_SOP_POP_32_S_0_5_10_16_S2), constant.MakeInt64(int64(q.R_LARCH_SOP_POP_32_S_0_5_10_16_S2))}, + "R_LARCH_SOP_POP_32_S_10_12": {reflect.TypeOf(q.R_LARCH_SOP_POP_32_S_10_12), constant.MakeInt64(int64(q.R_LARCH_SOP_POP_32_S_10_12))}, + "R_LARCH_SOP_POP_32_S_10_16": {reflect.TypeOf(q.R_LARCH_SOP_POP_32_S_10_16), constant.MakeInt64(int64(q.R_LARCH_SOP_POP_32_S_10_16))}, + "R_LARCH_SOP_POP_32_S_10_16_S2": {reflect.TypeOf(q.R_LARCH_SOP_POP_32_S_10_16_S2), constant.MakeInt64(int64(q.R_LARCH_SOP_POP_32_S_10_16_S2))}, + "R_LARCH_SOP_POP_32_S_10_5": {reflect.TypeOf(q.R_LARCH_SOP_POP_32_S_10_5), constant.MakeInt64(int64(q.R_LARCH_SOP_POP_32_S_10_5))}, + "R_LARCH_SOP_POP_32_S_5_20": {reflect.TypeOf(q.R_LARCH_SOP_POP_32_S_5_20), constant.MakeInt64(int64(q.R_LARCH_SOP_POP_32_S_5_20))}, + "R_LARCH_SOP_POP_32_U": {reflect.TypeOf(q.R_LARCH_SOP_POP_32_U), constant.MakeInt64(int64(q.R_LARCH_SOP_POP_32_U))}, + "R_LARCH_SOP_POP_32_U_10_12": {reflect.TypeOf(q.R_LARCH_SOP_POP_32_U_10_12), constant.MakeInt64(int64(q.R_LARCH_SOP_POP_32_U_10_12))}, + "R_LARCH_SOP_PUSH_ABSOLUTE": {reflect.TypeOf(q.R_LARCH_SOP_PUSH_ABSOLUTE), constant.MakeInt64(int64(q.R_LARCH_SOP_PUSH_ABSOLUTE))}, + "R_LARCH_SOP_PUSH_DUP": {reflect.TypeOf(q.R_LARCH_SOP_PUSH_DUP), constant.MakeInt64(int64(q.R_LARCH_SOP_PUSH_DUP))}, + "R_LARCH_SOP_PUSH_GPREL": {reflect.TypeOf(q.R_LARCH_SOP_PUSH_GPREL), constant.MakeInt64(int64(q.R_LARCH_SOP_PUSH_GPREL))}, + "R_LARCH_SOP_PUSH_PCREL": {reflect.TypeOf(q.R_LARCH_SOP_PUSH_PCREL), constant.MakeInt64(int64(q.R_LARCH_SOP_PUSH_PCREL))}, + "R_LARCH_SOP_PUSH_PLT_PCREL": {reflect.TypeOf(q.R_LARCH_SOP_PUSH_PLT_PCREL), constant.MakeInt64(int64(q.R_LARCH_SOP_PUSH_PLT_PCREL))}, + "R_LARCH_SOP_PUSH_TLS_GD": {reflect.TypeOf(q.R_LARCH_SOP_PUSH_TLS_GD), constant.MakeInt64(int64(q.R_LARCH_SOP_PUSH_TLS_GD))}, + "R_LARCH_SOP_PUSH_TLS_GOT": {reflect.TypeOf(q.R_LARCH_SOP_PUSH_TLS_GOT), constant.MakeInt64(int64(q.R_LARCH_SOP_PUSH_TLS_GOT))}, + "R_LARCH_SOP_PUSH_TLS_TPREL": {reflect.TypeOf(q.R_LARCH_SOP_PUSH_TLS_TPREL), constant.MakeInt64(int64(q.R_LARCH_SOP_PUSH_TLS_TPREL))}, + "R_LARCH_SOP_SL": {reflect.TypeOf(q.R_LARCH_SOP_SL), constant.MakeInt64(int64(q.R_LARCH_SOP_SL))}, + "R_LARCH_SOP_SR": {reflect.TypeOf(q.R_LARCH_SOP_SR), constant.MakeInt64(int64(q.R_LARCH_SOP_SR))}, + "R_LARCH_SOP_SUB": {reflect.TypeOf(q.R_LARCH_SOP_SUB), constant.MakeInt64(int64(q.R_LARCH_SOP_SUB))}, + "R_LARCH_SUB16": {reflect.TypeOf(q.R_LARCH_SUB16), constant.MakeInt64(int64(q.R_LARCH_SUB16))}, + "R_LARCH_SUB24": {reflect.TypeOf(q.R_LARCH_SUB24), constant.MakeInt64(int64(q.R_LARCH_SUB24))}, + "R_LARCH_SUB32": {reflect.TypeOf(q.R_LARCH_SUB32), constant.MakeInt64(int64(q.R_LARCH_SUB32))}, + "R_LARCH_SUB6": {reflect.TypeOf(q.R_LARCH_SUB6), constant.MakeInt64(int64(q.R_LARCH_SUB6))}, + "R_LARCH_SUB64": {reflect.TypeOf(q.R_LARCH_SUB64), constant.MakeInt64(int64(q.R_LARCH_SUB64))}, + "R_LARCH_SUB8": {reflect.TypeOf(q.R_LARCH_SUB8), constant.MakeInt64(int64(q.R_LARCH_SUB8))}, + "R_LARCH_SUB_ULEB128": {reflect.TypeOf(q.R_LARCH_SUB_ULEB128), constant.MakeInt64(int64(q.R_LARCH_SUB_ULEB128))}, + "R_LARCH_TLS_DTPMOD32": {reflect.TypeOf(q.R_LARCH_TLS_DTPMOD32), constant.MakeInt64(int64(q.R_LARCH_TLS_DTPMOD32))}, + "R_LARCH_TLS_DTPMOD64": {reflect.TypeOf(q.R_LARCH_TLS_DTPMOD64), constant.MakeInt64(int64(q.R_LARCH_TLS_DTPMOD64))}, + "R_LARCH_TLS_DTPREL32": {reflect.TypeOf(q.R_LARCH_TLS_DTPREL32), constant.MakeInt64(int64(q.R_LARCH_TLS_DTPREL32))}, + "R_LARCH_TLS_DTPREL64": {reflect.TypeOf(q.R_LARCH_TLS_DTPREL64), constant.MakeInt64(int64(q.R_LARCH_TLS_DTPREL64))}, + "R_LARCH_TLS_GD_HI20": {reflect.TypeOf(q.R_LARCH_TLS_GD_HI20), constant.MakeInt64(int64(q.R_LARCH_TLS_GD_HI20))}, + "R_LARCH_TLS_GD_PC_HI20": {reflect.TypeOf(q.R_LARCH_TLS_GD_PC_HI20), constant.MakeInt64(int64(q.R_LARCH_TLS_GD_PC_HI20))}, + "R_LARCH_TLS_IE64_HI12": {reflect.TypeOf(q.R_LARCH_TLS_IE64_HI12), constant.MakeInt64(int64(q.R_LARCH_TLS_IE64_HI12))}, + "R_LARCH_TLS_IE64_LO20": {reflect.TypeOf(q.R_LARCH_TLS_IE64_LO20), constant.MakeInt64(int64(q.R_LARCH_TLS_IE64_LO20))}, + "R_LARCH_TLS_IE64_PC_HI12": {reflect.TypeOf(q.R_LARCH_TLS_IE64_PC_HI12), constant.MakeInt64(int64(q.R_LARCH_TLS_IE64_PC_HI12))}, + "R_LARCH_TLS_IE64_PC_LO20": {reflect.TypeOf(q.R_LARCH_TLS_IE64_PC_LO20), constant.MakeInt64(int64(q.R_LARCH_TLS_IE64_PC_LO20))}, + "R_LARCH_TLS_IE_HI20": {reflect.TypeOf(q.R_LARCH_TLS_IE_HI20), constant.MakeInt64(int64(q.R_LARCH_TLS_IE_HI20))}, + "R_LARCH_TLS_IE_LO12": {reflect.TypeOf(q.R_LARCH_TLS_IE_LO12), constant.MakeInt64(int64(q.R_LARCH_TLS_IE_LO12))}, + "R_LARCH_TLS_IE_PC_HI20": {reflect.TypeOf(q.R_LARCH_TLS_IE_PC_HI20), constant.MakeInt64(int64(q.R_LARCH_TLS_IE_PC_HI20))}, + "R_LARCH_TLS_IE_PC_LO12": {reflect.TypeOf(q.R_LARCH_TLS_IE_PC_LO12), constant.MakeInt64(int64(q.R_LARCH_TLS_IE_PC_LO12))}, + "R_LARCH_TLS_LD_HI20": {reflect.TypeOf(q.R_LARCH_TLS_LD_HI20), constant.MakeInt64(int64(q.R_LARCH_TLS_LD_HI20))}, + "R_LARCH_TLS_LD_PC_HI20": {reflect.TypeOf(q.R_LARCH_TLS_LD_PC_HI20), constant.MakeInt64(int64(q.R_LARCH_TLS_LD_PC_HI20))}, + "R_LARCH_TLS_LE64_HI12": {reflect.TypeOf(q.R_LARCH_TLS_LE64_HI12), constant.MakeInt64(int64(q.R_LARCH_TLS_LE64_HI12))}, + "R_LARCH_TLS_LE64_LO20": {reflect.TypeOf(q.R_LARCH_TLS_LE64_LO20), constant.MakeInt64(int64(q.R_LARCH_TLS_LE64_LO20))}, + "R_LARCH_TLS_LE_HI20": {reflect.TypeOf(q.R_LARCH_TLS_LE_HI20), constant.MakeInt64(int64(q.R_LARCH_TLS_LE_HI20))}, + "R_LARCH_TLS_LE_LO12": {reflect.TypeOf(q.R_LARCH_TLS_LE_LO12), constant.MakeInt64(int64(q.R_LARCH_TLS_LE_LO12))}, + "R_LARCH_TLS_TPREL32": {reflect.TypeOf(q.R_LARCH_TLS_TPREL32), constant.MakeInt64(int64(q.R_LARCH_TLS_TPREL32))}, + "R_LARCH_TLS_TPREL64": {reflect.TypeOf(q.R_LARCH_TLS_TPREL64), constant.MakeInt64(int64(q.R_LARCH_TLS_TPREL64))}, + "R_MIPS_16": {reflect.TypeOf(q.R_MIPS_16), constant.MakeInt64(int64(q.R_MIPS_16))}, + "R_MIPS_26": {reflect.TypeOf(q.R_MIPS_26), constant.MakeInt64(int64(q.R_MIPS_26))}, + "R_MIPS_32": {reflect.TypeOf(q.R_MIPS_32), constant.MakeInt64(int64(q.R_MIPS_32))}, + "R_MIPS_64": {reflect.TypeOf(q.R_MIPS_64), constant.MakeInt64(int64(q.R_MIPS_64))}, + "R_MIPS_ADD_IMMEDIATE": {reflect.TypeOf(q.R_MIPS_ADD_IMMEDIATE), constant.MakeInt64(int64(q.R_MIPS_ADD_IMMEDIATE))}, + "R_MIPS_CALL16": {reflect.TypeOf(q.R_MIPS_CALL16), constant.MakeInt64(int64(q.R_MIPS_CALL16))}, + "R_MIPS_CALL_HI16": {reflect.TypeOf(q.R_MIPS_CALL_HI16), constant.MakeInt64(int64(q.R_MIPS_CALL_HI16))}, + "R_MIPS_CALL_LO16": {reflect.TypeOf(q.R_MIPS_CALL_LO16), constant.MakeInt64(int64(q.R_MIPS_CALL_LO16))}, + "R_MIPS_DELETE": {reflect.TypeOf(q.R_MIPS_DELETE), constant.MakeInt64(int64(q.R_MIPS_DELETE))}, + "R_MIPS_GOT16": {reflect.TypeOf(q.R_MIPS_GOT16), constant.MakeInt64(int64(q.R_MIPS_GOT16))}, + "R_MIPS_GOT_DISP": {reflect.TypeOf(q.R_MIPS_GOT_DISP), constant.MakeInt64(int64(q.R_MIPS_GOT_DISP))}, + "R_MIPS_GOT_HI16": {reflect.TypeOf(q.R_MIPS_GOT_HI16), constant.MakeInt64(int64(q.R_MIPS_GOT_HI16))}, + "R_MIPS_GOT_LO16": {reflect.TypeOf(q.R_MIPS_GOT_LO16), constant.MakeInt64(int64(q.R_MIPS_GOT_LO16))}, + "R_MIPS_GOT_OFST": {reflect.TypeOf(q.R_MIPS_GOT_OFST), constant.MakeInt64(int64(q.R_MIPS_GOT_OFST))}, + "R_MIPS_GOT_PAGE": {reflect.TypeOf(q.R_MIPS_GOT_PAGE), constant.MakeInt64(int64(q.R_MIPS_GOT_PAGE))}, + "R_MIPS_GPREL16": {reflect.TypeOf(q.R_MIPS_GPREL16), constant.MakeInt64(int64(q.R_MIPS_GPREL16))}, + "R_MIPS_GPREL32": {reflect.TypeOf(q.R_MIPS_GPREL32), constant.MakeInt64(int64(q.R_MIPS_GPREL32))}, + "R_MIPS_HI16": {reflect.TypeOf(q.R_MIPS_HI16), constant.MakeInt64(int64(q.R_MIPS_HI16))}, + "R_MIPS_HIGHER": {reflect.TypeOf(q.R_MIPS_HIGHER), constant.MakeInt64(int64(q.R_MIPS_HIGHER))}, + "R_MIPS_HIGHEST": {reflect.TypeOf(q.R_MIPS_HIGHEST), constant.MakeInt64(int64(q.R_MIPS_HIGHEST))}, + "R_MIPS_INSERT_A": {reflect.TypeOf(q.R_MIPS_INSERT_A), constant.MakeInt64(int64(q.R_MIPS_INSERT_A))}, + "R_MIPS_INSERT_B": {reflect.TypeOf(q.R_MIPS_INSERT_B), constant.MakeInt64(int64(q.R_MIPS_INSERT_B))}, + "R_MIPS_JALR": {reflect.TypeOf(q.R_MIPS_JALR), constant.MakeInt64(int64(q.R_MIPS_JALR))}, + "R_MIPS_LITERAL": {reflect.TypeOf(q.R_MIPS_LITERAL), constant.MakeInt64(int64(q.R_MIPS_LITERAL))}, + "R_MIPS_LO16": {reflect.TypeOf(q.R_MIPS_LO16), constant.MakeInt64(int64(q.R_MIPS_LO16))}, + "R_MIPS_NONE": {reflect.TypeOf(q.R_MIPS_NONE), constant.MakeInt64(int64(q.R_MIPS_NONE))}, + "R_MIPS_PC16": {reflect.TypeOf(q.R_MIPS_PC16), constant.MakeInt64(int64(q.R_MIPS_PC16))}, + "R_MIPS_PC32": {reflect.TypeOf(q.R_MIPS_PC32), constant.MakeInt64(int64(q.R_MIPS_PC32))}, + "R_MIPS_PJUMP": {reflect.TypeOf(q.R_MIPS_PJUMP), constant.MakeInt64(int64(q.R_MIPS_PJUMP))}, + "R_MIPS_REL16": {reflect.TypeOf(q.R_MIPS_REL16), constant.MakeInt64(int64(q.R_MIPS_REL16))}, + "R_MIPS_REL32": {reflect.TypeOf(q.R_MIPS_REL32), constant.MakeInt64(int64(q.R_MIPS_REL32))}, + "R_MIPS_RELGOT": {reflect.TypeOf(q.R_MIPS_RELGOT), constant.MakeInt64(int64(q.R_MIPS_RELGOT))}, + "R_MIPS_SCN_DISP": {reflect.TypeOf(q.R_MIPS_SCN_DISP), constant.MakeInt64(int64(q.R_MIPS_SCN_DISP))}, + "R_MIPS_SHIFT5": {reflect.TypeOf(q.R_MIPS_SHIFT5), constant.MakeInt64(int64(q.R_MIPS_SHIFT5))}, + "R_MIPS_SHIFT6": {reflect.TypeOf(q.R_MIPS_SHIFT6), constant.MakeInt64(int64(q.R_MIPS_SHIFT6))}, + "R_MIPS_SUB": {reflect.TypeOf(q.R_MIPS_SUB), constant.MakeInt64(int64(q.R_MIPS_SUB))}, + "R_MIPS_TLS_DTPMOD32": {reflect.TypeOf(q.R_MIPS_TLS_DTPMOD32), constant.MakeInt64(int64(q.R_MIPS_TLS_DTPMOD32))}, + "R_MIPS_TLS_DTPMOD64": {reflect.TypeOf(q.R_MIPS_TLS_DTPMOD64), constant.MakeInt64(int64(q.R_MIPS_TLS_DTPMOD64))}, + "R_MIPS_TLS_DTPREL32": {reflect.TypeOf(q.R_MIPS_TLS_DTPREL32), constant.MakeInt64(int64(q.R_MIPS_TLS_DTPREL32))}, + "R_MIPS_TLS_DTPREL64": {reflect.TypeOf(q.R_MIPS_TLS_DTPREL64), constant.MakeInt64(int64(q.R_MIPS_TLS_DTPREL64))}, + "R_MIPS_TLS_DTPREL_HI16": {reflect.TypeOf(q.R_MIPS_TLS_DTPREL_HI16), constant.MakeInt64(int64(q.R_MIPS_TLS_DTPREL_HI16))}, + "R_MIPS_TLS_DTPREL_LO16": {reflect.TypeOf(q.R_MIPS_TLS_DTPREL_LO16), constant.MakeInt64(int64(q.R_MIPS_TLS_DTPREL_LO16))}, + "R_MIPS_TLS_GD": {reflect.TypeOf(q.R_MIPS_TLS_GD), constant.MakeInt64(int64(q.R_MIPS_TLS_GD))}, + "R_MIPS_TLS_GOTTPREL": {reflect.TypeOf(q.R_MIPS_TLS_GOTTPREL), constant.MakeInt64(int64(q.R_MIPS_TLS_GOTTPREL))}, + "R_MIPS_TLS_LDM": {reflect.TypeOf(q.R_MIPS_TLS_LDM), constant.MakeInt64(int64(q.R_MIPS_TLS_LDM))}, + "R_MIPS_TLS_TPREL32": {reflect.TypeOf(q.R_MIPS_TLS_TPREL32), constant.MakeInt64(int64(q.R_MIPS_TLS_TPREL32))}, + "R_MIPS_TLS_TPREL64": {reflect.TypeOf(q.R_MIPS_TLS_TPREL64), constant.MakeInt64(int64(q.R_MIPS_TLS_TPREL64))}, + "R_MIPS_TLS_TPREL_HI16": {reflect.TypeOf(q.R_MIPS_TLS_TPREL_HI16), constant.MakeInt64(int64(q.R_MIPS_TLS_TPREL_HI16))}, + "R_MIPS_TLS_TPREL_LO16": {reflect.TypeOf(q.R_MIPS_TLS_TPREL_LO16), constant.MakeInt64(int64(q.R_MIPS_TLS_TPREL_LO16))}, + "R_PPC64_ADDR14": {reflect.TypeOf(q.R_PPC64_ADDR14), constant.MakeInt64(int64(q.R_PPC64_ADDR14))}, + "R_PPC64_ADDR14_BRNTAKEN": {reflect.TypeOf(q.R_PPC64_ADDR14_BRNTAKEN), constant.MakeInt64(int64(q.R_PPC64_ADDR14_BRNTAKEN))}, + "R_PPC64_ADDR14_BRTAKEN": {reflect.TypeOf(q.R_PPC64_ADDR14_BRTAKEN), constant.MakeInt64(int64(q.R_PPC64_ADDR14_BRTAKEN))}, + "R_PPC64_ADDR16": {reflect.TypeOf(q.R_PPC64_ADDR16), constant.MakeInt64(int64(q.R_PPC64_ADDR16))}, + "R_PPC64_ADDR16_DS": {reflect.TypeOf(q.R_PPC64_ADDR16_DS), constant.MakeInt64(int64(q.R_PPC64_ADDR16_DS))}, + "R_PPC64_ADDR16_HA": {reflect.TypeOf(q.R_PPC64_ADDR16_HA), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HA))}, + "R_PPC64_ADDR16_HI": {reflect.TypeOf(q.R_PPC64_ADDR16_HI), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HI))}, + "R_PPC64_ADDR16_HIGH": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGH), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGH))}, + "R_PPC64_ADDR16_HIGHA": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGHA), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGHA))}, + "R_PPC64_ADDR16_HIGHER": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGHER), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGHER))}, + "R_PPC64_ADDR16_HIGHER34": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGHER34), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGHER34))}, + "R_PPC64_ADDR16_HIGHERA": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGHERA), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGHERA))}, + "R_PPC64_ADDR16_HIGHERA34": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGHERA34), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGHERA34))}, + "R_PPC64_ADDR16_HIGHEST": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGHEST), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGHEST))}, + "R_PPC64_ADDR16_HIGHEST34": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGHEST34), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGHEST34))}, + "R_PPC64_ADDR16_HIGHESTA": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGHESTA), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGHESTA))}, + "R_PPC64_ADDR16_HIGHESTA34": {reflect.TypeOf(q.R_PPC64_ADDR16_HIGHESTA34), constant.MakeInt64(int64(q.R_PPC64_ADDR16_HIGHESTA34))}, + "R_PPC64_ADDR16_LO": {reflect.TypeOf(q.R_PPC64_ADDR16_LO), constant.MakeInt64(int64(q.R_PPC64_ADDR16_LO))}, + "R_PPC64_ADDR16_LO_DS": {reflect.TypeOf(q.R_PPC64_ADDR16_LO_DS), constant.MakeInt64(int64(q.R_PPC64_ADDR16_LO_DS))}, + "R_PPC64_ADDR24": {reflect.TypeOf(q.R_PPC64_ADDR24), constant.MakeInt64(int64(q.R_PPC64_ADDR24))}, + "R_PPC64_ADDR32": {reflect.TypeOf(q.R_PPC64_ADDR32), constant.MakeInt64(int64(q.R_PPC64_ADDR32))}, + "R_PPC64_ADDR64": {reflect.TypeOf(q.R_PPC64_ADDR64), constant.MakeInt64(int64(q.R_PPC64_ADDR64))}, + "R_PPC64_ADDR64_LOCAL": {reflect.TypeOf(q.R_PPC64_ADDR64_LOCAL), constant.MakeInt64(int64(q.R_PPC64_ADDR64_LOCAL))}, + "R_PPC64_COPY": {reflect.TypeOf(q.R_PPC64_COPY), constant.MakeInt64(int64(q.R_PPC64_COPY))}, + "R_PPC64_D28": {reflect.TypeOf(q.R_PPC64_D28), constant.MakeInt64(int64(q.R_PPC64_D28))}, + "R_PPC64_D34": {reflect.TypeOf(q.R_PPC64_D34), constant.MakeInt64(int64(q.R_PPC64_D34))}, + "R_PPC64_D34_HA30": {reflect.TypeOf(q.R_PPC64_D34_HA30), constant.MakeInt64(int64(q.R_PPC64_D34_HA30))}, + "R_PPC64_D34_HI30": {reflect.TypeOf(q.R_PPC64_D34_HI30), constant.MakeInt64(int64(q.R_PPC64_D34_HI30))}, + "R_PPC64_D34_LO": {reflect.TypeOf(q.R_PPC64_D34_LO), constant.MakeInt64(int64(q.R_PPC64_D34_LO))}, + "R_PPC64_DTPMOD64": {reflect.TypeOf(q.R_PPC64_DTPMOD64), constant.MakeInt64(int64(q.R_PPC64_DTPMOD64))}, + "R_PPC64_DTPREL16": {reflect.TypeOf(q.R_PPC64_DTPREL16), constant.MakeInt64(int64(q.R_PPC64_DTPREL16))}, + "R_PPC64_DTPREL16_DS": {reflect.TypeOf(q.R_PPC64_DTPREL16_DS), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_DS))}, + "R_PPC64_DTPREL16_HA": {reflect.TypeOf(q.R_PPC64_DTPREL16_HA), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_HA))}, + "R_PPC64_DTPREL16_HI": {reflect.TypeOf(q.R_PPC64_DTPREL16_HI), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_HI))}, + "R_PPC64_DTPREL16_HIGH": {reflect.TypeOf(q.R_PPC64_DTPREL16_HIGH), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_HIGH))}, + "R_PPC64_DTPREL16_HIGHA": {reflect.TypeOf(q.R_PPC64_DTPREL16_HIGHA), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_HIGHA))}, + "R_PPC64_DTPREL16_HIGHER": {reflect.TypeOf(q.R_PPC64_DTPREL16_HIGHER), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_HIGHER))}, + "R_PPC64_DTPREL16_HIGHERA": {reflect.TypeOf(q.R_PPC64_DTPREL16_HIGHERA), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_HIGHERA))}, + "R_PPC64_DTPREL16_HIGHEST": {reflect.TypeOf(q.R_PPC64_DTPREL16_HIGHEST), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_HIGHEST))}, + "R_PPC64_DTPREL16_HIGHESTA": {reflect.TypeOf(q.R_PPC64_DTPREL16_HIGHESTA), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_HIGHESTA))}, + "R_PPC64_DTPREL16_LO": {reflect.TypeOf(q.R_PPC64_DTPREL16_LO), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_LO))}, + "R_PPC64_DTPREL16_LO_DS": {reflect.TypeOf(q.R_PPC64_DTPREL16_LO_DS), constant.MakeInt64(int64(q.R_PPC64_DTPREL16_LO_DS))}, + "R_PPC64_DTPREL34": {reflect.TypeOf(q.R_PPC64_DTPREL34), constant.MakeInt64(int64(q.R_PPC64_DTPREL34))}, + "R_PPC64_DTPREL64": {reflect.TypeOf(q.R_PPC64_DTPREL64), constant.MakeInt64(int64(q.R_PPC64_DTPREL64))}, + "R_PPC64_ENTRY": {reflect.TypeOf(q.R_PPC64_ENTRY), constant.MakeInt64(int64(q.R_PPC64_ENTRY))}, + "R_PPC64_GLOB_DAT": {reflect.TypeOf(q.R_PPC64_GLOB_DAT), constant.MakeInt64(int64(q.R_PPC64_GLOB_DAT))}, + "R_PPC64_GNU_VTENTRY": {reflect.TypeOf(q.R_PPC64_GNU_VTENTRY), constant.MakeInt64(int64(q.R_PPC64_GNU_VTENTRY))}, + "R_PPC64_GNU_VTINHERIT": {reflect.TypeOf(q.R_PPC64_GNU_VTINHERIT), constant.MakeInt64(int64(q.R_PPC64_GNU_VTINHERIT))}, + "R_PPC64_GOT16": {reflect.TypeOf(q.R_PPC64_GOT16), constant.MakeInt64(int64(q.R_PPC64_GOT16))}, + "R_PPC64_GOT16_DS": {reflect.TypeOf(q.R_PPC64_GOT16_DS), constant.MakeInt64(int64(q.R_PPC64_GOT16_DS))}, + "R_PPC64_GOT16_HA": {reflect.TypeOf(q.R_PPC64_GOT16_HA), constant.MakeInt64(int64(q.R_PPC64_GOT16_HA))}, + "R_PPC64_GOT16_HI": {reflect.TypeOf(q.R_PPC64_GOT16_HI), constant.MakeInt64(int64(q.R_PPC64_GOT16_HI))}, + "R_PPC64_GOT16_LO": {reflect.TypeOf(q.R_PPC64_GOT16_LO), constant.MakeInt64(int64(q.R_PPC64_GOT16_LO))}, + "R_PPC64_GOT16_LO_DS": {reflect.TypeOf(q.R_PPC64_GOT16_LO_DS), constant.MakeInt64(int64(q.R_PPC64_GOT16_LO_DS))}, + "R_PPC64_GOT_DTPREL16_DS": {reflect.TypeOf(q.R_PPC64_GOT_DTPREL16_DS), constant.MakeInt64(int64(q.R_PPC64_GOT_DTPREL16_DS))}, + "R_PPC64_GOT_DTPREL16_HA": {reflect.TypeOf(q.R_PPC64_GOT_DTPREL16_HA), constant.MakeInt64(int64(q.R_PPC64_GOT_DTPREL16_HA))}, + "R_PPC64_GOT_DTPREL16_HI": {reflect.TypeOf(q.R_PPC64_GOT_DTPREL16_HI), constant.MakeInt64(int64(q.R_PPC64_GOT_DTPREL16_HI))}, + "R_PPC64_GOT_DTPREL16_LO_DS": {reflect.TypeOf(q.R_PPC64_GOT_DTPREL16_LO_DS), constant.MakeInt64(int64(q.R_PPC64_GOT_DTPREL16_LO_DS))}, + "R_PPC64_GOT_DTPREL_PCREL34": {reflect.TypeOf(q.R_PPC64_GOT_DTPREL_PCREL34), constant.MakeInt64(int64(q.R_PPC64_GOT_DTPREL_PCREL34))}, + "R_PPC64_GOT_PCREL34": {reflect.TypeOf(q.R_PPC64_GOT_PCREL34), constant.MakeInt64(int64(q.R_PPC64_GOT_PCREL34))}, + "R_PPC64_GOT_TLSGD16": {reflect.TypeOf(q.R_PPC64_GOT_TLSGD16), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSGD16))}, + "R_PPC64_GOT_TLSGD16_HA": {reflect.TypeOf(q.R_PPC64_GOT_TLSGD16_HA), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSGD16_HA))}, + "R_PPC64_GOT_TLSGD16_HI": {reflect.TypeOf(q.R_PPC64_GOT_TLSGD16_HI), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSGD16_HI))}, + "R_PPC64_GOT_TLSGD16_LO": {reflect.TypeOf(q.R_PPC64_GOT_TLSGD16_LO), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSGD16_LO))}, + "R_PPC64_GOT_TLSGD_PCREL34": {reflect.TypeOf(q.R_PPC64_GOT_TLSGD_PCREL34), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSGD_PCREL34))}, + "R_PPC64_GOT_TLSLD16": {reflect.TypeOf(q.R_PPC64_GOT_TLSLD16), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSLD16))}, + "R_PPC64_GOT_TLSLD16_HA": {reflect.TypeOf(q.R_PPC64_GOT_TLSLD16_HA), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSLD16_HA))}, + "R_PPC64_GOT_TLSLD16_HI": {reflect.TypeOf(q.R_PPC64_GOT_TLSLD16_HI), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSLD16_HI))}, + "R_PPC64_GOT_TLSLD16_LO": {reflect.TypeOf(q.R_PPC64_GOT_TLSLD16_LO), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSLD16_LO))}, + "R_PPC64_GOT_TLSLD_PCREL34": {reflect.TypeOf(q.R_PPC64_GOT_TLSLD_PCREL34), constant.MakeInt64(int64(q.R_PPC64_GOT_TLSLD_PCREL34))}, + "R_PPC64_GOT_TPREL16_DS": {reflect.TypeOf(q.R_PPC64_GOT_TPREL16_DS), constant.MakeInt64(int64(q.R_PPC64_GOT_TPREL16_DS))}, + "R_PPC64_GOT_TPREL16_HA": {reflect.TypeOf(q.R_PPC64_GOT_TPREL16_HA), constant.MakeInt64(int64(q.R_PPC64_GOT_TPREL16_HA))}, + "R_PPC64_GOT_TPREL16_HI": {reflect.TypeOf(q.R_PPC64_GOT_TPREL16_HI), constant.MakeInt64(int64(q.R_PPC64_GOT_TPREL16_HI))}, + "R_PPC64_GOT_TPREL16_LO_DS": {reflect.TypeOf(q.R_PPC64_GOT_TPREL16_LO_DS), constant.MakeInt64(int64(q.R_PPC64_GOT_TPREL16_LO_DS))}, + "R_PPC64_GOT_TPREL_PCREL34": {reflect.TypeOf(q.R_PPC64_GOT_TPREL_PCREL34), constant.MakeInt64(int64(q.R_PPC64_GOT_TPREL_PCREL34))}, + "R_PPC64_IRELATIVE": {reflect.TypeOf(q.R_PPC64_IRELATIVE), constant.MakeInt64(int64(q.R_PPC64_IRELATIVE))}, + "R_PPC64_JMP_IREL": {reflect.TypeOf(q.R_PPC64_JMP_IREL), constant.MakeInt64(int64(q.R_PPC64_JMP_IREL))}, + "R_PPC64_JMP_SLOT": {reflect.TypeOf(q.R_PPC64_JMP_SLOT), constant.MakeInt64(int64(q.R_PPC64_JMP_SLOT))}, + "R_PPC64_NONE": {reflect.TypeOf(q.R_PPC64_NONE), constant.MakeInt64(int64(q.R_PPC64_NONE))}, + "R_PPC64_PCREL28": {reflect.TypeOf(q.R_PPC64_PCREL28), constant.MakeInt64(int64(q.R_PPC64_PCREL28))}, + "R_PPC64_PCREL34": {reflect.TypeOf(q.R_PPC64_PCREL34), constant.MakeInt64(int64(q.R_PPC64_PCREL34))}, + "R_PPC64_PCREL_OPT": {reflect.TypeOf(q.R_PPC64_PCREL_OPT), constant.MakeInt64(int64(q.R_PPC64_PCREL_OPT))}, + "R_PPC64_PLT16_HA": {reflect.TypeOf(q.R_PPC64_PLT16_HA), constant.MakeInt64(int64(q.R_PPC64_PLT16_HA))}, + "R_PPC64_PLT16_HI": {reflect.TypeOf(q.R_PPC64_PLT16_HI), constant.MakeInt64(int64(q.R_PPC64_PLT16_HI))}, + "R_PPC64_PLT16_LO": {reflect.TypeOf(q.R_PPC64_PLT16_LO), constant.MakeInt64(int64(q.R_PPC64_PLT16_LO))}, + "R_PPC64_PLT16_LO_DS": {reflect.TypeOf(q.R_PPC64_PLT16_LO_DS), constant.MakeInt64(int64(q.R_PPC64_PLT16_LO_DS))}, + "R_PPC64_PLT32": {reflect.TypeOf(q.R_PPC64_PLT32), constant.MakeInt64(int64(q.R_PPC64_PLT32))}, + "R_PPC64_PLT64": {reflect.TypeOf(q.R_PPC64_PLT64), constant.MakeInt64(int64(q.R_PPC64_PLT64))}, + "R_PPC64_PLTCALL": {reflect.TypeOf(q.R_PPC64_PLTCALL), constant.MakeInt64(int64(q.R_PPC64_PLTCALL))}, + "R_PPC64_PLTCALL_NOTOC": {reflect.TypeOf(q.R_PPC64_PLTCALL_NOTOC), constant.MakeInt64(int64(q.R_PPC64_PLTCALL_NOTOC))}, + "R_PPC64_PLTGOT16": {reflect.TypeOf(q.R_PPC64_PLTGOT16), constant.MakeInt64(int64(q.R_PPC64_PLTGOT16))}, + "R_PPC64_PLTGOT16_DS": {reflect.TypeOf(q.R_PPC64_PLTGOT16_DS), constant.MakeInt64(int64(q.R_PPC64_PLTGOT16_DS))}, + "R_PPC64_PLTGOT16_HA": {reflect.TypeOf(q.R_PPC64_PLTGOT16_HA), constant.MakeInt64(int64(q.R_PPC64_PLTGOT16_HA))}, + "R_PPC64_PLTGOT16_HI": {reflect.TypeOf(q.R_PPC64_PLTGOT16_HI), constant.MakeInt64(int64(q.R_PPC64_PLTGOT16_HI))}, + "R_PPC64_PLTGOT16_LO": {reflect.TypeOf(q.R_PPC64_PLTGOT16_LO), constant.MakeInt64(int64(q.R_PPC64_PLTGOT16_LO))}, + "R_PPC64_PLTGOT_LO_DS": {reflect.TypeOf(q.R_PPC64_PLTGOT_LO_DS), constant.MakeInt64(int64(q.R_PPC64_PLTGOT_LO_DS))}, + "R_PPC64_PLTREL32": {reflect.TypeOf(q.R_PPC64_PLTREL32), constant.MakeInt64(int64(q.R_PPC64_PLTREL32))}, + "R_PPC64_PLTREL64": {reflect.TypeOf(q.R_PPC64_PLTREL64), constant.MakeInt64(int64(q.R_PPC64_PLTREL64))}, + "R_PPC64_PLTSEQ": {reflect.TypeOf(q.R_PPC64_PLTSEQ), constant.MakeInt64(int64(q.R_PPC64_PLTSEQ))}, + "R_PPC64_PLTSEQ_NOTOC": {reflect.TypeOf(q.R_PPC64_PLTSEQ_NOTOC), constant.MakeInt64(int64(q.R_PPC64_PLTSEQ_NOTOC))}, + "R_PPC64_PLT_PCREL34": {reflect.TypeOf(q.R_PPC64_PLT_PCREL34), constant.MakeInt64(int64(q.R_PPC64_PLT_PCREL34))}, + "R_PPC64_PLT_PCREL34_NOTOC": {reflect.TypeOf(q.R_PPC64_PLT_PCREL34_NOTOC), constant.MakeInt64(int64(q.R_PPC64_PLT_PCREL34_NOTOC))}, + "R_PPC64_REL14": {reflect.TypeOf(q.R_PPC64_REL14), constant.MakeInt64(int64(q.R_PPC64_REL14))}, + "R_PPC64_REL14_BRNTAKEN": {reflect.TypeOf(q.R_PPC64_REL14_BRNTAKEN), constant.MakeInt64(int64(q.R_PPC64_REL14_BRNTAKEN))}, + "R_PPC64_REL14_BRTAKEN": {reflect.TypeOf(q.R_PPC64_REL14_BRTAKEN), constant.MakeInt64(int64(q.R_PPC64_REL14_BRTAKEN))}, + "R_PPC64_REL16": {reflect.TypeOf(q.R_PPC64_REL16), constant.MakeInt64(int64(q.R_PPC64_REL16))}, + "R_PPC64_REL16DX_HA": {reflect.TypeOf(q.R_PPC64_REL16DX_HA), constant.MakeInt64(int64(q.R_PPC64_REL16DX_HA))}, + "R_PPC64_REL16_HA": {reflect.TypeOf(q.R_PPC64_REL16_HA), constant.MakeInt64(int64(q.R_PPC64_REL16_HA))}, + "R_PPC64_REL16_HI": {reflect.TypeOf(q.R_PPC64_REL16_HI), constant.MakeInt64(int64(q.R_PPC64_REL16_HI))}, + "R_PPC64_REL16_HIGH": {reflect.TypeOf(q.R_PPC64_REL16_HIGH), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGH))}, + "R_PPC64_REL16_HIGHA": {reflect.TypeOf(q.R_PPC64_REL16_HIGHA), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGHA))}, + "R_PPC64_REL16_HIGHER": {reflect.TypeOf(q.R_PPC64_REL16_HIGHER), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGHER))}, + "R_PPC64_REL16_HIGHER34": {reflect.TypeOf(q.R_PPC64_REL16_HIGHER34), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGHER34))}, + "R_PPC64_REL16_HIGHERA": {reflect.TypeOf(q.R_PPC64_REL16_HIGHERA), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGHERA))}, + "R_PPC64_REL16_HIGHERA34": {reflect.TypeOf(q.R_PPC64_REL16_HIGHERA34), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGHERA34))}, + "R_PPC64_REL16_HIGHEST": {reflect.TypeOf(q.R_PPC64_REL16_HIGHEST), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGHEST))}, + "R_PPC64_REL16_HIGHEST34": {reflect.TypeOf(q.R_PPC64_REL16_HIGHEST34), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGHEST34))}, + "R_PPC64_REL16_HIGHESTA": {reflect.TypeOf(q.R_PPC64_REL16_HIGHESTA), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGHESTA))}, + "R_PPC64_REL16_HIGHESTA34": {reflect.TypeOf(q.R_PPC64_REL16_HIGHESTA34), constant.MakeInt64(int64(q.R_PPC64_REL16_HIGHESTA34))}, + "R_PPC64_REL16_LO": {reflect.TypeOf(q.R_PPC64_REL16_LO), constant.MakeInt64(int64(q.R_PPC64_REL16_LO))}, + "R_PPC64_REL24": {reflect.TypeOf(q.R_PPC64_REL24), constant.MakeInt64(int64(q.R_PPC64_REL24))}, + "R_PPC64_REL24_NOTOC": {reflect.TypeOf(q.R_PPC64_REL24_NOTOC), constant.MakeInt64(int64(q.R_PPC64_REL24_NOTOC))}, + "R_PPC64_REL24_P9NOTOC": {reflect.TypeOf(q.R_PPC64_REL24_P9NOTOC), constant.MakeInt64(int64(q.R_PPC64_REL24_P9NOTOC))}, + "R_PPC64_REL30": {reflect.TypeOf(q.R_PPC64_REL30), constant.MakeInt64(int64(q.R_PPC64_REL30))}, + "R_PPC64_REL32": {reflect.TypeOf(q.R_PPC64_REL32), constant.MakeInt64(int64(q.R_PPC64_REL32))}, + "R_PPC64_REL64": {reflect.TypeOf(q.R_PPC64_REL64), constant.MakeInt64(int64(q.R_PPC64_REL64))}, + "R_PPC64_RELATIVE": {reflect.TypeOf(q.R_PPC64_RELATIVE), constant.MakeInt64(int64(q.R_PPC64_RELATIVE))}, + "R_PPC64_SECTOFF": {reflect.TypeOf(q.R_PPC64_SECTOFF), constant.MakeInt64(int64(q.R_PPC64_SECTOFF))}, + "R_PPC64_SECTOFF_DS": {reflect.TypeOf(q.R_PPC64_SECTOFF_DS), constant.MakeInt64(int64(q.R_PPC64_SECTOFF_DS))}, + "R_PPC64_SECTOFF_HA": {reflect.TypeOf(q.R_PPC64_SECTOFF_HA), constant.MakeInt64(int64(q.R_PPC64_SECTOFF_HA))}, + "R_PPC64_SECTOFF_HI": {reflect.TypeOf(q.R_PPC64_SECTOFF_HI), constant.MakeInt64(int64(q.R_PPC64_SECTOFF_HI))}, + "R_PPC64_SECTOFF_LO": {reflect.TypeOf(q.R_PPC64_SECTOFF_LO), constant.MakeInt64(int64(q.R_PPC64_SECTOFF_LO))}, + "R_PPC64_SECTOFF_LO_DS": {reflect.TypeOf(q.R_PPC64_SECTOFF_LO_DS), constant.MakeInt64(int64(q.R_PPC64_SECTOFF_LO_DS))}, + "R_PPC64_TLS": {reflect.TypeOf(q.R_PPC64_TLS), constant.MakeInt64(int64(q.R_PPC64_TLS))}, + "R_PPC64_TLSGD": {reflect.TypeOf(q.R_PPC64_TLSGD), constant.MakeInt64(int64(q.R_PPC64_TLSGD))}, + "R_PPC64_TLSLD": {reflect.TypeOf(q.R_PPC64_TLSLD), constant.MakeInt64(int64(q.R_PPC64_TLSLD))}, + "R_PPC64_TOC": {reflect.TypeOf(q.R_PPC64_TOC), constant.MakeInt64(int64(q.R_PPC64_TOC))}, + "R_PPC64_TOC16": {reflect.TypeOf(q.R_PPC64_TOC16), constant.MakeInt64(int64(q.R_PPC64_TOC16))}, + "R_PPC64_TOC16_DS": {reflect.TypeOf(q.R_PPC64_TOC16_DS), constant.MakeInt64(int64(q.R_PPC64_TOC16_DS))}, + "R_PPC64_TOC16_HA": {reflect.TypeOf(q.R_PPC64_TOC16_HA), constant.MakeInt64(int64(q.R_PPC64_TOC16_HA))}, + "R_PPC64_TOC16_HI": {reflect.TypeOf(q.R_PPC64_TOC16_HI), constant.MakeInt64(int64(q.R_PPC64_TOC16_HI))}, + "R_PPC64_TOC16_LO": {reflect.TypeOf(q.R_PPC64_TOC16_LO), constant.MakeInt64(int64(q.R_PPC64_TOC16_LO))}, + "R_PPC64_TOC16_LO_DS": {reflect.TypeOf(q.R_PPC64_TOC16_LO_DS), constant.MakeInt64(int64(q.R_PPC64_TOC16_LO_DS))}, + "R_PPC64_TOCSAVE": {reflect.TypeOf(q.R_PPC64_TOCSAVE), constant.MakeInt64(int64(q.R_PPC64_TOCSAVE))}, + "R_PPC64_TPREL16": {reflect.TypeOf(q.R_PPC64_TPREL16), constant.MakeInt64(int64(q.R_PPC64_TPREL16))}, + "R_PPC64_TPREL16_DS": {reflect.TypeOf(q.R_PPC64_TPREL16_DS), constant.MakeInt64(int64(q.R_PPC64_TPREL16_DS))}, + "R_PPC64_TPREL16_HA": {reflect.TypeOf(q.R_PPC64_TPREL16_HA), constant.MakeInt64(int64(q.R_PPC64_TPREL16_HA))}, + "R_PPC64_TPREL16_HI": {reflect.TypeOf(q.R_PPC64_TPREL16_HI), constant.MakeInt64(int64(q.R_PPC64_TPREL16_HI))}, + "R_PPC64_TPREL16_HIGH": {reflect.TypeOf(q.R_PPC64_TPREL16_HIGH), constant.MakeInt64(int64(q.R_PPC64_TPREL16_HIGH))}, + "R_PPC64_TPREL16_HIGHA": {reflect.TypeOf(q.R_PPC64_TPREL16_HIGHA), constant.MakeInt64(int64(q.R_PPC64_TPREL16_HIGHA))}, + "R_PPC64_TPREL16_HIGHER": {reflect.TypeOf(q.R_PPC64_TPREL16_HIGHER), constant.MakeInt64(int64(q.R_PPC64_TPREL16_HIGHER))}, + "R_PPC64_TPREL16_HIGHERA": {reflect.TypeOf(q.R_PPC64_TPREL16_HIGHERA), constant.MakeInt64(int64(q.R_PPC64_TPREL16_HIGHERA))}, + "R_PPC64_TPREL16_HIGHEST": {reflect.TypeOf(q.R_PPC64_TPREL16_HIGHEST), constant.MakeInt64(int64(q.R_PPC64_TPREL16_HIGHEST))}, + "R_PPC64_TPREL16_HIGHESTA": {reflect.TypeOf(q.R_PPC64_TPREL16_HIGHESTA), constant.MakeInt64(int64(q.R_PPC64_TPREL16_HIGHESTA))}, + "R_PPC64_TPREL16_LO": {reflect.TypeOf(q.R_PPC64_TPREL16_LO), constant.MakeInt64(int64(q.R_PPC64_TPREL16_LO))}, + "R_PPC64_TPREL16_LO_DS": {reflect.TypeOf(q.R_PPC64_TPREL16_LO_DS), constant.MakeInt64(int64(q.R_PPC64_TPREL16_LO_DS))}, + "R_PPC64_TPREL34": {reflect.TypeOf(q.R_PPC64_TPREL34), constant.MakeInt64(int64(q.R_PPC64_TPREL34))}, + "R_PPC64_TPREL64": {reflect.TypeOf(q.R_PPC64_TPREL64), constant.MakeInt64(int64(q.R_PPC64_TPREL64))}, + "R_PPC64_UADDR16": {reflect.TypeOf(q.R_PPC64_UADDR16), constant.MakeInt64(int64(q.R_PPC64_UADDR16))}, + "R_PPC64_UADDR32": {reflect.TypeOf(q.R_PPC64_UADDR32), constant.MakeInt64(int64(q.R_PPC64_UADDR32))}, + "R_PPC64_UADDR64": {reflect.TypeOf(q.R_PPC64_UADDR64), constant.MakeInt64(int64(q.R_PPC64_UADDR64))}, + "R_PPC_ADDR14": {reflect.TypeOf(q.R_PPC_ADDR14), constant.MakeInt64(int64(q.R_PPC_ADDR14))}, + "R_PPC_ADDR14_BRNTAKEN": {reflect.TypeOf(q.R_PPC_ADDR14_BRNTAKEN), constant.MakeInt64(int64(q.R_PPC_ADDR14_BRNTAKEN))}, + "R_PPC_ADDR14_BRTAKEN": {reflect.TypeOf(q.R_PPC_ADDR14_BRTAKEN), constant.MakeInt64(int64(q.R_PPC_ADDR14_BRTAKEN))}, + "R_PPC_ADDR16": {reflect.TypeOf(q.R_PPC_ADDR16), constant.MakeInt64(int64(q.R_PPC_ADDR16))}, + "R_PPC_ADDR16_HA": {reflect.TypeOf(q.R_PPC_ADDR16_HA), constant.MakeInt64(int64(q.R_PPC_ADDR16_HA))}, + "R_PPC_ADDR16_HI": {reflect.TypeOf(q.R_PPC_ADDR16_HI), constant.MakeInt64(int64(q.R_PPC_ADDR16_HI))}, + "R_PPC_ADDR16_LO": {reflect.TypeOf(q.R_PPC_ADDR16_LO), constant.MakeInt64(int64(q.R_PPC_ADDR16_LO))}, + "R_PPC_ADDR24": {reflect.TypeOf(q.R_PPC_ADDR24), constant.MakeInt64(int64(q.R_PPC_ADDR24))}, + "R_PPC_ADDR32": {reflect.TypeOf(q.R_PPC_ADDR32), constant.MakeInt64(int64(q.R_PPC_ADDR32))}, + "R_PPC_COPY": {reflect.TypeOf(q.R_PPC_COPY), constant.MakeInt64(int64(q.R_PPC_COPY))}, + "R_PPC_DTPMOD32": {reflect.TypeOf(q.R_PPC_DTPMOD32), constant.MakeInt64(int64(q.R_PPC_DTPMOD32))}, + "R_PPC_DTPREL16": {reflect.TypeOf(q.R_PPC_DTPREL16), constant.MakeInt64(int64(q.R_PPC_DTPREL16))}, + "R_PPC_DTPREL16_HA": {reflect.TypeOf(q.R_PPC_DTPREL16_HA), constant.MakeInt64(int64(q.R_PPC_DTPREL16_HA))}, + "R_PPC_DTPREL16_HI": {reflect.TypeOf(q.R_PPC_DTPREL16_HI), constant.MakeInt64(int64(q.R_PPC_DTPREL16_HI))}, + "R_PPC_DTPREL16_LO": {reflect.TypeOf(q.R_PPC_DTPREL16_LO), constant.MakeInt64(int64(q.R_PPC_DTPREL16_LO))}, + "R_PPC_DTPREL32": {reflect.TypeOf(q.R_PPC_DTPREL32), constant.MakeInt64(int64(q.R_PPC_DTPREL32))}, + "R_PPC_EMB_BIT_FLD": {reflect.TypeOf(q.R_PPC_EMB_BIT_FLD), constant.MakeInt64(int64(q.R_PPC_EMB_BIT_FLD))}, + "R_PPC_EMB_MRKREF": {reflect.TypeOf(q.R_PPC_EMB_MRKREF), constant.MakeInt64(int64(q.R_PPC_EMB_MRKREF))}, + "R_PPC_EMB_NADDR16": {reflect.TypeOf(q.R_PPC_EMB_NADDR16), constant.MakeInt64(int64(q.R_PPC_EMB_NADDR16))}, + "R_PPC_EMB_NADDR16_HA": {reflect.TypeOf(q.R_PPC_EMB_NADDR16_HA), constant.MakeInt64(int64(q.R_PPC_EMB_NADDR16_HA))}, + "R_PPC_EMB_NADDR16_HI": {reflect.TypeOf(q.R_PPC_EMB_NADDR16_HI), constant.MakeInt64(int64(q.R_PPC_EMB_NADDR16_HI))}, + "R_PPC_EMB_NADDR16_LO": {reflect.TypeOf(q.R_PPC_EMB_NADDR16_LO), constant.MakeInt64(int64(q.R_PPC_EMB_NADDR16_LO))}, + "R_PPC_EMB_NADDR32": {reflect.TypeOf(q.R_PPC_EMB_NADDR32), constant.MakeInt64(int64(q.R_PPC_EMB_NADDR32))}, + "R_PPC_EMB_RELSDA": {reflect.TypeOf(q.R_PPC_EMB_RELSDA), constant.MakeInt64(int64(q.R_PPC_EMB_RELSDA))}, + "R_PPC_EMB_RELSEC16": {reflect.TypeOf(q.R_PPC_EMB_RELSEC16), constant.MakeInt64(int64(q.R_PPC_EMB_RELSEC16))}, + "R_PPC_EMB_RELST_HA": {reflect.TypeOf(q.R_PPC_EMB_RELST_HA), constant.MakeInt64(int64(q.R_PPC_EMB_RELST_HA))}, + "R_PPC_EMB_RELST_HI": {reflect.TypeOf(q.R_PPC_EMB_RELST_HI), constant.MakeInt64(int64(q.R_PPC_EMB_RELST_HI))}, + "R_PPC_EMB_RELST_LO": {reflect.TypeOf(q.R_PPC_EMB_RELST_LO), constant.MakeInt64(int64(q.R_PPC_EMB_RELST_LO))}, + "R_PPC_EMB_SDA21": {reflect.TypeOf(q.R_PPC_EMB_SDA21), constant.MakeInt64(int64(q.R_PPC_EMB_SDA21))}, + "R_PPC_EMB_SDA2I16": {reflect.TypeOf(q.R_PPC_EMB_SDA2I16), constant.MakeInt64(int64(q.R_PPC_EMB_SDA2I16))}, + "R_PPC_EMB_SDA2REL": {reflect.TypeOf(q.R_PPC_EMB_SDA2REL), constant.MakeInt64(int64(q.R_PPC_EMB_SDA2REL))}, + "R_PPC_EMB_SDAI16": {reflect.TypeOf(q.R_PPC_EMB_SDAI16), constant.MakeInt64(int64(q.R_PPC_EMB_SDAI16))}, + "R_PPC_GLOB_DAT": {reflect.TypeOf(q.R_PPC_GLOB_DAT), constant.MakeInt64(int64(q.R_PPC_GLOB_DAT))}, + "R_PPC_GOT16": {reflect.TypeOf(q.R_PPC_GOT16), constant.MakeInt64(int64(q.R_PPC_GOT16))}, + "R_PPC_GOT16_HA": {reflect.TypeOf(q.R_PPC_GOT16_HA), constant.MakeInt64(int64(q.R_PPC_GOT16_HA))}, + "R_PPC_GOT16_HI": {reflect.TypeOf(q.R_PPC_GOT16_HI), constant.MakeInt64(int64(q.R_PPC_GOT16_HI))}, + "R_PPC_GOT16_LO": {reflect.TypeOf(q.R_PPC_GOT16_LO), constant.MakeInt64(int64(q.R_PPC_GOT16_LO))}, + "R_PPC_GOT_TLSGD16": {reflect.TypeOf(q.R_PPC_GOT_TLSGD16), constant.MakeInt64(int64(q.R_PPC_GOT_TLSGD16))}, + "R_PPC_GOT_TLSGD16_HA": {reflect.TypeOf(q.R_PPC_GOT_TLSGD16_HA), constant.MakeInt64(int64(q.R_PPC_GOT_TLSGD16_HA))}, + "R_PPC_GOT_TLSGD16_HI": {reflect.TypeOf(q.R_PPC_GOT_TLSGD16_HI), constant.MakeInt64(int64(q.R_PPC_GOT_TLSGD16_HI))}, + "R_PPC_GOT_TLSGD16_LO": {reflect.TypeOf(q.R_PPC_GOT_TLSGD16_LO), constant.MakeInt64(int64(q.R_PPC_GOT_TLSGD16_LO))}, + "R_PPC_GOT_TLSLD16": {reflect.TypeOf(q.R_PPC_GOT_TLSLD16), constant.MakeInt64(int64(q.R_PPC_GOT_TLSLD16))}, + "R_PPC_GOT_TLSLD16_HA": {reflect.TypeOf(q.R_PPC_GOT_TLSLD16_HA), constant.MakeInt64(int64(q.R_PPC_GOT_TLSLD16_HA))}, + "R_PPC_GOT_TLSLD16_HI": {reflect.TypeOf(q.R_PPC_GOT_TLSLD16_HI), constant.MakeInt64(int64(q.R_PPC_GOT_TLSLD16_HI))}, + "R_PPC_GOT_TLSLD16_LO": {reflect.TypeOf(q.R_PPC_GOT_TLSLD16_LO), constant.MakeInt64(int64(q.R_PPC_GOT_TLSLD16_LO))}, + "R_PPC_GOT_TPREL16": {reflect.TypeOf(q.R_PPC_GOT_TPREL16), constant.MakeInt64(int64(q.R_PPC_GOT_TPREL16))}, + "R_PPC_GOT_TPREL16_HA": {reflect.TypeOf(q.R_PPC_GOT_TPREL16_HA), constant.MakeInt64(int64(q.R_PPC_GOT_TPREL16_HA))}, + "R_PPC_GOT_TPREL16_HI": {reflect.TypeOf(q.R_PPC_GOT_TPREL16_HI), constant.MakeInt64(int64(q.R_PPC_GOT_TPREL16_HI))}, + "R_PPC_GOT_TPREL16_LO": {reflect.TypeOf(q.R_PPC_GOT_TPREL16_LO), constant.MakeInt64(int64(q.R_PPC_GOT_TPREL16_LO))}, + "R_PPC_JMP_SLOT": {reflect.TypeOf(q.R_PPC_JMP_SLOT), constant.MakeInt64(int64(q.R_PPC_JMP_SLOT))}, + "R_PPC_LOCAL24PC": {reflect.TypeOf(q.R_PPC_LOCAL24PC), constant.MakeInt64(int64(q.R_PPC_LOCAL24PC))}, + "R_PPC_NONE": {reflect.TypeOf(q.R_PPC_NONE), constant.MakeInt64(int64(q.R_PPC_NONE))}, + "R_PPC_PLT16_HA": {reflect.TypeOf(q.R_PPC_PLT16_HA), constant.MakeInt64(int64(q.R_PPC_PLT16_HA))}, + "R_PPC_PLT16_HI": {reflect.TypeOf(q.R_PPC_PLT16_HI), constant.MakeInt64(int64(q.R_PPC_PLT16_HI))}, + "R_PPC_PLT16_LO": {reflect.TypeOf(q.R_PPC_PLT16_LO), constant.MakeInt64(int64(q.R_PPC_PLT16_LO))}, + "R_PPC_PLT32": {reflect.TypeOf(q.R_PPC_PLT32), constant.MakeInt64(int64(q.R_PPC_PLT32))}, + "R_PPC_PLTREL24": {reflect.TypeOf(q.R_PPC_PLTREL24), constant.MakeInt64(int64(q.R_PPC_PLTREL24))}, + "R_PPC_PLTREL32": {reflect.TypeOf(q.R_PPC_PLTREL32), constant.MakeInt64(int64(q.R_PPC_PLTREL32))}, + "R_PPC_REL14": {reflect.TypeOf(q.R_PPC_REL14), constant.MakeInt64(int64(q.R_PPC_REL14))}, + "R_PPC_REL14_BRNTAKEN": {reflect.TypeOf(q.R_PPC_REL14_BRNTAKEN), constant.MakeInt64(int64(q.R_PPC_REL14_BRNTAKEN))}, + "R_PPC_REL14_BRTAKEN": {reflect.TypeOf(q.R_PPC_REL14_BRTAKEN), constant.MakeInt64(int64(q.R_PPC_REL14_BRTAKEN))}, + "R_PPC_REL24": {reflect.TypeOf(q.R_PPC_REL24), constant.MakeInt64(int64(q.R_PPC_REL24))}, + "R_PPC_REL32": {reflect.TypeOf(q.R_PPC_REL32), constant.MakeInt64(int64(q.R_PPC_REL32))}, + "R_PPC_RELATIVE": {reflect.TypeOf(q.R_PPC_RELATIVE), constant.MakeInt64(int64(q.R_PPC_RELATIVE))}, + "R_PPC_SDAREL16": {reflect.TypeOf(q.R_PPC_SDAREL16), constant.MakeInt64(int64(q.R_PPC_SDAREL16))}, + "R_PPC_SECTOFF": {reflect.TypeOf(q.R_PPC_SECTOFF), constant.MakeInt64(int64(q.R_PPC_SECTOFF))}, + "R_PPC_SECTOFF_HA": {reflect.TypeOf(q.R_PPC_SECTOFF_HA), constant.MakeInt64(int64(q.R_PPC_SECTOFF_HA))}, + "R_PPC_SECTOFF_HI": {reflect.TypeOf(q.R_PPC_SECTOFF_HI), constant.MakeInt64(int64(q.R_PPC_SECTOFF_HI))}, + "R_PPC_SECTOFF_LO": {reflect.TypeOf(q.R_PPC_SECTOFF_LO), constant.MakeInt64(int64(q.R_PPC_SECTOFF_LO))}, + "R_PPC_TLS": {reflect.TypeOf(q.R_PPC_TLS), constant.MakeInt64(int64(q.R_PPC_TLS))}, + "R_PPC_TPREL16": {reflect.TypeOf(q.R_PPC_TPREL16), constant.MakeInt64(int64(q.R_PPC_TPREL16))}, + "R_PPC_TPREL16_HA": {reflect.TypeOf(q.R_PPC_TPREL16_HA), constant.MakeInt64(int64(q.R_PPC_TPREL16_HA))}, + "R_PPC_TPREL16_HI": {reflect.TypeOf(q.R_PPC_TPREL16_HI), constant.MakeInt64(int64(q.R_PPC_TPREL16_HI))}, + "R_PPC_TPREL16_LO": {reflect.TypeOf(q.R_PPC_TPREL16_LO), constant.MakeInt64(int64(q.R_PPC_TPREL16_LO))}, + "R_PPC_TPREL32": {reflect.TypeOf(q.R_PPC_TPREL32), constant.MakeInt64(int64(q.R_PPC_TPREL32))}, + "R_PPC_UADDR16": {reflect.TypeOf(q.R_PPC_UADDR16), constant.MakeInt64(int64(q.R_PPC_UADDR16))}, + "R_PPC_UADDR32": {reflect.TypeOf(q.R_PPC_UADDR32), constant.MakeInt64(int64(q.R_PPC_UADDR32))}, + "R_RISCV_32": {reflect.TypeOf(q.R_RISCV_32), constant.MakeInt64(int64(q.R_RISCV_32))}, + "R_RISCV_32_PCREL": {reflect.TypeOf(q.R_RISCV_32_PCREL), constant.MakeInt64(int64(q.R_RISCV_32_PCREL))}, + "R_RISCV_64": {reflect.TypeOf(q.R_RISCV_64), constant.MakeInt64(int64(q.R_RISCV_64))}, + "R_RISCV_ADD16": {reflect.TypeOf(q.R_RISCV_ADD16), constant.MakeInt64(int64(q.R_RISCV_ADD16))}, + "R_RISCV_ADD32": {reflect.TypeOf(q.R_RISCV_ADD32), constant.MakeInt64(int64(q.R_RISCV_ADD32))}, + "R_RISCV_ADD64": {reflect.TypeOf(q.R_RISCV_ADD64), constant.MakeInt64(int64(q.R_RISCV_ADD64))}, + "R_RISCV_ADD8": {reflect.TypeOf(q.R_RISCV_ADD8), constant.MakeInt64(int64(q.R_RISCV_ADD8))}, + "R_RISCV_ALIGN": {reflect.TypeOf(q.R_RISCV_ALIGN), constant.MakeInt64(int64(q.R_RISCV_ALIGN))}, + "R_RISCV_BRANCH": {reflect.TypeOf(q.R_RISCV_BRANCH), constant.MakeInt64(int64(q.R_RISCV_BRANCH))}, + "R_RISCV_CALL": {reflect.TypeOf(q.R_RISCV_CALL), constant.MakeInt64(int64(q.R_RISCV_CALL))}, + "R_RISCV_CALL_PLT": {reflect.TypeOf(q.R_RISCV_CALL_PLT), constant.MakeInt64(int64(q.R_RISCV_CALL_PLT))}, + "R_RISCV_COPY": {reflect.TypeOf(q.R_RISCV_COPY), constant.MakeInt64(int64(q.R_RISCV_COPY))}, + "R_RISCV_GNU_VTENTRY": {reflect.TypeOf(q.R_RISCV_GNU_VTENTRY), constant.MakeInt64(int64(q.R_RISCV_GNU_VTENTRY))}, + "R_RISCV_GNU_VTINHERIT": {reflect.TypeOf(q.R_RISCV_GNU_VTINHERIT), constant.MakeInt64(int64(q.R_RISCV_GNU_VTINHERIT))}, + "R_RISCV_GOT_HI20": {reflect.TypeOf(q.R_RISCV_GOT_HI20), constant.MakeInt64(int64(q.R_RISCV_GOT_HI20))}, + "R_RISCV_GPREL_I": {reflect.TypeOf(q.R_RISCV_GPREL_I), constant.MakeInt64(int64(q.R_RISCV_GPREL_I))}, + "R_RISCV_GPREL_S": {reflect.TypeOf(q.R_RISCV_GPREL_S), constant.MakeInt64(int64(q.R_RISCV_GPREL_S))}, + "R_RISCV_HI20": {reflect.TypeOf(q.R_RISCV_HI20), constant.MakeInt64(int64(q.R_RISCV_HI20))}, + "R_RISCV_JAL": {reflect.TypeOf(q.R_RISCV_JAL), constant.MakeInt64(int64(q.R_RISCV_JAL))}, + "R_RISCV_JUMP_SLOT": {reflect.TypeOf(q.R_RISCV_JUMP_SLOT), constant.MakeInt64(int64(q.R_RISCV_JUMP_SLOT))}, + "R_RISCV_LO12_I": {reflect.TypeOf(q.R_RISCV_LO12_I), constant.MakeInt64(int64(q.R_RISCV_LO12_I))}, + "R_RISCV_LO12_S": {reflect.TypeOf(q.R_RISCV_LO12_S), constant.MakeInt64(int64(q.R_RISCV_LO12_S))}, + "R_RISCV_NONE": {reflect.TypeOf(q.R_RISCV_NONE), constant.MakeInt64(int64(q.R_RISCV_NONE))}, + "R_RISCV_PCREL_HI20": {reflect.TypeOf(q.R_RISCV_PCREL_HI20), constant.MakeInt64(int64(q.R_RISCV_PCREL_HI20))}, + "R_RISCV_PCREL_LO12_I": {reflect.TypeOf(q.R_RISCV_PCREL_LO12_I), constant.MakeInt64(int64(q.R_RISCV_PCREL_LO12_I))}, + "R_RISCV_PCREL_LO12_S": {reflect.TypeOf(q.R_RISCV_PCREL_LO12_S), constant.MakeInt64(int64(q.R_RISCV_PCREL_LO12_S))}, + "R_RISCV_RELATIVE": {reflect.TypeOf(q.R_RISCV_RELATIVE), constant.MakeInt64(int64(q.R_RISCV_RELATIVE))}, + "R_RISCV_RELAX": {reflect.TypeOf(q.R_RISCV_RELAX), constant.MakeInt64(int64(q.R_RISCV_RELAX))}, + "R_RISCV_RVC_BRANCH": {reflect.TypeOf(q.R_RISCV_RVC_BRANCH), constant.MakeInt64(int64(q.R_RISCV_RVC_BRANCH))}, + "R_RISCV_RVC_JUMP": {reflect.TypeOf(q.R_RISCV_RVC_JUMP), constant.MakeInt64(int64(q.R_RISCV_RVC_JUMP))}, + "R_RISCV_RVC_LUI": {reflect.TypeOf(q.R_RISCV_RVC_LUI), constant.MakeInt64(int64(q.R_RISCV_RVC_LUI))}, + "R_RISCV_SET16": {reflect.TypeOf(q.R_RISCV_SET16), constant.MakeInt64(int64(q.R_RISCV_SET16))}, + "R_RISCV_SET32": {reflect.TypeOf(q.R_RISCV_SET32), constant.MakeInt64(int64(q.R_RISCV_SET32))}, + "R_RISCV_SET6": {reflect.TypeOf(q.R_RISCV_SET6), constant.MakeInt64(int64(q.R_RISCV_SET6))}, + "R_RISCV_SET8": {reflect.TypeOf(q.R_RISCV_SET8), constant.MakeInt64(int64(q.R_RISCV_SET8))}, + "R_RISCV_SUB16": {reflect.TypeOf(q.R_RISCV_SUB16), constant.MakeInt64(int64(q.R_RISCV_SUB16))}, + "R_RISCV_SUB32": {reflect.TypeOf(q.R_RISCV_SUB32), constant.MakeInt64(int64(q.R_RISCV_SUB32))}, + "R_RISCV_SUB6": {reflect.TypeOf(q.R_RISCV_SUB6), constant.MakeInt64(int64(q.R_RISCV_SUB6))}, + "R_RISCV_SUB64": {reflect.TypeOf(q.R_RISCV_SUB64), constant.MakeInt64(int64(q.R_RISCV_SUB64))}, + "R_RISCV_SUB8": {reflect.TypeOf(q.R_RISCV_SUB8), constant.MakeInt64(int64(q.R_RISCV_SUB8))}, + "R_RISCV_TLS_DTPMOD32": {reflect.TypeOf(q.R_RISCV_TLS_DTPMOD32), constant.MakeInt64(int64(q.R_RISCV_TLS_DTPMOD32))}, + "R_RISCV_TLS_DTPMOD64": {reflect.TypeOf(q.R_RISCV_TLS_DTPMOD64), constant.MakeInt64(int64(q.R_RISCV_TLS_DTPMOD64))}, + "R_RISCV_TLS_DTPREL32": {reflect.TypeOf(q.R_RISCV_TLS_DTPREL32), constant.MakeInt64(int64(q.R_RISCV_TLS_DTPREL32))}, + "R_RISCV_TLS_DTPREL64": {reflect.TypeOf(q.R_RISCV_TLS_DTPREL64), constant.MakeInt64(int64(q.R_RISCV_TLS_DTPREL64))}, + "R_RISCV_TLS_GD_HI20": {reflect.TypeOf(q.R_RISCV_TLS_GD_HI20), constant.MakeInt64(int64(q.R_RISCV_TLS_GD_HI20))}, + "R_RISCV_TLS_GOT_HI20": {reflect.TypeOf(q.R_RISCV_TLS_GOT_HI20), constant.MakeInt64(int64(q.R_RISCV_TLS_GOT_HI20))}, + "R_RISCV_TLS_TPREL32": {reflect.TypeOf(q.R_RISCV_TLS_TPREL32), constant.MakeInt64(int64(q.R_RISCV_TLS_TPREL32))}, + "R_RISCV_TLS_TPREL64": {reflect.TypeOf(q.R_RISCV_TLS_TPREL64), constant.MakeInt64(int64(q.R_RISCV_TLS_TPREL64))}, + "R_RISCV_TPREL_ADD": {reflect.TypeOf(q.R_RISCV_TPREL_ADD), constant.MakeInt64(int64(q.R_RISCV_TPREL_ADD))}, + "R_RISCV_TPREL_HI20": {reflect.TypeOf(q.R_RISCV_TPREL_HI20), constant.MakeInt64(int64(q.R_RISCV_TPREL_HI20))}, + "R_RISCV_TPREL_I": {reflect.TypeOf(q.R_RISCV_TPREL_I), constant.MakeInt64(int64(q.R_RISCV_TPREL_I))}, + "R_RISCV_TPREL_LO12_I": {reflect.TypeOf(q.R_RISCV_TPREL_LO12_I), constant.MakeInt64(int64(q.R_RISCV_TPREL_LO12_I))}, + "R_RISCV_TPREL_LO12_S": {reflect.TypeOf(q.R_RISCV_TPREL_LO12_S), constant.MakeInt64(int64(q.R_RISCV_TPREL_LO12_S))}, + "R_RISCV_TPREL_S": {reflect.TypeOf(q.R_RISCV_TPREL_S), constant.MakeInt64(int64(q.R_RISCV_TPREL_S))}, + "R_SPARC_10": {reflect.TypeOf(q.R_SPARC_10), constant.MakeInt64(int64(q.R_SPARC_10))}, + "R_SPARC_11": {reflect.TypeOf(q.R_SPARC_11), constant.MakeInt64(int64(q.R_SPARC_11))}, + "R_SPARC_13": {reflect.TypeOf(q.R_SPARC_13), constant.MakeInt64(int64(q.R_SPARC_13))}, + "R_SPARC_16": {reflect.TypeOf(q.R_SPARC_16), constant.MakeInt64(int64(q.R_SPARC_16))}, + "R_SPARC_22": {reflect.TypeOf(q.R_SPARC_22), constant.MakeInt64(int64(q.R_SPARC_22))}, + "R_SPARC_32": {reflect.TypeOf(q.R_SPARC_32), constant.MakeInt64(int64(q.R_SPARC_32))}, + "R_SPARC_5": {reflect.TypeOf(q.R_SPARC_5), constant.MakeInt64(int64(q.R_SPARC_5))}, + "R_SPARC_6": {reflect.TypeOf(q.R_SPARC_6), constant.MakeInt64(int64(q.R_SPARC_6))}, + "R_SPARC_64": {reflect.TypeOf(q.R_SPARC_64), constant.MakeInt64(int64(q.R_SPARC_64))}, + "R_SPARC_7": {reflect.TypeOf(q.R_SPARC_7), constant.MakeInt64(int64(q.R_SPARC_7))}, + "R_SPARC_8": {reflect.TypeOf(q.R_SPARC_8), constant.MakeInt64(int64(q.R_SPARC_8))}, + "R_SPARC_COPY": {reflect.TypeOf(q.R_SPARC_COPY), constant.MakeInt64(int64(q.R_SPARC_COPY))}, + "R_SPARC_DISP16": {reflect.TypeOf(q.R_SPARC_DISP16), constant.MakeInt64(int64(q.R_SPARC_DISP16))}, + "R_SPARC_DISP32": {reflect.TypeOf(q.R_SPARC_DISP32), constant.MakeInt64(int64(q.R_SPARC_DISP32))}, + "R_SPARC_DISP64": {reflect.TypeOf(q.R_SPARC_DISP64), constant.MakeInt64(int64(q.R_SPARC_DISP64))}, + "R_SPARC_DISP8": {reflect.TypeOf(q.R_SPARC_DISP8), constant.MakeInt64(int64(q.R_SPARC_DISP8))}, + "R_SPARC_GLOB_DAT": {reflect.TypeOf(q.R_SPARC_GLOB_DAT), constant.MakeInt64(int64(q.R_SPARC_GLOB_DAT))}, + "R_SPARC_GLOB_JMP": {reflect.TypeOf(q.R_SPARC_GLOB_JMP), constant.MakeInt64(int64(q.R_SPARC_GLOB_JMP))}, + "R_SPARC_GOT10": {reflect.TypeOf(q.R_SPARC_GOT10), constant.MakeInt64(int64(q.R_SPARC_GOT10))}, + "R_SPARC_GOT13": {reflect.TypeOf(q.R_SPARC_GOT13), constant.MakeInt64(int64(q.R_SPARC_GOT13))}, + "R_SPARC_GOT22": {reflect.TypeOf(q.R_SPARC_GOT22), constant.MakeInt64(int64(q.R_SPARC_GOT22))}, + "R_SPARC_H44": {reflect.TypeOf(q.R_SPARC_H44), constant.MakeInt64(int64(q.R_SPARC_H44))}, + "R_SPARC_HH22": {reflect.TypeOf(q.R_SPARC_HH22), constant.MakeInt64(int64(q.R_SPARC_HH22))}, + "R_SPARC_HI22": {reflect.TypeOf(q.R_SPARC_HI22), constant.MakeInt64(int64(q.R_SPARC_HI22))}, + "R_SPARC_HIPLT22": {reflect.TypeOf(q.R_SPARC_HIPLT22), constant.MakeInt64(int64(q.R_SPARC_HIPLT22))}, + "R_SPARC_HIX22": {reflect.TypeOf(q.R_SPARC_HIX22), constant.MakeInt64(int64(q.R_SPARC_HIX22))}, + "R_SPARC_HM10": {reflect.TypeOf(q.R_SPARC_HM10), constant.MakeInt64(int64(q.R_SPARC_HM10))}, + "R_SPARC_JMP_SLOT": {reflect.TypeOf(q.R_SPARC_JMP_SLOT), constant.MakeInt64(int64(q.R_SPARC_JMP_SLOT))}, + "R_SPARC_L44": {reflect.TypeOf(q.R_SPARC_L44), constant.MakeInt64(int64(q.R_SPARC_L44))}, + "R_SPARC_LM22": {reflect.TypeOf(q.R_SPARC_LM22), constant.MakeInt64(int64(q.R_SPARC_LM22))}, + "R_SPARC_LO10": {reflect.TypeOf(q.R_SPARC_LO10), constant.MakeInt64(int64(q.R_SPARC_LO10))}, + "R_SPARC_LOPLT10": {reflect.TypeOf(q.R_SPARC_LOPLT10), constant.MakeInt64(int64(q.R_SPARC_LOPLT10))}, + "R_SPARC_LOX10": {reflect.TypeOf(q.R_SPARC_LOX10), constant.MakeInt64(int64(q.R_SPARC_LOX10))}, + "R_SPARC_M44": {reflect.TypeOf(q.R_SPARC_M44), constant.MakeInt64(int64(q.R_SPARC_M44))}, + "R_SPARC_NONE": {reflect.TypeOf(q.R_SPARC_NONE), constant.MakeInt64(int64(q.R_SPARC_NONE))}, + "R_SPARC_OLO10": {reflect.TypeOf(q.R_SPARC_OLO10), constant.MakeInt64(int64(q.R_SPARC_OLO10))}, + "R_SPARC_PC10": {reflect.TypeOf(q.R_SPARC_PC10), constant.MakeInt64(int64(q.R_SPARC_PC10))}, + "R_SPARC_PC22": {reflect.TypeOf(q.R_SPARC_PC22), constant.MakeInt64(int64(q.R_SPARC_PC22))}, + "R_SPARC_PCPLT10": {reflect.TypeOf(q.R_SPARC_PCPLT10), constant.MakeInt64(int64(q.R_SPARC_PCPLT10))}, + "R_SPARC_PCPLT22": {reflect.TypeOf(q.R_SPARC_PCPLT22), constant.MakeInt64(int64(q.R_SPARC_PCPLT22))}, + "R_SPARC_PCPLT32": {reflect.TypeOf(q.R_SPARC_PCPLT32), constant.MakeInt64(int64(q.R_SPARC_PCPLT32))}, + "R_SPARC_PC_HH22": {reflect.TypeOf(q.R_SPARC_PC_HH22), constant.MakeInt64(int64(q.R_SPARC_PC_HH22))}, + "R_SPARC_PC_HM10": {reflect.TypeOf(q.R_SPARC_PC_HM10), constant.MakeInt64(int64(q.R_SPARC_PC_HM10))}, + "R_SPARC_PC_LM22": {reflect.TypeOf(q.R_SPARC_PC_LM22), constant.MakeInt64(int64(q.R_SPARC_PC_LM22))}, + "R_SPARC_PLT32": {reflect.TypeOf(q.R_SPARC_PLT32), constant.MakeInt64(int64(q.R_SPARC_PLT32))}, + "R_SPARC_PLT64": {reflect.TypeOf(q.R_SPARC_PLT64), constant.MakeInt64(int64(q.R_SPARC_PLT64))}, + "R_SPARC_REGISTER": {reflect.TypeOf(q.R_SPARC_REGISTER), constant.MakeInt64(int64(q.R_SPARC_REGISTER))}, + "R_SPARC_RELATIVE": {reflect.TypeOf(q.R_SPARC_RELATIVE), constant.MakeInt64(int64(q.R_SPARC_RELATIVE))}, + "R_SPARC_UA16": {reflect.TypeOf(q.R_SPARC_UA16), constant.MakeInt64(int64(q.R_SPARC_UA16))}, + "R_SPARC_UA32": {reflect.TypeOf(q.R_SPARC_UA32), constant.MakeInt64(int64(q.R_SPARC_UA32))}, + "R_SPARC_UA64": {reflect.TypeOf(q.R_SPARC_UA64), constant.MakeInt64(int64(q.R_SPARC_UA64))}, + "R_SPARC_WDISP16": {reflect.TypeOf(q.R_SPARC_WDISP16), constant.MakeInt64(int64(q.R_SPARC_WDISP16))}, + "R_SPARC_WDISP19": {reflect.TypeOf(q.R_SPARC_WDISP19), constant.MakeInt64(int64(q.R_SPARC_WDISP19))}, + "R_SPARC_WDISP22": {reflect.TypeOf(q.R_SPARC_WDISP22), constant.MakeInt64(int64(q.R_SPARC_WDISP22))}, + "R_SPARC_WDISP30": {reflect.TypeOf(q.R_SPARC_WDISP30), constant.MakeInt64(int64(q.R_SPARC_WDISP30))}, + "R_SPARC_WPLT30": {reflect.TypeOf(q.R_SPARC_WPLT30), constant.MakeInt64(int64(q.R_SPARC_WPLT30))}, + "R_X86_64_16": {reflect.TypeOf(q.R_X86_64_16), constant.MakeInt64(int64(q.R_X86_64_16))}, + "R_X86_64_32": {reflect.TypeOf(q.R_X86_64_32), constant.MakeInt64(int64(q.R_X86_64_32))}, + "R_X86_64_32S": {reflect.TypeOf(q.R_X86_64_32S), constant.MakeInt64(int64(q.R_X86_64_32S))}, + "R_X86_64_64": {reflect.TypeOf(q.R_X86_64_64), constant.MakeInt64(int64(q.R_X86_64_64))}, + "R_X86_64_8": {reflect.TypeOf(q.R_X86_64_8), constant.MakeInt64(int64(q.R_X86_64_8))}, + "R_X86_64_COPY": {reflect.TypeOf(q.R_X86_64_COPY), constant.MakeInt64(int64(q.R_X86_64_COPY))}, + "R_X86_64_DTPMOD64": {reflect.TypeOf(q.R_X86_64_DTPMOD64), constant.MakeInt64(int64(q.R_X86_64_DTPMOD64))}, + "R_X86_64_DTPOFF32": {reflect.TypeOf(q.R_X86_64_DTPOFF32), constant.MakeInt64(int64(q.R_X86_64_DTPOFF32))}, + "R_X86_64_DTPOFF64": {reflect.TypeOf(q.R_X86_64_DTPOFF64), constant.MakeInt64(int64(q.R_X86_64_DTPOFF64))}, + "R_X86_64_GLOB_DAT": {reflect.TypeOf(q.R_X86_64_GLOB_DAT), constant.MakeInt64(int64(q.R_X86_64_GLOB_DAT))}, + "R_X86_64_GOT32": {reflect.TypeOf(q.R_X86_64_GOT32), constant.MakeInt64(int64(q.R_X86_64_GOT32))}, + "R_X86_64_GOT64": {reflect.TypeOf(q.R_X86_64_GOT64), constant.MakeInt64(int64(q.R_X86_64_GOT64))}, + "R_X86_64_GOTOFF64": {reflect.TypeOf(q.R_X86_64_GOTOFF64), constant.MakeInt64(int64(q.R_X86_64_GOTOFF64))}, + "R_X86_64_GOTPC32": {reflect.TypeOf(q.R_X86_64_GOTPC32), constant.MakeInt64(int64(q.R_X86_64_GOTPC32))}, + "R_X86_64_GOTPC32_TLSDESC": {reflect.TypeOf(q.R_X86_64_GOTPC32_TLSDESC), constant.MakeInt64(int64(q.R_X86_64_GOTPC32_TLSDESC))}, + "R_X86_64_GOTPC64": {reflect.TypeOf(q.R_X86_64_GOTPC64), constant.MakeInt64(int64(q.R_X86_64_GOTPC64))}, + "R_X86_64_GOTPCREL": {reflect.TypeOf(q.R_X86_64_GOTPCREL), constant.MakeInt64(int64(q.R_X86_64_GOTPCREL))}, + "R_X86_64_GOTPCREL64": {reflect.TypeOf(q.R_X86_64_GOTPCREL64), constant.MakeInt64(int64(q.R_X86_64_GOTPCREL64))}, + "R_X86_64_GOTPCRELX": {reflect.TypeOf(q.R_X86_64_GOTPCRELX), constant.MakeInt64(int64(q.R_X86_64_GOTPCRELX))}, + "R_X86_64_GOTPLT64": {reflect.TypeOf(q.R_X86_64_GOTPLT64), constant.MakeInt64(int64(q.R_X86_64_GOTPLT64))}, + "R_X86_64_GOTTPOFF": {reflect.TypeOf(q.R_X86_64_GOTTPOFF), constant.MakeInt64(int64(q.R_X86_64_GOTTPOFF))}, + "R_X86_64_IRELATIVE": {reflect.TypeOf(q.R_X86_64_IRELATIVE), constant.MakeInt64(int64(q.R_X86_64_IRELATIVE))}, + "R_X86_64_JMP_SLOT": {reflect.TypeOf(q.R_X86_64_JMP_SLOT), constant.MakeInt64(int64(q.R_X86_64_JMP_SLOT))}, + "R_X86_64_NONE": {reflect.TypeOf(q.R_X86_64_NONE), constant.MakeInt64(int64(q.R_X86_64_NONE))}, + "R_X86_64_PC16": {reflect.TypeOf(q.R_X86_64_PC16), constant.MakeInt64(int64(q.R_X86_64_PC16))}, + "R_X86_64_PC32": {reflect.TypeOf(q.R_X86_64_PC32), constant.MakeInt64(int64(q.R_X86_64_PC32))}, + "R_X86_64_PC32_BND": {reflect.TypeOf(q.R_X86_64_PC32_BND), constant.MakeInt64(int64(q.R_X86_64_PC32_BND))}, + "R_X86_64_PC64": {reflect.TypeOf(q.R_X86_64_PC64), constant.MakeInt64(int64(q.R_X86_64_PC64))}, + "R_X86_64_PC8": {reflect.TypeOf(q.R_X86_64_PC8), constant.MakeInt64(int64(q.R_X86_64_PC8))}, + "R_X86_64_PLT32": {reflect.TypeOf(q.R_X86_64_PLT32), constant.MakeInt64(int64(q.R_X86_64_PLT32))}, + "R_X86_64_PLT32_BND": {reflect.TypeOf(q.R_X86_64_PLT32_BND), constant.MakeInt64(int64(q.R_X86_64_PLT32_BND))}, + "R_X86_64_PLTOFF64": {reflect.TypeOf(q.R_X86_64_PLTOFF64), constant.MakeInt64(int64(q.R_X86_64_PLTOFF64))}, + "R_X86_64_RELATIVE": {reflect.TypeOf(q.R_X86_64_RELATIVE), constant.MakeInt64(int64(q.R_X86_64_RELATIVE))}, + "R_X86_64_RELATIVE64": {reflect.TypeOf(q.R_X86_64_RELATIVE64), constant.MakeInt64(int64(q.R_X86_64_RELATIVE64))}, + "R_X86_64_REX_GOTPCRELX": {reflect.TypeOf(q.R_X86_64_REX_GOTPCRELX), constant.MakeInt64(int64(q.R_X86_64_REX_GOTPCRELX))}, + "R_X86_64_SIZE32": {reflect.TypeOf(q.R_X86_64_SIZE32), constant.MakeInt64(int64(q.R_X86_64_SIZE32))}, + "R_X86_64_SIZE64": {reflect.TypeOf(q.R_X86_64_SIZE64), constant.MakeInt64(int64(q.R_X86_64_SIZE64))}, + "R_X86_64_TLSDESC": {reflect.TypeOf(q.R_X86_64_TLSDESC), constant.MakeInt64(int64(q.R_X86_64_TLSDESC))}, + "R_X86_64_TLSDESC_CALL": {reflect.TypeOf(q.R_X86_64_TLSDESC_CALL), constant.MakeInt64(int64(q.R_X86_64_TLSDESC_CALL))}, + "R_X86_64_TLSGD": {reflect.TypeOf(q.R_X86_64_TLSGD), constant.MakeInt64(int64(q.R_X86_64_TLSGD))}, + "R_X86_64_TLSLD": {reflect.TypeOf(q.R_X86_64_TLSLD), constant.MakeInt64(int64(q.R_X86_64_TLSLD))}, + "R_X86_64_TPOFF32": {reflect.TypeOf(q.R_X86_64_TPOFF32), constant.MakeInt64(int64(q.R_X86_64_TPOFF32))}, + "R_X86_64_TPOFF64": {reflect.TypeOf(q.R_X86_64_TPOFF64), constant.MakeInt64(int64(q.R_X86_64_TPOFF64))}, + "SHF_ALLOC": {reflect.TypeOf(q.SHF_ALLOC), constant.MakeInt64(int64(q.SHF_ALLOC))}, + "SHF_COMPRESSED": {reflect.TypeOf(q.SHF_COMPRESSED), constant.MakeInt64(int64(q.SHF_COMPRESSED))}, + "SHF_EXECINSTR": {reflect.TypeOf(q.SHF_EXECINSTR), constant.MakeInt64(int64(q.SHF_EXECINSTR))}, + "SHF_GROUP": {reflect.TypeOf(q.SHF_GROUP), constant.MakeInt64(int64(q.SHF_GROUP))}, + "SHF_INFO_LINK": {reflect.TypeOf(q.SHF_INFO_LINK), constant.MakeInt64(int64(q.SHF_INFO_LINK))}, + "SHF_LINK_ORDER": {reflect.TypeOf(q.SHF_LINK_ORDER), constant.MakeInt64(int64(q.SHF_LINK_ORDER))}, + "SHF_MASKOS": {reflect.TypeOf(q.SHF_MASKOS), constant.MakeInt64(int64(q.SHF_MASKOS))}, + "SHF_MASKPROC": {reflect.TypeOf(q.SHF_MASKPROC), constant.MakeInt64(int64(q.SHF_MASKPROC))}, + "SHF_MERGE": {reflect.TypeOf(q.SHF_MERGE), constant.MakeInt64(int64(q.SHF_MERGE))}, + "SHF_OS_NONCONFORMING": {reflect.TypeOf(q.SHF_OS_NONCONFORMING), constant.MakeInt64(int64(q.SHF_OS_NONCONFORMING))}, + "SHF_STRINGS": {reflect.TypeOf(q.SHF_STRINGS), constant.MakeInt64(int64(q.SHF_STRINGS))}, + "SHF_TLS": {reflect.TypeOf(q.SHF_TLS), constant.MakeInt64(int64(q.SHF_TLS))}, + "SHF_WRITE": {reflect.TypeOf(q.SHF_WRITE), constant.MakeInt64(int64(q.SHF_WRITE))}, + "SHN_ABS": {reflect.TypeOf(q.SHN_ABS), constant.MakeInt64(int64(q.SHN_ABS))}, + "SHN_COMMON": {reflect.TypeOf(q.SHN_COMMON), constant.MakeInt64(int64(q.SHN_COMMON))}, + "SHN_HIOS": {reflect.TypeOf(q.SHN_HIOS), constant.MakeInt64(int64(q.SHN_HIOS))}, + "SHN_HIPROC": {reflect.TypeOf(q.SHN_HIPROC), constant.MakeInt64(int64(q.SHN_HIPROC))}, + "SHN_HIRESERVE": {reflect.TypeOf(q.SHN_HIRESERVE), constant.MakeInt64(int64(q.SHN_HIRESERVE))}, + "SHN_LOOS": {reflect.TypeOf(q.SHN_LOOS), constant.MakeInt64(int64(q.SHN_LOOS))}, + "SHN_LOPROC": {reflect.TypeOf(q.SHN_LOPROC), constant.MakeInt64(int64(q.SHN_LOPROC))}, + "SHN_LORESERVE": {reflect.TypeOf(q.SHN_LORESERVE), constant.MakeInt64(int64(q.SHN_LORESERVE))}, + "SHN_UNDEF": {reflect.TypeOf(q.SHN_UNDEF), constant.MakeInt64(int64(q.SHN_UNDEF))}, + "SHN_XINDEX": {reflect.TypeOf(q.SHN_XINDEX), constant.MakeInt64(int64(q.SHN_XINDEX))}, + "SHT_DYNAMIC": {reflect.TypeOf(q.SHT_DYNAMIC), constant.MakeInt64(int64(q.SHT_DYNAMIC))}, + "SHT_DYNSYM": {reflect.TypeOf(q.SHT_DYNSYM), constant.MakeInt64(int64(q.SHT_DYNSYM))}, + "SHT_FINI_ARRAY": {reflect.TypeOf(q.SHT_FINI_ARRAY), constant.MakeInt64(int64(q.SHT_FINI_ARRAY))}, + "SHT_GNU_ATTRIBUTES": {reflect.TypeOf(q.SHT_GNU_ATTRIBUTES), constant.MakeInt64(int64(q.SHT_GNU_ATTRIBUTES))}, + "SHT_GNU_HASH": {reflect.TypeOf(q.SHT_GNU_HASH), constant.MakeInt64(int64(q.SHT_GNU_HASH))}, + "SHT_GNU_LIBLIST": {reflect.TypeOf(q.SHT_GNU_LIBLIST), constant.MakeInt64(int64(q.SHT_GNU_LIBLIST))}, + "SHT_GNU_VERDEF": {reflect.TypeOf(q.SHT_GNU_VERDEF), constant.MakeInt64(int64(q.SHT_GNU_VERDEF))}, + "SHT_GNU_VERNEED": {reflect.TypeOf(q.SHT_GNU_VERNEED), constant.MakeInt64(int64(q.SHT_GNU_VERNEED))}, + "SHT_GNU_VERSYM": {reflect.TypeOf(q.SHT_GNU_VERSYM), constant.MakeInt64(int64(q.SHT_GNU_VERSYM))}, + "SHT_GROUP": {reflect.TypeOf(q.SHT_GROUP), constant.MakeInt64(int64(q.SHT_GROUP))}, + "SHT_HASH": {reflect.TypeOf(q.SHT_HASH), constant.MakeInt64(int64(q.SHT_HASH))}, + "SHT_HIOS": {reflect.TypeOf(q.SHT_HIOS), constant.MakeInt64(int64(q.SHT_HIOS))}, + "SHT_HIPROC": {reflect.TypeOf(q.SHT_HIPROC), constant.MakeInt64(int64(q.SHT_HIPROC))}, + "SHT_HIUSER": {reflect.TypeOf(q.SHT_HIUSER), constant.MakeInt64(int64(q.SHT_HIUSER))}, + "SHT_INIT_ARRAY": {reflect.TypeOf(q.SHT_INIT_ARRAY), constant.MakeInt64(int64(q.SHT_INIT_ARRAY))}, + "SHT_LOOS": {reflect.TypeOf(q.SHT_LOOS), constant.MakeInt64(int64(q.SHT_LOOS))}, + "SHT_LOPROC": {reflect.TypeOf(q.SHT_LOPROC), constant.MakeInt64(int64(q.SHT_LOPROC))}, + "SHT_LOUSER": {reflect.TypeOf(q.SHT_LOUSER), constant.MakeInt64(int64(q.SHT_LOUSER))}, + "SHT_MIPS_ABIFLAGS": {reflect.TypeOf(q.SHT_MIPS_ABIFLAGS), constant.MakeInt64(int64(q.SHT_MIPS_ABIFLAGS))}, + "SHT_NOBITS": {reflect.TypeOf(q.SHT_NOBITS), constant.MakeInt64(int64(q.SHT_NOBITS))}, + "SHT_NOTE": {reflect.TypeOf(q.SHT_NOTE), constant.MakeInt64(int64(q.SHT_NOTE))}, + "SHT_NULL": {reflect.TypeOf(q.SHT_NULL), constant.MakeInt64(int64(q.SHT_NULL))}, + "SHT_PREINIT_ARRAY": {reflect.TypeOf(q.SHT_PREINIT_ARRAY), constant.MakeInt64(int64(q.SHT_PREINIT_ARRAY))}, + "SHT_PROGBITS": {reflect.TypeOf(q.SHT_PROGBITS), constant.MakeInt64(int64(q.SHT_PROGBITS))}, + "SHT_REL": {reflect.TypeOf(q.SHT_REL), constant.MakeInt64(int64(q.SHT_REL))}, + "SHT_RELA": {reflect.TypeOf(q.SHT_RELA), constant.MakeInt64(int64(q.SHT_RELA))}, + "SHT_SHLIB": {reflect.TypeOf(q.SHT_SHLIB), constant.MakeInt64(int64(q.SHT_SHLIB))}, + "SHT_STRTAB": {reflect.TypeOf(q.SHT_STRTAB), constant.MakeInt64(int64(q.SHT_STRTAB))}, + "SHT_SYMTAB": {reflect.TypeOf(q.SHT_SYMTAB), constant.MakeInt64(int64(q.SHT_SYMTAB))}, + "SHT_SYMTAB_SHNDX": {reflect.TypeOf(q.SHT_SYMTAB_SHNDX), constant.MakeInt64(int64(q.SHT_SYMTAB_SHNDX))}, + "STB_GLOBAL": {reflect.TypeOf(q.STB_GLOBAL), constant.MakeInt64(int64(q.STB_GLOBAL))}, + "STB_HIOS": {reflect.TypeOf(q.STB_HIOS), constant.MakeInt64(int64(q.STB_HIOS))}, + "STB_HIPROC": {reflect.TypeOf(q.STB_HIPROC), constant.MakeInt64(int64(q.STB_HIPROC))}, + "STB_LOCAL": {reflect.TypeOf(q.STB_LOCAL), constant.MakeInt64(int64(q.STB_LOCAL))}, + "STB_LOOS": {reflect.TypeOf(q.STB_LOOS), constant.MakeInt64(int64(q.STB_LOOS))}, + "STB_LOPROC": {reflect.TypeOf(q.STB_LOPROC), constant.MakeInt64(int64(q.STB_LOPROC))}, + "STB_WEAK": {reflect.TypeOf(q.STB_WEAK), constant.MakeInt64(int64(q.STB_WEAK))}, + "STT_COMMON": {reflect.TypeOf(q.STT_COMMON), constant.MakeInt64(int64(q.STT_COMMON))}, + "STT_FILE": {reflect.TypeOf(q.STT_FILE), constant.MakeInt64(int64(q.STT_FILE))}, + "STT_FUNC": {reflect.TypeOf(q.STT_FUNC), constant.MakeInt64(int64(q.STT_FUNC))}, + "STT_GNU_IFUNC": {reflect.TypeOf(q.STT_GNU_IFUNC), constant.MakeInt64(int64(q.STT_GNU_IFUNC))}, + "STT_HIOS": {reflect.TypeOf(q.STT_HIOS), constant.MakeInt64(int64(q.STT_HIOS))}, + "STT_HIPROC": {reflect.TypeOf(q.STT_HIPROC), constant.MakeInt64(int64(q.STT_HIPROC))}, + "STT_LOOS": {reflect.TypeOf(q.STT_LOOS), constant.MakeInt64(int64(q.STT_LOOS))}, + "STT_LOPROC": {reflect.TypeOf(q.STT_LOPROC), constant.MakeInt64(int64(q.STT_LOPROC))}, + "STT_NOTYPE": {reflect.TypeOf(q.STT_NOTYPE), constant.MakeInt64(int64(q.STT_NOTYPE))}, + "STT_OBJECT": {reflect.TypeOf(q.STT_OBJECT), constant.MakeInt64(int64(q.STT_OBJECT))}, + "STT_RELC": {reflect.TypeOf(q.STT_RELC), constant.MakeInt64(int64(q.STT_RELC))}, + "STT_SECTION": {reflect.TypeOf(q.STT_SECTION), constant.MakeInt64(int64(q.STT_SECTION))}, + "STT_SRELC": {reflect.TypeOf(q.STT_SRELC), constant.MakeInt64(int64(q.STT_SRELC))}, + "STT_TLS": {reflect.TypeOf(q.STT_TLS), constant.MakeInt64(int64(q.STT_TLS))}, + "STV_DEFAULT": {reflect.TypeOf(q.STV_DEFAULT), constant.MakeInt64(int64(q.STV_DEFAULT))}, + "STV_HIDDEN": {reflect.TypeOf(q.STV_HIDDEN), constant.MakeInt64(int64(q.STV_HIDDEN))}, + "STV_INTERNAL": {reflect.TypeOf(q.STV_INTERNAL), constant.MakeInt64(int64(q.STV_INTERNAL))}, + "STV_PROTECTED": {reflect.TypeOf(q.STV_PROTECTED), constant.MakeInt64(int64(q.STV_PROTECTED))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "ARM_MAGIC_TRAMP_NUMBER": {"untyped int", constant.MakeInt64(int64(q.ARM_MAGIC_TRAMP_NUMBER))}, + "EI_ABIVERSION": {"untyped int", constant.MakeInt64(int64(q.EI_ABIVERSION))}, + "EI_CLASS": {"untyped int", constant.MakeInt64(int64(q.EI_CLASS))}, + "EI_DATA": {"untyped int", constant.MakeInt64(int64(q.EI_DATA))}, + "EI_NIDENT": {"untyped int", constant.MakeInt64(int64(q.EI_NIDENT))}, + "EI_OSABI": {"untyped int", constant.MakeInt64(int64(q.EI_OSABI))}, + "EI_PAD": {"untyped int", constant.MakeInt64(int64(q.EI_PAD))}, + "EI_VERSION": {"untyped int", constant.MakeInt64(int64(q.EI_VERSION))}, + "ELFMAG": {"untyped string", constant.MakeString(string(q.ELFMAG))}, + "Sym32Size": {"untyped int", constant.MakeInt64(int64(q.Sym32Size))}, + "Sym64Size": {"untyped int", constant.MakeInt64(int64(q.Sym64Size))}, + }, + }) +} diff --git a/pkg/debug/gosym/go121_export.go b/pkg/debug/gosym/go121_export.go index d5712c92..fab29249 100755 --- a/pkg/debug/gosym/go121_export.go +++ b/pkg/debug/gosym/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package gosym diff --git a/pkg/debug/gosym/go122_export.go b/pkg/debug/gosym/go122_export.go new file mode 100755 index 00000000..8defc7c9 --- /dev/null +++ b/pkg/debug/gosym/go122_export.go @@ -0,0 +1,49 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package gosym + +import ( + q "debug/gosym" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "gosym", + Path: "debug/gosym", + Deps: map[string]string{ + "bytes": "bytes", + "encoding/binary": "binary", + "fmt": "fmt", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "DecodingError": reflect.TypeOf((*q.DecodingError)(nil)).Elem(), + "Func": reflect.TypeOf((*q.Func)(nil)).Elem(), + "LineTable": reflect.TypeOf((*q.LineTable)(nil)).Elem(), + "Obj": reflect.TypeOf((*q.Obj)(nil)).Elem(), + "Sym": reflect.TypeOf((*q.Sym)(nil)).Elem(), + "Table": reflect.TypeOf((*q.Table)(nil)).Elem(), + "UnknownFileError": reflect.TypeOf((*q.UnknownFileError)(nil)).Elem(), + "UnknownLineError": reflect.TypeOf((*q.UnknownLineError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewLineTable": reflect.ValueOf(q.NewLineTable), + "NewTable": reflect.ValueOf(q.NewTable), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/debug/gosym/go123_export.go b/pkg/debug/gosym/go123_export.go new file mode 100755 index 00000000..69e5ffea --- /dev/null +++ b/pkg/debug/gosym/go123_export.go @@ -0,0 +1,49 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package gosym + +import ( + q "debug/gosym" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "gosym", + Path: "debug/gosym", + Deps: map[string]string{ + "bytes": "bytes", + "encoding/binary": "binary", + "fmt": "fmt", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "DecodingError": reflect.TypeOf((*q.DecodingError)(nil)).Elem(), + "Func": reflect.TypeOf((*q.Func)(nil)).Elem(), + "LineTable": reflect.TypeOf((*q.LineTable)(nil)).Elem(), + "Obj": reflect.TypeOf((*q.Obj)(nil)).Elem(), + "Sym": reflect.TypeOf((*q.Sym)(nil)).Elem(), + "Table": reflect.TypeOf((*q.Table)(nil)).Elem(), + "UnknownFileError": reflect.TypeOf((*q.UnknownFileError)(nil)).Elem(), + "UnknownLineError": reflect.TypeOf((*q.UnknownLineError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewLineTable": reflect.ValueOf(q.NewLineTable), + "NewTable": reflect.ValueOf(q.NewTable), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/debug/macho/go121_export.go b/pkg/debug/macho/go121_export.go index dc1ae1ff..80c28b8b 100755 --- a/pkg/debug/macho/go121_export.go +++ b/pkg/debug/macho/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package macho diff --git a/pkg/debug/macho/go122_export.go b/pkg/debug/macho/go122_export.go new file mode 100755 index 00000000..f654b27d --- /dev/null +++ b/pkg/debug/macho/go122_export.go @@ -0,0 +1,174 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package macho + +import ( + q "debug/macho" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "macho", + Path: "debug/macho", + Deps: map[string]string{ + "bytes": "bytes", + "compress/zlib": "zlib", + "debug/dwarf": "dwarf", + "encoding/binary": "binary", + "fmt": "fmt", + "internal/saferio": "saferio", + "io": "io", + "os": "os", + "strconv": "strconv", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{ + "Load": reflect.TypeOf((*q.Load)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cpu": reflect.TypeOf((*q.Cpu)(nil)).Elem(), + "Dylib": reflect.TypeOf((*q.Dylib)(nil)).Elem(), + "DylibCmd": reflect.TypeOf((*q.DylibCmd)(nil)).Elem(), + "Dysymtab": reflect.TypeOf((*q.Dysymtab)(nil)).Elem(), + "DysymtabCmd": reflect.TypeOf((*q.DysymtabCmd)(nil)).Elem(), + "FatArch": reflect.TypeOf((*q.FatArch)(nil)).Elem(), + "FatArchHeader": reflect.TypeOf((*q.FatArchHeader)(nil)).Elem(), + "FatFile": reflect.TypeOf((*q.FatFile)(nil)).Elem(), + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "FileHeader": reflect.TypeOf((*q.FileHeader)(nil)).Elem(), + "FormatError": reflect.TypeOf((*q.FormatError)(nil)).Elem(), + "LoadBytes": reflect.TypeOf((*q.LoadBytes)(nil)).Elem(), + "LoadCmd": reflect.TypeOf((*q.LoadCmd)(nil)).Elem(), + "Nlist32": reflect.TypeOf((*q.Nlist32)(nil)).Elem(), + "Nlist64": reflect.TypeOf((*q.Nlist64)(nil)).Elem(), + "Regs386": reflect.TypeOf((*q.Regs386)(nil)).Elem(), + "RegsAMD64": reflect.TypeOf((*q.RegsAMD64)(nil)).Elem(), + "Reloc": reflect.TypeOf((*q.Reloc)(nil)).Elem(), + "RelocTypeARM": reflect.TypeOf((*q.RelocTypeARM)(nil)).Elem(), + "RelocTypeARM64": reflect.TypeOf((*q.RelocTypeARM64)(nil)).Elem(), + "RelocTypeGeneric": reflect.TypeOf((*q.RelocTypeGeneric)(nil)).Elem(), + "RelocTypeX86_64": reflect.TypeOf((*q.RelocTypeX86_64)(nil)).Elem(), + "Rpath": reflect.TypeOf((*q.Rpath)(nil)).Elem(), + "RpathCmd": reflect.TypeOf((*q.RpathCmd)(nil)).Elem(), + "Section": reflect.TypeOf((*q.Section)(nil)).Elem(), + "Section32": reflect.TypeOf((*q.Section32)(nil)).Elem(), + "Section64": reflect.TypeOf((*q.Section64)(nil)).Elem(), + "SectionHeader": reflect.TypeOf((*q.SectionHeader)(nil)).Elem(), + "Segment": reflect.TypeOf((*q.Segment)(nil)).Elem(), + "Segment32": reflect.TypeOf((*q.Segment32)(nil)).Elem(), + "Segment64": reflect.TypeOf((*q.Segment64)(nil)).Elem(), + "SegmentHeader": reflect.TypeOf((*q.SegmentHeader)(nil)).Elem(), + "Symbol": reflect.TypeOf((*q.Symbol)(nil)).Elem(), + "Symtab": reflect.TypeOf((*q.Symtab)(nil)).Elem(), + "SymtabCmd": reflect.TypeOf((*q.SymtabCmd)(nil)).Elem(), + "Thread": reflect.TypeOf((*q.Thread)(nil)).Elem(), + "Type": reflect.TypeOf((*q.Type)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrNotFat": reflect.ValueOf(&q.ErrNotFat), + }, + Funcs: map[string]reflect.Value{ + "NewFatFile": reflect.ValueOf(q.NewFatFile), + "NewFile": reflect.ValueOf(q.NewFile), + "Open": reflect.ValueOf(q.Open), + "OpenFat": reflect.ValueOf(q.OpenFat), + }, + TypedConsts: map[string]igop.TypedConst{ + "ARM64_RELOC_ADDEND": {reflect.TypeOf(q.ARM64_RELOC_ADDEND), constant.MakeInt64(int64(q.ARM64_RELOC_ADDEND))}, + "ARM64_RELOC_BRANCH26": {reflect.TypeOf(q.ARM64_RELOC_BRANCH26), constant.MakeInt64(int64(q.ARM64_RELOC_BRANCH26))}, + "ARM64_RELOC_GOT_LOAD_PAGE21": {reflect.TypeOf(q.ARM64_RELOC_GOT_LOAD_PAGE21), constant.MakeInt64(int64(q.ARM64_RELOC_GOT_LOAD_PAGE21))}, + "ARM64_RELOC_GOT_LOAD_PAGEOFF12": {reflect.TypeOf(q.ARM64_RELOC_GOT_LOAD_PAGEOFF12), constant.MakeInt64(int64(q.ARM64_RELOC_GOT_LOAD_PAGEOFF12))}, + "ARM64_RELOC_PAGE21": {reflect.TypeOf(q.ARM64_RELOC_PAGE21), constant.MakeInt64(int64(q.ARM64_RELOC_PAGE21))}, + "ARM64_RELOC_PAGEOFF12": {reflect.TypeOf(q.ARM64_RELOC_PAGEOFF12), constant.MakeInt64(int64(q.ARM64_RELOC_PAGEOFF12))}, + "ARM64_RELOC_POINTER_TO_GOT": {reflect.TypeOf(q.ARM64_RELOC_POINTER_TO_GOT), constant.MakeInt64(int64(q.ARM64_RELOC_POINTER_TO_GOT))}, + "ARM64_RELOC_SUBTRACTOR": {reflect.TypeOf(q.ARM64_RELOC_SUBTRACTOR), constant.MakeInt64(int64(q.ARM64_RELOC_SUBTRACTOR))}, + "ARM64_RELOC_TLVP_LOAD_PAGE21": {reflect.TypeOf(q.ARM64_RELOC_TLVP_LOAD_PAGE21), constant.MakeInt64(int64(q.ARM64_RELOC_TLVP_LOAD_PAGE21))}, + "ARM64_RELOC_TLVP_LOAD_PAGEOFF12": {reflect.TypeOf(q.ARM64_RELOC_TLVP_LOAD_PAGEOFF12), constant.MakeInt64(int64(q.ARM64_RELOC_TLVP_LOAD_PAGEOFF12))}, + "ARM64_RELOC_UNSIGNED": {reflect.TypeOf(q.ARM64_RELOC_UNSIGNED), constant.MakeInt64(int64(q.ARM64_RELOC_UNSIGNED))}, + "ARM_RELOC_BR24": {reflect.TypeOf(q.ARM_RELOC_BR24), constant.MakeInt64(int64(q.ARM_RELOC_BR24))}, + "ARM_RELOC_HALF": {reflect.TypeOf(q.ARM_RELOC_HALF), constant.MakeInt64(int64(q.ARM_RELOC_HALF))}, + "ARM_RELOC_HALF_SECTDIFF": {reflect.TypeOf(q.ARM_RELOC_HALF_SECTDIFF), constant.MakeInt64(int64(q.ARM_RELOC_HALF_SECTDIFF))}, + "ARM_RELOC_LOCAL_SECTDIFF": {reflect.TypeOf(q.ARM_RELOC_LOCAL_SECTDIFF), constant.MakeInt64(int64(q.ARM_RELOC_LOCAL_SECTDIFF))}, + "ARM_RELOC_PAIR": {reflect.TypeOf(q.ARM_RELOC_PAIR), constant.MakeInt64(int64(q.ARM_RELOC_PAIR))}, + "ARM_RELOC_PB_LA_PTR": {reflect.TypeOf(q.ARM_RELOC_PB_LA_PTR), constant.MakeInt64(int64(q.ARM_RELOC_PB_LA_PTR))}, + "ARM_RELOC_SECTDIFF": {reflect.TypeOf(q.ARM_RELOC_SECTDIFF), constant.MakeInt64(int64(q.ARM_RELOC_SECTDIFF))}, + "ARM_RELOC_VANILLA": {reflect.TypeOf(q.ARM_RELOC_VANILLA), constant.MakeInt64(int64(q.ARM_RELOC_VANILLA))}, + "ARM_THUMB_32BIT_BRANCH": {reflect.TypeOf(q.ARM_THUMB_32BIT_BRANCH), constant.MakeInt64(int64(q.ARM_THUMB_32BIT_BRANCH))}, + "ARM_THUMB_RELOC_BR22": {reflect.TypeOf(q.ARM_THUMB_RELOC_BR22), constant.MakeInt64(int64(q.ARM_THUMB_RELOC_BR22))}, + "Cpu386": {reflect.TypeOf(q.Cpu386), constant.MakeInt64(int64(q.Cpu386))}, + "CpuAmd64": {reflect.TypeOf(q.CpuAmd64), constant.MakeInt64(int64(q.CpuAmd64))}, + "CpuArm": {reflect.TypeOf(q.CpuArm), constant.MakeInt64(int64(q.CpuArm))}, + "CpuArm64": {reflect.TypeOf(q.CpuArm64), constant.MakeInt64(int64(q.CpuArm64))}, + "CpuPpc": {reflect.TypeOf(q.CpuPpc), constant.MakeInt64(int64(q.CpuPpc))}, + "CpuPpc64": {reflect.TypeOf(q.CpuPpc64), constant.MakeInt64(int64(q.CpuPpc64))}, + "FlagAllModsBound": {reflect.TypeOf(q.FlagAllModsBound), constant.MakeInt64(int64(q.FlagAllModsBound))}, + "FlagAllowStackExecution": {reflect.TypeOf(q.FlagAllowStackExecution), constant.MakeInt64(int64(q.FlagAllowStackExecution))}, + "FlagAppExtensionSafe": {reflect.TypeOf(q.FlagAppExtensionSafe), constant.MakeInt64(int64(q.FlagAppExtensionSafe))}, + "FlagBindAtLoad": {reflect.TypeOf(q.FlagBindAtLoad), constant.MakeInt64(int64(q.FlagBindAtLoad))}, + "FlagBindsToWeak": {reflect.TypeOf(q.FlagBindsToWeak), constant.MakeInt64(int64(q.FlagBindsToWeak))}, + "FlagCanonical": {reflect.TypeOf(q.FlagCanonical), constant.MakeInt64(int64(q.FlagCanonical))}, + "FlagDeadStrippableDylib": {reflect.TypeOf(q.FlagDeadStrippableDylib), constant.MakeInt64(int64(q.FlagDeadStrippableDylib))}, + "FlagDyldLink": {reflect.TypeOf(q.FlagDyldLink), constant.MakeInt64(int64(q.FlagDyldLink))}, + "FlagForceFlat": {reflect.TypeOf(q.FlagForceFlat), constant.MakeInt64(int64(q.FlagForceFlat))}, + "FlagHasTLVDescriptors": {reflect.TypeOf(q.FlagHasTLVDescriptors), constant.MakeInt64(int64(q.FlagHasTLVDescriptors))}, + "FlagIncrLink": {reflect.TypeOf(q.FlagIncrLink), constant.MakeInt64(int64(q.FlagIncrLink))}, + "FlagLazyInit": {reflect.TypeOf(q.FlagLazyInit), constant.MakeInt64(int64(q.FlagLazyInit))}, + "FlagNoFixPrebinding": {reflect.TypeOf(q.FlagNoFixPrebinding), constant.MakeInt64(int64(q.FlagNoFixPrebinding))}, + "FlagNoHeapExecution": {reflect.TypeOf(q.FlagNoHeapExecution), constant.MakeInt64(int64(q.FlagNoHeapExecution))}, + "FlagNoMultiDefs": {reflect.TypeOf(q.FlagNoMultiDefs), constant.MakeInt64(int64(q.FlagNoMultiDefs))}, + "FlagNoReexportedDylibs": {reflect.TypeOf(q.FlagNoReexportedDylibs), constant.MakeInt64(int64(q.FlagNoReexportedDylibs))}, + "FlagNoUndefs": {reflect.TypeOf(q.FlagNoUndefs), constant.MakeInt64(int64(q.FlagNoUndefs))}, + "FlagPIE": {reflect.TypeOf(q.FlagPIE), constant.MakeInt64(int64(q.FlagPIE))}, + "FlagPrebindable": {reflect.TypeOf(q.FlagPrebindable), constant.MakeInt64(int64(q.FlagPrebindable))}, + "FlagPrebound": {reflect.TypeOf(q.FlagPrebound), constant.MakeInt64(int64(q.FlagPrebound))}, + "FlagRootSafe": {reflect.TypeOf(q.FlagRootSafe), constant.MakeInt64(int64(q.FlagRootSafe))}, + "FlagSetuidSafe": {reflect.TypeOf(q.FlagSetuidSafe), constant.MakeInt64(int64(q.FlagSetuidSafe))}, + "FlagSplitSegs": {reflect.TypeOf(q.FlagSplitSegs), constant.MakeInt64(int64(q.FlagSplitSegs))}, + "FlagSubsectionsViaSymbols": {reflect.TypeOf(q.FlagSubsectionsViaSymbols), constant.MakeInt64(int64(q.FlagSubsectionsViaSymbols))}, + "FlagTwoLevel": {reflect.TypeOf(q.FlagTwoLevel), constant.MakeInt64(int64(q.FlagTwoLevel))}, + "FlagWeakDefines": {reflect.TypeOf(q.FlagWeakDefines), constant.MakeInt64(int64(q.FlagWeakDefines))}, + "GENERIC_RELOC_LOCAL_SECTDIFF": {reflect.TypeOf(q.GENERIC_RELOC_LOCAL_SECTDIFF), constant.MakeInt64(int64(q.GENERIC_RELOC_LOCAL_SECTDIFF))}, + "GENERIC_RELOC_PAIR": {reflect.TypeOf(q.GENERIC_RELOC_PAIR), constant.MakeInt64(int64(q.GENERIC_RELOC_PAIR))}, + "GENERIC_RELOC_PB_LA_PTR": {reflect.TypeOf(q.GENERIC_RELOC_PB_LA_PTR), constant.MakeInt64(int64(q.GENERIC_RELOC_PB_LA_PTR))}, + "GENERIC_RELOC_SECTDIFF": {reflect.TypeOf(q.GENERIC_RELOC_SECTDIFF), constant.MakeInt64(int64(q.GENERIC_RELOC_SECTDIFF))}, + "GENERIC_RELOC_TLV": {reflect.TypeOf(q.GENERIC_RELOC_TLV), constant.MakeInt64(int64(q.GENERIC_RELOC_TLV))}, + "GENERIC_RELOC_VANILLA": {reflect.TypeOf(q.GENERIC_RELOC_VANILLA), constant.MakeInt64(int64(q.GENERIC_RELOC_VANILLA))}, + "LoadCmdDylib": {reflect.TypeOf(q.LoadCmdDylib), constant.MakeInt64(int64(q.LoadCmdDylib))}, + "LoadCmdDylinker": {reflect.TypeOf(q.LoadCmdDylinker), constant.MakeInt64(int64(q.LoadCmdDylinker))}, + "LoadCmdDysymtab": {reflect.TypeOf(q.LoadCmdDysymtab), constant.MakeInt64(int64(q.LoadCmdDysymtab))}, + "LoadCmdRpath": {reflect.TypeOf(q.LoadCmdRpath), constant.MakeInt64(int64(q.LoadCmdRpath))}, + "LoadCmdSegment": {reflect.TypeOf(q.LoadCmdSegment), constant.MakeInt64(int64(q.LoadCmdSegment))}, + "LoadCmdSegment64": {reflect.TypeOf(q.LoadCmdSegment64), constant.MakeInt64(int64(q.LoadCmdSegment64))}, + "LoadCmdSymtab": {reflect.TypeOf(q.LoadCmdSymtab), constant.MakeInt64(int64(q.LoadCmdSymtab))}, + "LoadCmdThread": {reflect.TypeOf(q.LoadCmdThread), constant.MakeInt64(int64(q.LoadCmdThread))}, + "LoadCmdUnixThread": {reflect.TypeOf(q.LoadCmdUnixThread), constant.MakeInt64(int64(q.LoadCmdUnixThread))}, + "Magic32": {reflect.TypeOf(q.Magic32), constant.MakeInt64(int64(q.Magic32))}, + "Magic64": {reflect.TypeOf(q.Magic64), constant.MakeInt64(int64(q.Magic64))}, + "MagicFat": {reflect.TypeOf(q.MagicFat), constant.MakeInt64(int64(q.MagicFat))}, + "TypeBundle": {reflect.TypeOf(q.TypeBundle), constant.MakeInt64(int64(q.TypeBundle))}, + "TypeDylib": {reflect.TypeOf(q.TypeDylib), constant.MakeInt64(int64(q.TypeDylib))}, + "TypeExec": {reflect.TypeOf(q.TypeExec), constant.MakeInt64(int64(q.TypeExec))}, + "TypeObj": {reflect.TypeOf(q.TypeObj), constant.MakeInt64(int64(q.TypeObj))}, + "X86_64_RELOC_BRANCH": {reflect.TypeOf(q.X86_64_RELOC_BRANCH), constant.MakeInt64(int64(q.X86_64_RELOC_BRANCH))}, + "X86_64_RELOC_GOT": {reflect.TypeOf(q.X86_64_RELOC_GOT), constant.MakeInt64(int64(q.X86_64_RELOC_GOT))}, + "X86_64_RELOC_GOT_LOAD": {reflect.TypeOf(q.X86_64_RELOC_GOT_LOAD), constant.MakeInt64(int64(q.X86_64_RELOC_GOT_LOAD))}, + "X86_64_RELOC_SIGNED": {reflect.TypeOf(q.X86_64_RELOC_SIGNED), constant.MakeInt64(int64(q.X86_64_RELOC_SIGNED))}, + "X86_64_RELOC_SIGNED_1": {reflect.TypeOf(q.X86_64_RELOC_SIGNED_1), constant.MakeInt64(int64(q.X86_64_RELOC_SIGNED_1))}, + "X86_64_RELOC_SIGNED_2": {reflect.TypeOf(q.X86_64_RELOC_SIGNED_2), constant.MakeInt64(int64(q.X86_64_RELOC_SIGNED_2))}, + "X86_64_RELOC_SIGNED_4": {reflect.TypeOf(q.X86_64_RELOC_SIGNED_4), constant.MakeInt64(int64(q.X86_64_RELOC_SIGNED_4))}, + "X86_64_RELOC_SUBTRACTOR": {reflect.TypeOf(q.X86_64_RELOC_SUBTRACTOR), constant.MakeInt64(int64(q.X86_64_RELOC_SUBTRACTOR))}, + "X86_64_RELOC_TLV": {reflect.TypeOf(q.X86_64_RELOC_TLV), constant.MakeInt64(int64(q.X86_64_RELOC_TLV))}, + "X86_64_RELOC_UNSIGNED": {reflect.TypeOf(q.X86_64_RELOC_UNSIGNED), constant.MakeInt64(int64(q.X86_64_RELOC_UNSIGNED))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/debug/macho/go123_export.go b/pkg/debug/macho/go123_export.go new file mode 100755 index 00000000..52bb6154 --- /dev/null +++ b/pkg/debug/macho/go123_export.go @@ -0,0 +1,174 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package macho + +import ( + q "debug/macho" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "macho", + Path: "debug/macho", + Deps: map[string]string{ + "bytes": "bytes", + "compress/zlib": "zlib", + "debug/dwarf": "dwarf", + "encoding/binary": "binary", + "fmt": "fmt", + "internal/saferio": "saferio", + "io": "io", + "os": "os", + "strconv": "strconv", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{ + "Load": reflect.TypeOf((*q.Load)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cpu": reflect.TypeOf((*q.Cpu)(nil)).Elem(), + "Dylib": reflect.TypeOf((*q.Dylib)(nil)).Elem(), + "DylibCmd": reflect.TypeOf((*q.DylibCmd)(nil)).Elem(), + "Dysymtab": reflect.TypeOf((*q.Dysymtab)(nil)).Elem(), + "DysymtabCmd": reflect.TypeOf((*q.DysymtabCmd)(nil)).Elem(), + "FatArch": reflect.TypeOf((*q.FatArch)(nil)).Elem(), + "FatArchHeader": reflect.TypeOf((*q.FatArchHeader)(nil)).Elem(), + "FatFile": reflect.TypeOf((*q.FatFile)(nil)).Elem(), + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "FileHeader": reflect.TypeOf((*q.FileHeader)(nil)).Elem(), + "FormatError": reflect.TypeOf((*q.FormatError)(nil)).Elem(), + "LoadBytes": reflect.TypeOf((*q.LoadBytes)(nil)).Elem(), + "LoadCmd": reflect.TypeOf((*q.LoadCmd)(nil)).Elem(), + "Nlist32": reflect.TypeOf((*q.Nlist32)(nil)).Elem(), + "Nlist64": reflect.TypeOf((*q.Nlist64)(nil)).Elem(), + "Regs386": reflect.TypeOf((*q.Regs386)(nil)).Elem(), + "RegsAMD64": reflect.TypeOf((*q.RegsAMD64)(nil)).Elem(), + "Reloc": reflect.TypeOf((*q.Reloc)(nil)).Elem(), + "RelocTypeARM": reflect.TypeOf((*q.RelocTypeARM)(nil)).Elem(), + "RelocTypeARM64": reflect.TypeOf((*q.RelocTypeARM64)(nil)).Elem(), + "RelocTypeGeneric": reflect.TypeOf((*q.RelocTypeGeneric)(nil)).Elem(), + "RelocTypeX86_64": reflect.TypeOf((*q.RelocTypeX86_64)(nil)).Elem(), + "Rpath": reflect.TypeOf((*q.Rpath)(nil)).Elem(), + "RpathCmd": reflect.TypeOf((*q.RpathCmd)(nil)).Elem(), + "Section": reflect.TypeOf((*q.Section)(nil)).Elem(), + "Section32": reflect.TypeOf((*q.Section32)(nil)).Elem(), + "Section64": reflect.TypeOf((*q.Section64)(nil)).Elem(), + "SectionHeader": reflect.TypeOf((*q.SectionHeader)(nil)).Elem(), + "Segment": reflect.TypeOf((*q.Segment)(nil)).Elem(), + "Segment32": reflect.TypeOf((*q.Segment32)(nil)).Elem(), + "Segment64": reflect.TypeOf((*q.Segment64)(nil)).Elem(), + "SegmentHeader": reflect.TypeOf((*q.SegmentHeader)(nil)).Elem(), + "Symbol": reflect.TypeOf((*q.Symbol)(nil)).Elem(), + "Symtab": reflect.TypeOf((*q.Symtab)(nil)).Elem(), + "SymtabCmd": reflect.TypeOf((*q.SymtabCmd)(nil)).Elem(), + "Thread": reflect.TypeOf((*q.Thread)(nil)).Elem(), + "Type": reflect.TypeOf((*q.Type)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrNotFat": reflect.ValueOf(&q.ErrNotFat), + }, + Funcs: map[string]reflect.Value{ + "NewFatFile": reflect.ValueOf(q.NewFatFile), + "NewFile": reflect.ValueOf(q.NewFile), + "Open": reflect.ValueOf(q.Open), + "OpenFat": reflect.ValueOf(q.OpenFat), + }, + TypedConsts: map[string]igop.TypedConst{ + "ARM64_RELOC_ADDEND": {reflect.TypeOf(q.ARM64_RELOC_ADDEND), constant.MakeInt64(int64(q.ARM64_RELOC_ADDEND))}, + "ARM64_RELOC_BRANCH26": {reflect.TypeOf(q.ARM64_RELOC_BRANCH26), constant.MakeInt64(int64(q.ARM64_RELOC_BRANCH26))}, + "ARM64_RELOC_GOT_LOAD_PAGE21": {reflect.TypeOf(q.ARM64_RELOC_GOT_LOAD_PAGE21), constant.MakeInt64(int64(q.ARM64_RELOC_GOT_LOAD_PAGE21))}, + "ARM64_RELOC_GOT_LOAD_PAGEOFF12": {reflect.TypeOf(q.ARM64_RELOC_GOT_LOAD_PAGEOFF12), constant.MakeInt64(int64(q.ARM64_RELOC_GOT_LOAD_PAGEOFF12))}, + "ARM64_RELOC_PAGE21": {reflect.TypeOf(q.ARM64_RELOC_PAGE21), constant.MakeInt64(int64(q.ARM64_RELOC_PAGE21))}, + "ARM64_RELOC_PAGEOFF12": {reflect.TypeOf(q.ARM64_RELOC_PAGEOFF12), constant.MakeInt64(int64(q.ARM64_RELOC_PAGEOFF12))}, + "ARM64_RELOC_POINTER_TO_GOT": {reflect.TypeOf(q.ARM64_RELOC_POINTER_TO_GOT), constant.MakeInt64(int64(q.ARM64_RELOC_POINTER_TO_GOT))}, + "ARM64_RELOC_SUBTRACTOR": {reflect.TypeOf(q.ARM64_RELOC_SUBTRACTOR), constant.MakeInt64(int64(q.ARM64_RELOC_SUBTRACTOR))}, + "ARM64_RELOC_TLVP_LOAD_PAGE21": {reflect.TypeOf(q.ARM64_RELOC_TLVP_LOAD_PAGE21), constant.MakeInt64(int64(q.ARM64_RELOC_TLVP_LOAD_PAGE21))}, + "ARM64_RELOC_TLVP_LOAD_PAGEOFF12": {reflect.TypeOf(q.ARM64_RELOC_TLVP_LOAD_PAGEOFF12), constant.MakeInt64(int64(q.ARM64_RELOC_TLVP_LOAD_PAGEOFF12))}, + "ARM64_RELOC_UNSIGNED": {reflect.TypeOf(q.ARM64_RELOC_UNSIGNED), constant.MakeInt64(int64(q.ARM64_RELOC_UNSIGNED))}, + "ARM_RELOC_BR24": {reflect.TypeOf(q.ARM_RELOC_BR24), constant.MakeInt64(int64(q.ARM_RELOC_BR24))}, + "ARM_RELOC_HALF": {reflect.TypeOf(q.ARM_RELOC_HALF), constant.MakeInt64(int64(q.ARM_RELOC_HALF))}, + "ARM_RELOC_HALF_SECTDIFF": {reflect.TypeOf(q.ARM_RELOC_HALF_SECTDIFF), constant.MakeInt64(int64(q.ARM_RELOC_HALF_SECTDIFF))}, + "ARM_RELOC_LOCAL_SECTDIFF": {reflect.TypeOf(q.ARM_RELOC_LOCAL_SECTDIFF), constant.MakeInt64(int64(q.ARM_RELOC_LOCAL_SECTDIFF))}, + "ARM_RELOC_PAIR": {reflect.TypeOf(q.ARM_RELOC_PAIR), constant.MakeInt64(int64(q.ARM_RELOC_PAIR))}, + "ARM_RELOC_PB_LA_PTR": {reflect.TypeOf(q.ARM_RELOC_PB_LA_PTR), constant.MakeInt64(int64(q.ARM_RELOC_PB_LA_PTR))}, + "ARM_RELOC_SECTDIFF": {reflect.TypeOf(q.ARM_RELOC_SECTDIFF), constant.MakeInt64(int64(q.ARM_RELOC_SECTDIFF))}, + "ARM_RELOC_VANILLA": {reflect.TypeOf(q.ARM_RELOC_VANILLA), constant.MakeInt64(int64(q.ARM_RELOC_VANILLA))}, + "ARM_THUMB_32BIT_BRANCH": {reflect.TypeOf(q.ARM_THUMB_32BIT_BRANCH), constant.MakeInt64(int64(q.ARM_THUMB_32BIT_BRANCH))}, + "ARM_THUMB_RELOC_BR22": {reflect.TypeOf(q.ARM_THUMB_RELOC_BR22), constant.MakeInt64(int64(q.ARM_THUMB_RELOC_BR22))}, + "Cpu386": {reflect.TypeOf(q.Cpu386), constant.MakeInt64(int64(q.Cpu386))}, + "CpuAmd64": {reflect.TypeOf(q.CpuAmd64), constant.MakeInt64(int64(q.CpuAmd64))}, + "CpuArm": {reflect.TypeOf(q.CpuArm), constant.MakeInt64(int64(q.CpuArm))}, + "CpuArm64": {reflect.TypeOf(q.CpuArm64), constant.MakeInt64(int64(q.CpuArm64))}, + "CpuPpc": {reflect.TypeOf(q.CpuPpc), constant.MakeInt64(int64(q.CpuPpc))}, + "CpuPpc64": {reflect.TypeOf(q.CpuPpc64), constant.MakeInt64(int64(q.CpuPpc64))}, + "FlagAllModsBound": {reflect.TypeOf(q.FlagAllModsBound), constant.MakeInt64(int64(q.FlagAllModsBound))}, + "FlagAllowStackExecution": {reflect.TypeOf(q.FlagAllowStackExecution), constant.MakeInt64(int64(q.FlagAllowStackExecution))}, + "FlagAppExtensionSafe": {reflect.TypeOf(q.FlagAppExtensionSafe), constant.MakeInt64(int64(q.FlagAppExtensionSafe))}, + "FlagBindAtLoad": {reflect.TypeOf(q.FlagBindAtLoad), constant.MakeInt64(int64(q.FlagBindAtLoad))}, + "FlagBindsToWeak": {reflect.TypeOf(q.FlagBindsToWeak), constant.MakeInt64(int64(q.FlagBindsToWeak))}, + "FlagCanonical": {reflect.TypeOf(q.FlagCanonical), constant.MakeInt64(int64(q.FlagCanonical))}, + "FlagDeadStrippableDylib": {reflect.TypeOf(q.FlagDeadStrippableDylib), constant.MakeInt64(int64(q.FlagDeadStrippableDylib))}, + "FlagDyldLink": {reflect.TypeOf(q.FlagDyldLink), constant.MakeInt64(int64(q.FlagDyldLink))}, + "FlagForceFlat": {reflect.TypeOf(q.FlagForceFlat), constant.MakeInt64(int64(q.FlagForceFlat))}, + "FlagHasTLVDescriptors": {reflect.TypeOf(q.FlagHasTLVDescriptors), constant.MakeInt64(int64(q.FlagHasTLVDescriptors))}, + "FlagIncrLink": {reflect.TypeOf(q.FlagIncrLink), constant.MakeInt64(int64(q.FlagIncrLink))}, + "FlagLazyInit": {reflect.TypeOf(q.FlagLazyInit), constant.MakeInt64(int64(q.FlagLazyInit))}, + "FlagNoFixPrebinding": {reflect.TypeOf(q.FlagNoFixPrebinding), constant.MakeInt64(int64(q.FlagNoFixPrebinding))}, + "FlagNoHeapExecution": {reflect.TypeOf(q.FlagNoHeapExecution), constant.MakeInt64(int64(q.FlagNoHeapExecution))}, + "FlagNoMultiDefs": {reflect.TypeOf(q.FlagNoMultiDefs), constant.MakeInt64(int64(q.FlagNoMultiDefs))}, + "FlagNoReexportedDylibs": {reflect.TypeOf(q.FlagNoReexportedDylibs), constant.MakeInt64(int64(q.FlagNoReexportedDylibs))}, + "FlagNoUndefs": {reflect.TypeOf(q.FlagNoUndefs), constant.MakeInt64(int64(q.FlagNoUndefs))}, + "FlagPIE": {reflect.TypeOf(q.FlagPIE), constant.MakeInt64(int64(q.FlagPIE))}, + "FlagPrebindable": {reflect.TypeOf(q.FlagPrebindable), constant.MakeInt64(int64(q.FlagPrebindable))}, + "FlagPrebound": {reflect.TypeOf(q.FlagPrebound), constant.MakeInt64(int64(q.FlagPrebound))}, + "FlagRootSafe": {reflect.TypeOf(q.FlagRootSafe), constant.MakeInt64(int64(q.FlagRootSafe))}, + "FlagSetuidSafe": {reflect.TypeOf(q.FlagSetuidSafe), constant.MakeInt64(int64(q.FlagSetuidSafe))}, + "FlagSplitSegs": {reflect.TypeOf(q.FlagSplitSegs), constant.MakeInt64(int64(q.FlagSplitSegs))}, + "FlagSubsectionsViaSymbols": {reflect.TypeOf(q.FlagSubsectionsViaSymbols), constant.MakeInt64(int64(q.FlagSubsectionsViaSymbols))}, + "FlagTwoLevel": {reflect.TypeOf(q.FlagTwoLevel), constant.MakeInt64(int64(q.FlagTwoLevel))}, + "FlagWeakDefines": {reflect.TypeOf(q.FlagWeakDefines), constant.MakeInt64(int64(q.FlagWeakDefines))}, + "GENERIC_RELOC_LOCAL_SECTDIFF": {reflect.TypeOf(q.GENERIC_RELOC_LOCAL_SECTDIFF), constant.MakeInt64(int64(q.GENERIC_RELOC_LOCAL_SECTDIFF))}, + "GENERIC_RELOC_PAIR": {reflect.TypeOf(q.GENERIC_RELOC_PAIR), constant.MakeInt64(int64(q.GENERIC_RELOC_PAIR))}, + "GENERIC_RELOC_PB_LA_PTR": {reflect.TypeOf(q.GENERIC_RELOC_PB_LA_PTR), constant.MakeInt64(int64(q.GENERIC_RELOC_PB_LA_PTR))}, + "GENERIC_RELOC_SECTDIFF": {reflect.TypeOf(q.GENERIC_RELOC_SECTDIFF), constant.MakeInt64(int64(q.GENERIC_RELOC_SECTDIFF))}, + "GENERIC_RELOC_TLV": {reflect.TypeOf(q.GENERIC_RELOC_TLV), constant.MakeInt64(int64(q.GENERIC_RELOC_TLV))}, + "GENERIC_RELOC_VANILLA": {reflect.TypeOf(q.GENERIC_RELOC_VANILLA), constant.MakeInt64(int64(q.GENERIC_RELOC_VANILLA))}, + "LoadCmdDylib": {reflect.TypeOf(q.LoadCmdDylib), constant.MakeInt64(int64(q.LoadCmdDylib))}, + "LoadCmdDylinker": {reflect.TypeOf(q.LoadCmdDylinker), constant.MakeInt64(int64(q.LoadCmdDylinker))}, + "LoadCmdDysymtab": {reflect.TypeOf(q.LoadCmdDysymtab), constant.MakeInt64(int64(q.LoadCmdDysymtab))}, + "LoadCmdRpath": {reflect.TypeOf(q.LoadCmdRpath), constant.MakeInt64(int64(q.LoadCmdRpath))}, + "LoadCmdSegment": {reflect.TypeOf(q.LoadCmdSegment), constant.MakeInt64(int64(q.LoadCmdSegment))}, + "LoadCmdSegment64": {reflect.TypeOf(q.LoadCmdSegment64), constant.MakeInt64(int64(q.LoadCmdSegment64))}, + "LoadCmdSymtab": {reflect.TypeOf(q.LoadCmdSymtab), constant.MakeInt64(int64(q.LoadCmdSymtab))}, + "LoadCmdThread": {reflect.TypeOf(q.LoadCmdThread), constant.MakeInt64(int64(q.LoadCmdThread))}, + "LoadCmdUnixThread": {reflect.TypeOf(q.LoadCmdUnixThread), constant.MakeInt64(int64(q.LoadCmdUnixThread))}, + "Magic32": {reflect.TypeOf(q.Magic32), constant.MakeInt64(int64(q.Magic32))}, + "Magic64": {reflect.TypeOf(q.Magic64), constant.MakeInt64(int64(q.Magic64))}, + "MagicFat": {reflect.TypeOf(q.MagicFat), constant.MakeInt64(int64(q.MagicFat))}, + "TypeBundle": {reflect.TypeOf(q.TypeBundle), constant.MakeInt64(int64(q.TypeBundle))}, + "TypeDylib": {reflect.TypeOf(q.TypeDylib), constant.MakeInt64(int64(q.TypeDylib))}, + "TypeExec": {reflect.TypeOf(q.TypeExec), constant.MakeInt64(int64(q.TypeExec))}, + "TypeObj": {reflect.TypeOf(q.TypeObj), constant.MakeInt64(int64(q.TypeObj))}, + "X86_64_RELOC_BRANCH": {reflect.TypeOf(q.X86_64_RELOC_BRANCH), constant.MakeInt64(int64(q.X86_64_RELOC_BRANCH))}, + "X86_64_RELOC_GOT": {reflect.TypeOf(q.X86_64_RELOC_GOT), constant.MakeInt64(int64(q.X86_64_RELOC_GOT))}, + "X86_64_RELOC_GOT_LOAD": {reflect.TypeOf(q.X86_64_RELOC_GOT_LOAD), constant.MakeInt64(int64(q.X86_64_RELOC_GOT_LOAD))}, + "X86_64_RELOC_SIGNED": {reflect.TypeOf(q.X86_64_RELOC_SIGNED), constant.MakeInt64(int64(q.X86_64_RELOC_SIGNED))}, + "X86_64_RELOC_SIGNED_1": {reflect.TypeOf(q.X86_64_RELOC_SIGNED_1), constant.MakeInt64(int64(q.X86_64_RELOC_SIGNED_1))}, + "X86_64_RELOC_SIGNED_2": {reflect.TypeOf(q.X86_64_RELOC_SIGNED_2), constant.MakeInt64(int64(q.X86_64_RELOC_SIGNED_2))}, + "X86_64_RELOC_SIGNED_4": {reflect.TypeOf(q.X86_64_RELOC_SIGNED_4), constant.MakeInt64(int64(q.X86_64_RELOC_SIGNED_4))}, + "X86_64_RELOC_SUBTRACTOR": {reflect.TypeOf(q.X86_64_RELOC_SUBTRACTOR), constant.MakeInt64(int64(q.X86_64_RELOC_SUBTRACTOR))}, + "X86_64_RELOC_TLV": {reflect.TypeOf(q.X86_64_RELOC_TLV), constant.MakeInt64(int64(q.X86_64_RELOC_TLV))}, + "X86_64_RELOC_UNSIGNED": {reflect.TypeOf(q.X86_64_RELOC_UNSIGNED), constant.MakeInt64(int64(q.X86_64_RELOC_UNSIGNED))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/debug/pe/go121_export.go b/pkg/debug/pe/go121_export.go index 717782a9..adc46873 100755 --- a/pkg/debug/pe/go121_export.go +++ b/pkg/debug/pe/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package pe diff --git a/pkg/debug/pe/go122_export.go b/pkg/debug/pe/go122_export.go new file mode 100755 index 00000000..401d9840 --- /dev/null +++ b/pkg/debug/pe/go122_export.go @@ -0,0 +1,160 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package pe + +import ( + q "debug/pe" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "pe", + Path: "debug/pe", + Deps: map[string]string{ + "bytes": "bytes", + "compress/zlib": "zlib", + "debug/dwarf": "dwarf", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "internal/saferio": "saferio", + "io": "io", + "os": "os", + "strconv": "strconv", + "strings": "strings", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "COFFSymbol": reflect.TypeOf((*q.COFFSymbol)(nil)).Elem(), + "COFFSymbolAuxFormat5": reflect.TypeOf((*q.COFFSymbolAuxFormat5)(nil)).Elem(), + "DataDirectory": reflect.TypeOf((*q.DataDirectory)(nil)).Elem(), + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "FileHeader": reflect.TypeOf((*q.FileHeader)(nil)).Elem(), + "FormatError": reflect.TypeOf((*q.FormatError)(nil)).Elem(), + "ImportDirectory": reflect.TypeOf((*q.ImportDirectory)(nil)).Elem(), + "OptionalHeader32": reflect.TypeOf((*q.OptionalHeader32)(nil)).Elem(), + "OptionalHeader64": reflect.TypeOf((*q.OptionalHeader64)(nil)).Elem(), + "Reloc": reflect.TypeOf((*q.Reloc)(nil)).Elem(), + "Section": reflect.TypeOf((*q.Section)(nil)).Elem(), + "SectionHeader": reflect.TypeOf((*q.SectionHeader)(nil)).Elem(), + "SectionHeader32": reflect.TypeOf((*q.SectionHeader32)(nil)).Elem(), + "StringTable": reflect.TypeOf((*q.StringTable)(nil)).Elem(), + "Symbol": reflect.TypeOf((*q.Symbol)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewFile": reflect.ValueOf(q.NewFile), + "Open": reflect.ValueOf(q.Open), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "COFFSymbolSize": {"untyped int", constant.MakeInt64(int64(q.COFFSymbolSize))}, + "IMAGE_COMDAT_SELECT_ANY": {"untyped int", constant.MakeInt64(int64(q.IMAGE_COMDAT_SELECT_ANY))}, + "IMAGE_COMDAT_SELECT_ASSOCIATIVE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_COMDAT_SELECT_ASSOCIATIVE))}, + "IMAGE_COMDAT_SELECT_EXACT_MATCH": {"untyped int", constant.MakeInt64(int64(q.IMAGE_COMDAT_SELECT_EXACT_MATCH))}, + "IMAGE_COMDAT_SELECT_LARGEST": {"untyped int", constant.MakeInt64(int64(q.IMAGE_COMDAT_SELECT_LARGEST))}, + "IMAGE_COMDAT_SELECT_NODUPLICATES": {"untyped int", constant.MakeInt64(int64(q.IMAGE_COMDAT_SELECT_NODUPLICATES))}, + "IMAGE_COMDAT_SELECT_SAME_SIZE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_COMDAT_SELECT_SAME_SIZE))}, + "IMAGE_DIRECTORY_ENTRY_ARCHITECTURE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_ARCHITECTURE))}, + "IMAGE_DIRECTORY_ENTRY_BASERELOC": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_BASERELOC))}, + "IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT))}, + "IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR))}, + "IMAGE_DIRECTORY_ENTRY_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_DEBUG))}, + "IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT))}, + "IMAGE_DIRECTORY_ENTRY_EXCEPTION": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_EXCEPTION))}, + "IMAGE_DIRECTORY_ENTRY_EXPORT": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_EXPORT))}, + "IMAGE_DIRECTORY_ENTRY_GLOBALPTR": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_GLOBALPTR))}, + "IMAGE_DIRECTORY_ENTRY_IAT": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_IAT))}, + "IMAGE_DIRECTORY_ENTRY_IMPORT": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_IMPORT))}, + "IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG))}, + "IMAGE_DIRECTORY_ENTRY_RESOURCE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_RESOURCE))}, + "IMAGE_DIRECTORY_ENTRY_SECURITY": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_SECURITY))}, + "IMAGE_DIRECTORY_ENTRY_TLS": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_TLS))}, + "IMAGE_DLLCHARACTERISTICS_APPCONTAINER": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_APPCONTAINER))}, + "IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE))}, + "IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY))}, + "IMAGE_DLLCHARACTERISTICS_GUARD_CF": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_GUARD_CF))}, + "IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA))}, + "IMAGE_DLLCHARACTERISTICS_NO_BIND": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_NO_BIND))}, + "IMAGE_DLLCHARACTERISTICS_NO_ISOLATION": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_NO_ISOLATION))}, + "IMAGE_DLLCHARACTERISTICS_NO_SEH": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_NO_SEH))}, + "IMAGE_DLLCHARACTERISTICS_NX_COMPAT": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_NX_COMPAT))}, + "IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE))}, + "IMAGE_DLLCHARACTERISTICS_WDM_DRIVER": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_WDM_DRIVER))}, + "IMAGE_FILE_32BIT_MACHINE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_32BIT_MACHINE))}, + "IMAGE_FILE_AGGRESIVE_WS_TRIM": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_AGGRESIVE_WS_TRIM))}, + "IMAGE_FILE_BYTES_REVERSED_HI": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_BYTES_REVERSED_HI))}, + "IMAGE_FILE_BYTES_REVERSED_LO": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_BYTES_REVERSED_LO))}, + "IMAGE_FILE_DEBUG_STRIPPED": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_DEBUG_STRIPPED))}, + "IMAGE_FILE_DLL": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_DLL))}, + "IMAGE_FILE_EXECUTABLE_IMAGE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_EXECUTABLE_IMAGE))}, + "IMAGE_FILE_LARGE_ADDRESS_AWARE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_LARGE_ADDRESS_AWARE))}, + "IMAGE_FILE_LINE_NUMS_STRIPPED": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_LINE_NUMS_STRIPPED))}, + "IMAGE_FILE_LOCAL_SYMS_STRIPPED": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_LOCAL_SYMS_STRIPPED))}, + "IMAGE_FILE_MACHINE_AM33": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_AM33))}, + "IMAGE_FILE_MACHINE_AMD64": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_AMD64))}, + "IMAGE_FILE_MACHINE_ARM": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_ARM))}, + "IMAGE_FILE_MACHINE_ARM64": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_ARM64))}, + "IMAGE_FILE_MACHINE_ARMNT": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_ARMNT))}, + "IMAGE_FILE_MACHINE_EBC": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_EBC))}, + "IMAGE_FILE_MACHINE_I386": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_I386))}, + "IMAGE_FILE_MACHINE_IA64": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_IA64))}, + "IMAGE_FILE_MACHINE_LOONGARCH32": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_LOONGARCH32))}, + "IMAGE_FILE_MACHINE_LOONGARCH64": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_LOONGARCH64))}, + "IMAGE_FILE_MACHINE_M32R": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_M32R))}, + "IMAGE_FILE_MACHINE_MIPS16": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_MIPS16))}, + "IMAGE_FILE_MACHINE_MIPSFPU": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_MIPSFPU))}, + "IMAGE_FILE_MACHINE_MIPSFPU16": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_MIPSFPU16))}, + "IMAGE_FILE_MACHINE_POWERPC": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_POWERPC))}, + "IMAGE_FILE_MACHINE_POWERPCFP": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_POWERPCFP))}, + "IMAGE_FILE_MACHINE_R4000": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_R4000))}, + "IMAGE_FILE_MACHINE_RISCV128": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_RISCV128))}, + "IMAGE_FILE_MACHINE_RISCV32": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_RISCV32))}, + "IMAGE_FILE_MACHINE_RISCV64": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_RISCV64))}, + "IMAGE_FILE_MACHINE_SH3": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_SH3))}, + "IMAGE_FILE_MACHINE_SH3DSP": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_SH3DSP))}, + "IMAGE_FILE_MACHINE_SH4": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_SH4))}, + "IMAGE_FILE_MACHINE_SH5": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_SH5))}, + "IMAGE_FILE_MACHINE_THUMB": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_THUMB))}, + "IMAGE_FILE_MACHINE_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_UNKNOWN))}, + "IMAGE_FILE_MACHINE_WCEMIPSV2": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_WCEMIPSV2))}, + "IMAGE_FILE_NET_RUN_FROM_SWAP": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_NET_RUN_FROM_SWAP))}, + "IMAGE_FILE_RELOCS_STRIPPED": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_RELOCS_STRIPPED))}, + "IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP))}, + "IMAGE_FILE_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_SYSTEM))}, + "IMAGE_FILE_UP_SYSTEM_ONLY": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_UP_SYSTEM_ONLY))}, + "IMAGE_SCN_CNT_CODE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SCN_CNT_CODE))}, + "IMAGE_SCN_CNT_INITIALIZED_DATA": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SCN_CNT_INITIALIZED_DATA))}, + "IMAGE_SCN_CNT_UNINITIALIZED_DATA": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SCN_CNT_UNINITIALIZED_DATA))}, + "IMAGE_SCN_LNK_COMDAT": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SCN_LNK_COMDAT))}, + "IMAGE_SCN_MEM_DISCARDABLE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SCN_MEM_DISCARDABLE))}, + "IMAGE_SCN_MEM_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SCN_MEM_EXECUTE))}, + "IMAGE_SCN_MEM_READ": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SCN_MEM_READ))}, + "IMAGE_SCN_MEM_WRITE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SCN_MEM_WRITE))}, + "IMAGE_SUBSYSTEM_EFI_APPLICATION": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_EFI_APPLICATION))}, + "IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER))}, + "IMAGE_SUBSYSTEM_EFI_ROM": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_EFI_ROM))}, + "IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER))}, + "IMAGE_SUBSYSTEM_NATIVE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_NATIVE))}, + "IMAGE_SUBSYSTEM_NATIVE_WINDOWS": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_NATIVE_WINDOWS))}, + "IMAGE_SUBSYSTEM_OS2_CUI": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_OS2_CUI))}, + "IMAGE_SUBSYSTEM_POSIX_CUI": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_POSIX_CUI))}, + "IMAGE_SUBSYSTEM_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_UNKNOWN))}, + "IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION))}, + "IMAGE_SUBSYSTEM_WINDOWS_CE_GUI": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_WINDOWS_CE_GUI))}, + "IMAGE_SUBSYSTEM_WINDOWS_CUI": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_WINDOWS_CUI))}, + "IMAGE_SUBSYSTEM_WINDOWS_GUI": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_WINDOWS_GUI))}, + "IMAGE_SUBSYSTEM_XBOX": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_XBOX))}, + }, + }) +} diff --git a/pkg/debug/pe/go123_export.go b/pkg/debug/pe/go123_export.go new file mode 100755 index 00000000..ae505c7c --- /dev/null +++ b/pkg/debug/pe/go123_export.go @@ -0,0 +1,160 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package pe + +import ( + q "debug/pe" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "pe", + Path: "debug/pe", + Deps: map[string]string{ + "bytes": "bytes", + "compress/zlib": "zlib", + "debug/dwarf": "dwarf", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "internal/saferio": "saferio", + "io": "io", + "os": "os", + "strconv": "strconv", + "strings": "strings", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "COFFSymbol": reflect.TypeOf((*q.COFFSymbol)(nil)).Elem(), + "COFFSymbolAuxFormat5": reflect.TypeOf((*q.COFFSymbolAuxFormat5)(nil)).Elem(), + "DataDirectory": reflect.TypeOf((*q.DataDirectory)(nil)).Elem(), + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "FileHeader": reflect.TypeOf((*q.FileHeader)(nil)).Elem(), + "FormatError": reflect.TypeOf((*q.FormatError)(nil)).Elem(), + "ImportDirectory": reflect.TypeOf((*q.ImportDirectory)(nil)).Elem(), + "OptionalHeader32": reflect.TypeOf((*q.OptionalHeader32)(nil)).Elem(), + "OptionalHeader64": reflect.TypeOf((*q.OptionalHeader64)(nil)).Elem(), + "Reloc": reflect.TypeOf((*q.Reloc)(nil)).Elem(), + "Section": reflect.TypeOf((*q.Section)(nil)).Elem(), + "SectionHeader": reflect.TypeOf((*q.SectionHeader)(nil)).Elem(), + "SectionHeader32": reflect.TypeOf((*q.SectionHeader32)(nil)).Elem(), + "StringTable": reflect.TypeOf((*q.StringTable)(nil)).Elem(), + "Symbol": reflect.TypeOf((*q.Symbol)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewFile": reflect.ValueOf(q.NewFile), + "Open": reflect.ValueOf(q.Open), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "COFFSymbolSize": {"untyped int", constant.MakeInt64(int64(q.COFFSymbolSize))}, + "IMAGE_COMDAT_SELECT_ANY": {"untyped int", constant.MakeInt64(int64(q.IMAGE_COMDAT_SELECT_ANY))}, + "IMAGE_COMDAT_SELECT_ASSOCIATIVE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_COMDAT_SELECT_ASSOCIATIVE))}, + "IMAGE_COMDAT_SELECT_EXACT_MATCH": {"untyped int", constant.MakeInt64(int64(q.IMAGE_COMDAT_SELECT_EXACT_MATCH))}, + "IMAGE_COMDAT_SELECT_LARGEST": {"untyped int", constant.MakeInt64(int64(q.IMAGE_COMDAT_SELECT_LARGEST))}, + "IMAGE_COMDAT_SELECT_NODUPLICATES": {"untyped int", constant.MakeInt64(int64(q.IMAGE_COMDAT_SELECT_NODUPLICATES))}, + "IMAGE_COMDAT_SELECT_SAME_SIZE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_COMDAT_SELECT_SAME_SIZE))}, + "IMAGE_DIRECTORY_ENTRY_ARCHITECTURE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_ARCHITECTURE))}, + "IMAGE_DIRECTORY_ENTRY_BASERELOC": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_BASERELOC))}, + "IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT))}, + "IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR))}, + "IMAGE_DIRECTORY_ENTRY_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_DEBUG))}, + "IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT))}, + "IMAGE_DIRECTORY_ENTRY_EXCEPTION": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_EXCEPTION))}, + "IMAGE_DIRECTORY_ENTRY_EXPORT": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_EXPORT))}, + "IMAGE_DIRECTORY_ENTRY_GLOBALPTR": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_GLOBALPTR))}, + "IMAGE_DIRECTORY_ENTRY_IAT": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_IAT))}, + "IMAGE_DIRECTORY_ENTRY_IMPORT": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_IMPORT))}, + "IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG))}, + "IMAGE_DIRECTORY_ENTRY_RESOURCE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_RESOURCE))}, + "IMAGE_DIRECTORY_ENTRY_SECURITY": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_SECURITY))}, + "IMAGE_DIRECTORY_ENTRY_TLS": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DIRECTORY_ENTRY_TLS))}, + "IMAGE_DLLCHARACTERISTICS_APPCONTAINER": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_APPCONTAINER))}, + "IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE))}, + "IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY))}, + "IMAGE_DLLCHARACTERISTICS_GUARD_CF": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_GUARD_CF))}, + "IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA))}, + "IMAGE_DLLCHARACTERISTICS_NO_BIND": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_NO_BIND))}, + "IMAGE_DLLCHARACTERISTICS_NO_ISOLATION": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_NO_ISOLATION))}, + "IMAGE_DLLCHARACTERISTICS_NO_SEH": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_NO_SEH))}, + "IMAGE_DLLCHARACTERISTICS_NX_COMPAT": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_NX_COMPAT))}, + "IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE))}, + "IMAGE_DLLCHARACTERISTICS_WDM_DRIVER": {"untyped int", constant.MakeInt64(int64(q.IMAGE_DLLCHARACTERISTICS_WDM_DRIVER))}, + "IMAGE_FILE_32BIT_MACHINE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_32BIT_MACHINE))}, + "IMAGE_FILE_AGGRESIVE_WS_TRIM": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_AGGRESIVE_WS_TRIM))}, + "IMAGE_FILE_BYTES_REVERSED_HI": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_BYTES_REVERSED_HI))}, + "IMAGE_FILE_BYTES_REVERSED_LO": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_BYTES_REVERSED_LO))}, + "IMAGE_FILE_DEBUG_STRIPPED": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_DEBUG_STRIPPED))}, + "IMAGE_FILE_DLL": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_DLL))}, + "IMAGE_FILE_EXECUTABLE_IMAGE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_EXECUTABLE_IMAGE))}, + "IMAGE_FILE_LARGE_ADDRESS_AWARE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_LARGE_ADDRESS_AWARE))}, + "IMAGE_FILE_LINE_NUMS_STRIPPED": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_LINE_NUMS_STRIPPED))}, + "IMAGE_FILE_LOCAL_SYMS_STRIPPED": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_LOCAL_SYMS_STRIPPED))}, + "IMAGE_FILE_MACHINE_AM33": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_AM33))}, + "IMAGE_FILE_MACHINE_AMD64": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_AMD64))}, + "IMAGE_FILE_MACHINE_ARM": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_ARM))}, + "IMAGE_FILE_MACHINE_ARM64": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_ARM64))}, + "IMAGE_FILE_MACHINE_ARMNT": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_ARMNT))}, + "IMAGE_FILE_MACHINE_EBC": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_EBC))}, + "IMAGE_FILE_MACHINE_I386": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_I386))}, + "IMAGE_FILE_MACHINE_IA64": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_IA64))}, + "IMAGE_FILE_MACHINE_LOONGARCH32": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_LOONGARCH32))}, + "IMAGE_FILE_MACHINE_LOONGARCH64": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_LOONGARCH64))}, + "IMAGE_FILE_MACHINE_M32R": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_M32R))}, + "IMAGE_FILE_MACHINE_MIPS16": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_MIPS16))}, + "IMAGE_FILE_MACHINE_MIPSFPU": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_MIPSFPU))}, + "IMAGE_FILE_MACHINE_MIPSFPU16": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_MIPSFPU16))}, + "IMAGE_FILE_MACHINE_POWERPC": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_POWERPC))}, + "IMAGE_FILE_MACHINE_POWERPCFP": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_POWERPCFP))}, + "IMAGE_FILE_MACHINE_R4000": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_R4000))}, + "IMAGE_FILE_MACHINE_RISCV128": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_RISCV128))}, + "IMAGE_FILE_MACHINE_RISCV32": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_RISCV32))}, + "IMAGE_FILE_MACHINE_RISCV64": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_RISCV64))}, + "IMAGE_FILE_MACHINE_SH3": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_SH3))}, + "IMAGE_FILE_MACHINE_SH3DSP": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_SH3DSP))}, + "IMAGE_FILE_MACHINE_SH4": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_SH4))}, + "IMAGE_FILE_MACHINE_SH5": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_SH5))}, + "IMAGE_FILE_MACHINE_THUMB": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_THUMB))}, + "IMAGE_FILE_MACHINE_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_UNKNOWN))}, + "IMAGE_FILE_MACHINE_WCEMIPSV2": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_MACHINE_WCEMIPSV2))}, + "IMAGE_FILE_NET_RUN_FROM_SWAP": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_NET_RUN_FROM_SWAP))}, + "IMAGE_FILE_RELOCS_STRIPPED": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_RELOCS_STRIPPED))}, + "IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP))}, + "IMAGE_FILE_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_SYSTEM))}, + "IMAGE_FILE_UP_SYSTEM_ONLY": {"untyped int", constant.MakeInt64(int64(q.IMAGE_FILE_UP_SYSTEM_ONLY))}, + "IMAGE_SCN_CNT_CODE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SCN_CNT_CODE))}, + "IMAGE_SCN_CNT_INITIALIZED_DATA": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SCN_CNT_INITIALIZED_DATA))}, + "IMAGE_SCN_CNT_UNINITIALIZED_DATA": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SCN_CNT_UNINITIALIZED_DATA))}, + "IMAGE_SCN_LNK_COMDAT": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SCN_LNK_COMDAT))}, + "IMAGE_SCN_MEM_DISCARDABLE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SCN_MEM_DISCARDABLE))}, + "IMAGE_SCN_MEM_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SCN_MEM_EXECUTE))}, + "IMAGE_SCN_MEM_READ": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SCN_MEM_READ))}, + "IMAGE_SCN_MEM_WRITE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SCN_MEM_WRITE))}, + "IMAGE_SUBSYSTEM_EFI_APPLICATION": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_EFI_APPLICATION))}, + "IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER))}, + "IMAGE_SUBSYSTEM_EFI_ROM": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_EFI_ROM))}, + "IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER))}, + "IMAGE_SUBSYSTEM_NATIVE": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_NATIVE))}, + "IMAGE_SUBSYSTEM_NATIVE_WINDOWS": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_NATIVE_WINDOWS))}, + "IMAGE_SUBSYSTEM_OS2_CUI": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_OS2_CUI))}, + "IMAGE_SUBSYSTEM_POSIX_CUI": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_POSIX_CUI))}, + "IMAGE_SUBSYSTEM_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_UNKNOWN))}, + "IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION))}, + "IMAGE_SUBSYSTEM_WINDOWS_CE_GUI": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_WINDOWS_CE_GUI))}, + "IMAGE_SUBSYSTEM_WINDOWS_CUI": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_WINDOWS_CUI))}, + "IMAGE_SUBSYSTEM_WINDOWS_GUI": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_WINDOWS_GUI))}, + "IMAGE_SUBSYSTEM_XBOX": {"untyped int", constant.MakeInt64(int64(q.IMAGE_SUBSYSTEM_XBOX))}, + }, + }) +} diff --git a/pkg/debug/plan9obj/go121_export.go b/pkg/debug/plan9obj/go121_export.go index 045c9390..e5dc50b7 100755 --- a/pkg/debug/plan9obj/go121_export.go +++ b/pkg/debug/plan9obj/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package plan9obj diff --git a/pkg/debug/plan9obj/go122_export.go b/pkg/debug/plan9obj/go122_export.go new file mode 100755 index 00000000..a136afb6 --- /dev/null +++ b/pkg/debug/plan9obj/go122_export.go @@ -0,0 +1,53 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package plan9obj + +import ( + q "debug/plan9obj" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "plan9obj", + Path: "debug/plan9obj", + Deps: map[string]string{ + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "internal/saferio": "saferio", + "io": "io", + "os": "os", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "FileHeader": reflect.TypeOf((*q.FileHeader)(nil)).Elem(), + "Section": reflect.TypeOf((*q.Section)(nil)).Elem(), + "SectionHeader": reflect.TypeOf((*q.SectionHeader)(nil)).Elem(), + "Sym": reflect.TypeOf((*q.Sym)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrNoSymbols": reflect.ValueOf(&q.ErrNoSymbols), + }, + Funcs: map[string]reflect.Value{ + "NewFile": reflect.ValueOf(q.NewFile), + "Open": reflect.ValueOf(q.Open), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "Magic386": {"untyped int", constant.MakeInt64(int64(q.Magic386))}, + "Magic64": {"untyped int", constant.MakeInt64(int64(q.Magic64))}, + "MagicAMD64": {"untyped int", constant.MakeInt64(int64(q.MagicAMD64))}, + "MagicARM": {"untyped int", constant.MakeInt64(int64(q.MagicARM))}, + }, + }) +} diff --git a/pkg/debug/plan9obj/go123_export.go b/pkg/debug/plan9obj/go123_export.go new file mode 100755 index 00000000..31682e3c --- /dev/null +++ b/pkg/debug/plan9obj/go123_export.go @@ -0,0 +1,53 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package plan9obj + +import ( + q "debug/plan9obj" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "plan9obj", + Path: "debug/plan9obj", + Deps: map[string]string{ + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "internal/saferio": "saferio", + "io": "io", + "os": "os", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "FileHeader": reflect.TypeOf((*q.FileHeader)(nil)).Elem(), + "Section": reflect.TypeOf((*q.Section)(nil)).Elem(), + "SectionHeader": reflect.TypeOf((*q.SectionHeader)(nil)).Elem(), + "Sym": reflect.TypeOf((*q.Sym)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrNoSymbols": reflect.ValueOf(&q.ErrNoSymbols), + }, + Funcs: map[string]reflect.Value{ + "NewFile": reflect.ValueOf(q.NewFile), + "Open": reflect.ValueOf(q.Open), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "Magic386": {"untyped int", constant.MakeInt64(int64(q.Magic386))}, + "Magic64": {"untyped int", constant.MakeInt64(int64(q.Magic64))}, + "MagicAMD64": {"untyped int", constant.MakeInt64(int64(q.MagicAMD64))}, + "MagicARM": {"untyped int", constant.MakeInt64(int64(q.MagicARM))}, + }, + }) +} diff --git a/pkg/embed/go121_export.go b/pkg/embed/go121_export.go index f21d3bc1..43e196ea 100755 --- a/pkg/embed/go121_export.go +++ b/pkg/embed/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package embed diff --git a/pkg/embed/go122_export.go b/pkg/embed/go122_export.go new file mode 100755 index 00000000..69f1bf2f --- /dev/null +++ b/pkg/embed/go122_export.go @@ -0,0 +1,36 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package embed + +import ( + q "embed" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "embed", + Path: "embed", + Deps: map[string]string{ + "errors": "errors", + "io": "io", + "io/fs": "fs", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "FS": reflect.TypeOf((*q.FS)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{}, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/embed/go123_export.go b/pkg/embed/go123_export.go new file mode 100755 index 00000000..dc72b22e --- /dev/null +++ b/pkg/embed/go123_export.go @@ -0,0 +1,38 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package embed + +import ( + q "embed" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "embed", + Path: "embed", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/stringslite": "stringslite", + "io": "io", + "io/fs": "fs", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "FS": reflect.TypeOf((*q.FS)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{}, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/encoding/ascii85/go121_export.go b/pkg/encoding/ascii85/go121_export.go index e9ac3c90..2746b406 100755 --- a/pkg/encoding/ascii85/go121_export.go +++ b/pkg/encoding/ascii85/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package ascii85 diff --git a/pkg/encoding/ascii85/go122_export.go b/pkg/encoding/ascii85/go122_export.go new file mode 100755 index 00000000..7704ef04 --- /dev/null +++ b/pkg/encoding/ascii85/go122_export.go @@ -0,0 +1,40 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package ascii85 + +import ( + q "encoding/ascii85" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "ascii85", + Path: "encoding/ascii85", + Deps: map[string]string{ + "io": "io", + "strconv": "strconv", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "CorruptInputError": reflect.TypeOf((*q.CorruptInputError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Decode": reflect.ValueOf(q.Decode), + "Encode": reflect.ValueOf(q.Encode), + "MaxEncodedLen": reflect.ValueOf(q.MaxEncodedLen), + "NewDecoder": reflect.ValueOf(q.NewDecoder), + "NewEncoder": reflect.ValueOf(q.NewEncoder), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/encoding/ascii85/go123_export.go b/pkg/encoding/ascii85/go123_export.go new file mode 100755 index 00000000..ec01a79c --- /dev/null +++ b/pkg/encoding/ascii85/go123_export.go @@ -0,0 +1,40 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package ascii85 + +import ( + q "encoding/ascii85" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "ascii85", + Path: "encoding/ascii85", + Deps: map[string]string{ + "io": "io", + "strconv": "strconv", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "CorruptInputError": reflect.TypeOf((*q.CorruptInputError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Decode": reflect.ValueOf(q.Decode), + "Encode": reflect.ValueOf(q.Encode), + "MaxEncodedLen": reflect.ValueOf(q.MaxEncodedLen), + "NewDecoder": reflect.ValueOf(q.NewDecoder), + "NewEncoder": reflect.ValueOf(q.NewEncoder), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/encoding/asn1/go121_export.go b/pkg/encoding/asn1/go121_export.go index 01228ae5..3dbe2adc 100755 --- a/pkg/encoding/asn1/go121_export.go +++ b/pkg/encoding/asn1/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package asn1 diff --git a/pkg/encoding/asn1/go122_export.go b/pkg/encoding/asn1/go122_export.go new file mode 100755 index 00000000..d3079848 --- /dev/null +++ b/pkg/encoding/asn1/go122_export.go @@ -0,0 +1,83 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package asn1 + +import ( + q "encoding/asn1" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "asn1", + Path: "encoding/asn1", + Deps: map[string]string{ + "bytes": "bytes", + "errors": "errors", + "fmt": "fmt", + "math": "math", + "math/big": "big", + "reflect": "reflect", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "time": "time", + "unicode/utf16": "utf16", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "BitString": reflect.TypeOf((*q.BitString)(nil)).Elem(), + "Enumerated": reflect.TypeOf((*q.Enumerated)(nil)).Elem(), + "Flag": reflect.TypeOf((*q.Flag)(nil)).Elem(), + "ObjectIdentifier": reflect.TypeOf((*q.ObjectIdentifier)(nil)).Elem(), + "RawContent": reflect.TypeOf((*q.RawContent)(nil)).Elem(), + "RawValue": reflect.TypeOf((*q.RawValue)(nil)).Elem(), + "StructuralError": reflect.TypeOf((*q.StructuralError)(nil)).Elem(), + "SyntaxError": reflect.TypeOf((*q.SyntaxError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "NullBytes": reflect.ValueOf(&q.NullBytes), + "NullRawValue": reflect.ValueOf(&q.NullRawValue), + }, + Funcs: map[string]reflect.Value{ + "Marshal": reflect.ValueOf(q.Marshal), + "MarshalWithParams": reflect.ValueOf(q.MarshalWithParams), + "Unmarshal": reflect.ValueOf(q.Unmarshal), + "UnmarshalWithParams": reflect.ValueOf(q.UnmarshalWithParams), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "ClassApplication": {"untyped int", constant.MakeInt64(int64(q.ClassApplication))}, + "ClassContextSpecific": {"untyped int", constant.MakeInt64(int64(q.ClassContextSpecific))}, + "ClassPrivate": {"untyped int", constant.MakeInt64(int64(q.ClassPrivate))}, + "ClassUniversal": {"untyped int", constant.MakeInt64(int64(q.ClassUniversal))}, + "TagBMPString": {"untyped int", constant.MakeInt64(int64(q.TagBMPString))}, + "TagBitString": {"untyped int", constant.MakeInt64(int64(q.TagBitString))}, + "TagBoolean": {"untyped int", constant.MakeInt64(int64(q.TagBoolean))}, + "TagEnum": {"untyped int", constant.MakeInt64(int64(q.TagEnum))}, + "TagGeneralString": {"untyped int", constant.MakeInt64(int64(q.TagGeneralString))}, + "TagGeneralizedTime": {"untyped int", constant.MakeInt64(int64(q.TagGeneralizedTime))}, + "TagIA5String": {"untyped int", constant.MakeInt64(int64(q.TagIA5String))}, + "TagInteger": {"untyped int", constant.MakeInt64(int64(q.TagInteger))}, + "TagNull": {"untyped int", constant.MakeInt64(int64(q.TagNull))}, + "TagNumericString": {"untyped int", constant.MakeInt64(int64(q.TagNumericString))}, + "TagOID": {"untyped int", constant.MakeInt64(int64(q.TagOID))}, + "TagOctetString": {"untyped int", constant.MakeInt64(int64(q.TagOctetString))}, + "TagPrintableString": {"untyped int", constant.MakeInt64(int64(q.TagPrintableString))}, + "TagSequence": {"untyped int", constant.MakeInt64(int64(q.TagSequence))}, + "TagSet": {"untyped int", constant.MakeInt64(int64(q.TagSet))}, + "TagT61String": {"untyped int", constant.MakeInt64(int64(q.TagT61String))}, + "TagUTCTime": {"untyped int", constant.MakeInt64(int64(q.TagUTCTime))}, + "TagUTF8String": {"untyped int", constant.MakeInt64(int64(q.TagUTF8String))}, + }, + }) +} diff --git a/pkg/encoding/asn1/go123_export.go b/pkg/encoding/asn1/go123_export.go new file mode 100755 index 00000000..ce71e305 --- /dev/null +++ b/pkg/encoding/asn1/go123_export.go @@ -0,0 +1,83 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package asn1 + +import ( + q "encoding/asn1" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "asn1", + Path: "encoding/asn1", + Deps: map[string]string{ + "bytes": "bytes", + "errors": "errors", + "fmt": "fmt", + "math": "math", + "math/big": "big", + "reflect": "reflect", + "slices": "slices", + "strconv": "strconv", + "strings": "strings", + "time": "time", + "unicode/utf16": "utf16", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "BitString": reflect.TypeOf((*q.BitString)(nil)).Elem(), + "Enumerated": reflect.TypeOf((*q.Enumerated)(nil)).Elem(), + "Flag": reflect.TypeOf((*q.Flag)(nil)).Elem(), + "ObjectIdentifier": reflect.TypeOf((*q.ObjectIdentifier)(nil)).Elem(), + "RawContent": reflect.TypeOf((*q.RawContent)(nil)).Elem(), + "RawValue": reflect.TypeOf((*q.RawValue)(nil)).Elem(), + "StructuralError": reflect.TypeOf((*q.StructuralError)(nil)).Elem(), + "SyntaxError": reflect.TypeOf((*q.SyntaxError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "NullBytes": reflect.ValueOf(&q.NullBytes), + "NullRawValue": reflect.ValueOf(&q.NullRawValue), + }, + Funcs: map[string]reflect.Value{ + "Marshal": reflect.ValueOf(q.Marshal), + "MarshalWithParams": reflect.ValueOf(q.MarshalWithParams), + "Unmarshal": reflect.ValueOf(q.Unmarshal), + "UnmarshalWithParams": reflect.ValueOf(q.UnmarshalWithParams), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "ClassApplication": {"untyped int", constant.MakeInt64(int64(q.ClassApplication))}, + "ClassContextSpecific": {"untyped int", constant.MakeInt64(int64(q.ClassContextSpecific))}, + "ClassPrivate": {"untyped int", constant.MakeInt64(int64(q.ClassPrivate))}, + "ClassUniversal": {"untyped int", constant.MakeInt64(int64(q.ClassUniversal))}, + "TagBMPString": {"untyped int", constant.MakeInt64(int64(q.TagBMPString))}, + "TagBitString": {"untyped int", constant.MakeInt64(int64(q.TagBitString))}, + "TagBoolean": {"untyped int", constant.MakeInt64(int64(q.TagBoolean))}, + "TagEnum": {"untyped int", constant.MakeInt64(int64(q.TagEnum))}, + "TagGeneralString": {"untyped int", constant.MakeInt64(int64(q.TagGeneralString))}, + "TagGeneralizedTime": {"untyped int", constant.MakeInt64(int64(q.TagGeneralizedTime))}, + "TagIA5String": {"untyped int", constant.MakeInt64(int64(q.TagIA5String))}, + "TagInteger": {"untyped int", constant.MakeInt64(int64(q.TagInteger))}, + "TagNull": {"untyped int", constant.MakeInt64(int64(q.TagNull))}, + "TagNumericString": {"untyped int", constant.MakeInt64(int64(q.TagNumericString))}, + "TagOID": {"untyped int", constant.MakeInt64(int64(q.TagOID))}, + "TagOctetString": {"untyped int", constant.MakeInt64(int64(q.TagOctetString))}, + "TagPrintableString": {"untyped int", constant.MakeInt64(int64(q.TagPrintableString))}, + "TagSequence": {"untyped int", constant.MakeInt64(int64(q.TagSequence))}, + "TagSet": {"untyped int", constant.MakeInt64(int64(q.TagSet))}, + "TagT61String": {"untyped int", constant.MakeInt64(int64(q.TagT61String))}, + "TagUTCTime": {"untyped int", constant.MakeInt64(int64(q.TagUTCTime))}, + "TagUTF8String": {"untyped int", constant.MakeInt64(int64(q.TagUTF8String))}, + }, + }) +} diff --git a/pkg/encoding/base32/go121_export.go b/pkg/encoding/base32/go121_export.go index c3eb46dd..970127ee 100755 --- a/pkg/encoding/base32/go121_export.go +++ b/pkg/encoding/base32/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package base32 diff --git a/pkg/encoding/base32/go122_export.go b/pkg/encoding/base32/go122_export.go new file mode 100755 index 00000000..e2d6f5b1 --- /dev/null +++ b/pkg/encoding/base32/go122_export.go @@ -0,0 +1,47 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package base32 + +import ( + q "encoding/base32" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "base32", + Path: "encoding/base32", + Deps: map[string]string{ + "io": "io", + "slices": "slices", + "strconv": "strconv", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "CorruptInputError": reflect.TypeOf((*q.CorruptInputError)(nil)).Elem(), + "Encoding": reflect.TypeOf((*q.Encoding)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "HexEncoding": reflect.ValueOf(&q.HexEncoding), + "StdEncoding": reflect.ValueOf(&q.StdEncoding), + }, + Funcs: map[string]reflect.Value{ + "NewDecoder": reflect.ValueOf(q.NewDecoder), + "NewEncoder": reflect.ValueOf(q.NewEncoder), + "NewEncoding": reflect.ValueOf(q.NewEncoding), + }, + TypedConsts: map[string]igop.TypedConst{ + "NoPadding": {reflect.TypeOf(q.NoPadding), constant.MakeInt64(int64(q.NoPadding))}, + "StdPadding": {reflect.TypeOf(q.StdPadding), constant.MakeInt64(int64(q.StdPadding))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/encoding/base32/go123_export.go b/pkg/encoding/base32/go123_export.go new file mode 100755 index 00000000..dde0d3fc --- /dev/null +++ b/pkg/encoding/base32/go123_export.go @@ -0,0 +1,47 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package base32 + +import ( + q "encoding/base32" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "base32", + Path: "encoding/base32", + Deps: map[string]string{ + "io": "io", + "slices": "slices", + "strconv": "strconv", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "CorruptInputError": reflect.TypeOf((*q.CorruptInputError)(nil)).Elem(), + "Encoding": reflect.TypeOf((*q.Encoding)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "HexEncoding": reflect.ValueOf(&q.HexEncoding), + "StdEncoding": reflect.ValueOf(&q.StdEncoding), + }, + Funcs: map[string]reflect.Value{ + "NewDecoder": reflect.ValueOf(q.NewDecoder), + "NewEncoder": reflect.ValueOf(q.NewEncoder), + "NewEncoding": reflect.ValueOf(q.NewEncoding), + }, + TypedConsts: map[string]igop.TypedConst{ + "NoPadding": {reflect.TypeOf(q.NoPadding), constant.MakeInt64(int64(q.NoPadding))}, + "StdPadding": {reflect.TypeOf(q.StdPadding), constant.MakeInt64(int64(q.StdPadding))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/encoding/base64/go121_export.go b/pkg/encoding/base64/go121_export.go index 691efbca..e2925cac 100755 --- a/pkg/encoding/base64/go121_export.go +++ b/pkg/encoding/base64/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package base64 diff --git a/pkg/encoding/base64/go122_export.go b/pkg/encoding/base64/go122_export.go new file mode 100755 index 00000000..4f4a494a --- /dev/null +++ b/pkg/encoding/base64/go122_export.go @@ -0,0 +1,50 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package base64 + +import ( + q "encoding/base64" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "base64", + Path: "encoding/base64", + Deps: map[string]string{ + "encoding/binary": "binary", + "io": "io", + "slices": "slices", + "strconv": "strconv", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "CorruptInputError": reflect.TypeOf((*q.CorruptInputError)(nil)).Elem(), + "Encoding": reflect.TypeOf((*q.Encoding)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "RawStdEncoding": reflect.ValueOf(&q.RawStdEncoding), + "RawURLEncoding": reflect.ValueOf(&q.RawURLEncoding), + "StdEncoding": reflect.ValueOf(&q.StdEncoding), + "URLEncoding": reflect.ValueOf(&q.URLEncoding), + }, + Funcs: map[string]reflect.Value{ + "NewDecoder": reflect.ValueOf(q.NewDecoder), + "NewEncoder": reflect.ValueOf(q.NewEncoder), + "NewEncoding": reflect.ValueOf(q.NewEncoding), + }, + TypedConsts: map[string]igop.TypedConst{ + "NoPadding": {reflect.TypeOf(q.NoPadding), constant.MakeInt64(int64(q.NoPadding))}, + "StdPadding": {reflect.TypeOf(q.StdPadding), constant.MakeInt64(int64(q.StdPadding))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/encoding/base64/go123_export.go b/pkg/encoding/base64/go123_export.go new file mode 100755 index 00000000..4469f6ea --- /dev/null +++ b/pkg/encoding/base64/go123_export.go @@ -0,0 +1,50 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package base64 + +import ( + q "encoding/base64" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "base64", + Path: "encoding/base64", + Deps: map[string]string{ + "encoding/binary": "binary", + "io": "io", + "slices": "slices", + "strconv": "strconv", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "CorruptInputError": reflect.TypeOf((*q.CorruptInputError)(nil)).Elem(), + "Encoding": reflect.TypeOf((*q.Encoding)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "RawStdEncoding": reflect.ValueOf(&q.RawStdEncoding), + "RawURLEncoding": reflect.ValueOf(&q.RawURLEncoding), + "StdEncoding": reflect.ValueOf(&q.StdEncoding), + "URLEncoding": reflect.ValueOf(&q.URLEncoding), + }, + Funcs: map[string]reflect.Value{ + "NewDecoder": reflect.ValueOf(q.NewDecoder), + "NewEncoder": reflect.ValueOf(q.NewEncoder), + "NewEncoding": reflect.ValueOf(q.NewEncoding), + }, + TypedConsts: map[string]igop.TypedConst{ + "NoPadding": {reflect.TypeOf(q.NoPadding), constant.MakeInt64(int64(q.NoPadding))}, + "StdPadding": {reflect.TypeOf(q.StdPadding), constant.MakeInt64(int64(q.StdPadding))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/encoding/binary/go121_export.go b/pkg/encoding/binary/go121_export.go index 75372cd3..4e467644 100755 --- a/pkg/encoding/binary/go121_export.go +++ b/pkg/encoding/binary/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package binary diff --git a/pkg/encoding/binary/go122_export.go b/pkg/encoding/binary/go122_export.go new file mode 100755 index 00000000..ef381410 --- /dev/null +++ b/pkg/encoding/binary/go122_export.go @@ -0,0 +1,59 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package binary + +import ( + q "encoding/binary" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "binary", + Path: "encoding/binary", + Deps: map[string]string{ + "errors": "errors", + "io": "io", + "math": "math", + "reflect": "reflect", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{ + "AppendByteOrder": reflect.TypeOf((*q.AppendByteOrder)(nil)).Elem(), + "ByteOrder": reflect.TypeOf((*q.ByteOrder)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "BigEndian": reflect.ValueOf(&q.BigEndian), + "LittleEndian": reflect.ValueOf(&q.LittleEndian), + "NativeEndian": reflect.ValueOf(&q.NativeEndian), + }, + Funcs: map[string]reflect.Value{ + "AppendUvarint": reflect.ValueOf(q.AppendUvarint), + "AppendVarint": reflect.ValueOf(q.AppendVarint), + "PutUvarint": reflect.ValueOf(q.PutUvarint), + "PutVarint": reflect.ValueOf(q.PutVarint), + "Read": reflect.ValueOf(q.Read), + "ReadUvarint": reflect.ValueOf(q.ReadUvarint), + "ReadVarint": reflect.ValueOf(q.ReadVarint), + "Size": reflect.ValueOf(q.Size), + "Uvarint": reflect.ValueOf(q.Uvarint), + "Varint": reflect.ValueOf(q.Varint), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "MaxVarintLen16": {"untyped int", constant.MakeInt64(int64(q.MaxVarintLen16))}, + "MaxVarintLen32": {"untyped int", constant.MakeInt64(int64(q.MaxVarintLen32))}, + "MaxVarintLen64": {"untyped int", constant.MakeInt64(int64(q.MaxVarintLen64))}, + }, + }) +} diff --git a/pkg/encoding/binary/go123_export.go b/pkg/encoding/binary/go123_export.go new file mode 100755 index 00000000..8db6f05d --- /dev/null +++ b/pkg/encoding/binary/go123_export.go @@ -0,0 +1,63 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package binary + +import ( + q "encoding/binary" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "binary", + Path: "encoding/binary", + Deps: map[string]string{ + "errors": "errors", + "io": "io", + "math": "math", + "reflect": "reflect", + "slices": "slices", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{ + "AppendByteOrder": reflect.TypeOf((*q.AppendByteOrder)(nil)).Elem(), + "ByteOrder": reflect.TypeOf((*q.ByteOrder)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "BigEndian": reflect.ValueOf(&q.BigEndian), + "LittleEndian": reflect.ValueOf(&q.LittleEndian), + "NativeEndian": reflect.ValueOf(&q.NativeEndian), + }, + Funcs: map[string]reflect.Value{ + "Append": reflect.ValueOf(q.Append), + "AppendUvarint": reflect.ValueOf(q.AppendUvarint), + "AppendVarint": reflect.ValueOf(q.AppendVarint), + "Decode": reflect.ValueOf(q.Decode), + "Encode": reflect.ValueOf(q.Encode), + "PutUvarint": reflect.ValueOf(q.PutUvarint), + "PutVarint": reflect.ValueOf(q.PutVarint), + "Read": reflect.ValueOf(q.Read), + "ReadUvarint": reflect.ValueOf(q.ReadUvarint), + "ReadVarint": reflect.ValueOf(q.ReadVarint), + "Size": reflect.ValueOf(q.Size), + "Uvarint": reflect.ValueOf(q.Uvarint), + "Varint": reflect.ValueOf(q.Varint), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "MaxVarintLen16": {"untyped int", constant.MakeInt64(int64(q.MaxVarintLen16))}, + "MaxVarintLen32": {"untyped int", constant.MakeInt64(int64(q.MaxVarintLen32))}, + "MaxVarintLen64": {"untyped int", constant.MakeInt64(int64(q.MaxVarintLen64))}, + }, + }) +} diff --git a/pkg/encoding/csv/go121_export.go b/pkg/encoding/csv/go121_export.go index 15fa2361..c3fbb805 100755 --- a/pkg/encoding/csv/go121_export.go +++ b/pkg/encoding/csv/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package csv diff --git a/pkg/encoding/csv/go122_export.go b/pkg/encoding/csv/go122_export.go new file mode 100755 index 00000000..019b1bdc --- /dev/null +++ b/pkg/encoding/csv/go122_export.go @@ -0,0 +1,50 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package csv + +import ( + q "encoding/csv" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "csv", + Path: "encoding/csv", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "strings": "strings", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "ParseError": reflect.TypeOf((*q.ParseError)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrBareQuote": reflect.ValueOf(&q.ErrBareQuote), + "ErrFieldCount": reflect.ValueOf(&q.ErrFieldCount), + "ErrQuote": reflect.ValueOf(&q.ErrQuote), + "ErrTrailingComma": reflect.ValueOf(&q.ErrTrailingComma), + }, + Funcs: map[string]reflect.Value{ + "NewReader": reflect.ValueOf(q.NewReader), + "NewWriter": reflect.ValueOf(q.NewWriter), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/encoding/csv/go123_export.go b/pkg/encoding/csv/go123_export.go new file mode 100755 index 00000000..ba45d5a4 --- /dev/null +++ b/pkg/encoding/csv/go123_export.go @@ -0,0 +1,50 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package csv + +import ( + q "encoding/csv" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "csv", + Path: "encoding/csv", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "strings": "strings", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "ParseError": reflect.TypeOf((*q.ParseError)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrBareQuote": reflect.ValueOf(&q.ErrBareQuote), + "ErrFieldCount": reflect.ValueOf(&q.ErrFieldCount), + "ErrQuote": reflect.ValueOf(&q.ErrQuote), + "ErrTrailingComma": reflect.ValueOf(&q.ErrTrailingComma), + }, + Funcs: map[string]reflect.Value{ + "NewReader": reflect.ValueOf(q.NewReader), + "NewWriter": reflect.ValueOf(q.NewWriter), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/encoding/go121_export.go b/pkg/encoding/go121_export.go index b214e134..ab383f92 100755 --- a/pkg/encoding/go121_export.go +++ b/pkg/encoding/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package encoding diff --git a/pkg/encoding/go122_export.go b/pkg/encoding/go122_export.go new file mode 100755 index 00000000..6fe0d002 --- /dev/null +++ b/pkg/encoding/go122_export.go @@ -0,0 +1,34 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package encoding + +import ( + q "encoding" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "encoding", + Path: "encoding", + Deps: map[string]string{}, + Interfaces: map[string]reflect.Type{ + "BinaryMarshaler": reflect.TypeOf((*q.BinaryMarshaler)(nil)).Elem(), + "BinaryUnmarshaler": reflect.TypeOf((*q.BinaryUnmarshaler)(nil)).Elem(), + "TextMarshaler": reflect.TypeOf((*q.TextMarshaler)(nil)).Elem(), + "TextUnmarshaler": reflect.TypeOf((*q.TextUnmarshaler)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{}, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/encoding/go123_export.go b/pkg/encoding/go123_export.go new file mode 100755 index 00000000..8c5f8aac --- /dev/null +++ b/pkg/encoding/go123_export.go @@ -0,0 +1,34 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package encoding + +import ( + q "encoding" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "encoding", + Path: "encoding", + Deps: map[string]string{}, + Interfaces: map[string]reflect.Type{ + "BinaryMarshaler": reflect.TypeOf((*q.BinaryMarshaler)(nil)).Elem(), + "BinaryUnmarshaler": reflect.TypeOf((*q.BinaryUnmarshaler)(nil)).Elem(), + "TextMarshaler": reflect.TypeOf((*q.TextMarshaler)(nil)).Elem(), + "TextUnmarshaler": reflect.TypeOf((*q.TextUnmarshaler)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{}, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/encoding/gob/go121_export.go b/pkg/encoding/gob/go121_export.go index 165e78ed..66d6e8fc 100755 --- a/pkg/encoding/gob/go121_export.go +++ b/pkg/encoding/gob/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package gob diff --git a/pkg/encoding/gob/go122_export.go b/pkg/encoding/gob/go122_export.go new file mode 100755 index 00000000..24eb3451 --- /dev/null +++ b/pkg/encoding/gob/go122_export.go @@ -0,0 +1,57 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package gob + +import ( + q "encoding/gob" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "gob", + Path: "encoding/gob", + Deps: map[string]string{ + "bufio": "bufio", + "encoding": "encoding", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "internal/saferio": "saferio", + "io": "io", + "math": "math", + "math/bits": "bits", + "os": "os", + "reflect": "reflect", + "sync": "sync", + "sync/atomic": "atomic", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "GobDecoder": reflect.TypeOf((*q.GobDecoder)(nil)).Elem(), + "GobEncoder": reflect.TypeOf((*q.GobEncoder)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "CommonType": reflect.TypeOf((*q.CommonType)(nil)).Elem(), + "Decoder": reflect.TypeOf((*q.Decoder)(nil)).Elem(), + "Encoder": reflect.TypeOf((*q.Encoder)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewDecoder": reflect.ValueOf(q.NewDecoder), + "NewEncoder": reflect.ValueOf(q.NewEncoder), + "Register": reflect.ValueOf(q.Register), + "RegisterName": reflect.ValueOf(q.RegisterName), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/encoding/gob/go123_export.go b/pkg/encoding/gob/go123_export.go new file mode 100755 index 00000000..adb84645 --- /dev/null +++ b/pkg/encoding/gob/go123_export.go @@ -0,0 +1,57 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package gob + +import ( + q "encoding/gob" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "gob", + Path: "encoding/gob", + Deps: map[string]string{ + "bufio": "bufio", + "encoding": "encoding", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "internal/saferio": "saferio", + "io": "io", + "math": "math", + "math/bits": "bits", + "os": "os", + "reflect": "reflect", + "sync": "sync", + "sync/atomic": "atomic", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "GobDecoder": reflect.TypeOf((*q.GobDecoder)(nil)).Elem(), + "GobEncoder": reflect.TypeOf((*q.GobEncoder)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "CommonType": reflect.TypeOf((*q.CommonType)(nil)).Elem(), + "Decoder": reflect.TypeOf((*q.Decoder)(nil)).Elem(), + "Encoder": reflect.TypeOf((*q.Encoder)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewDecoder": reflect.ValueOf(q.NewDecoder), + "NewEncoder": reflect.ValueOf(q.NewEncoder), + "Register": reflect.ValueOf(q.Register), + "RegisterName": reflect.ValueOf(q.RegisterName), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/encoding/hex/go121_export.go b/pkg/encoding/hex/go121_export.go index 830ebad6..a7431be2 100755 --- a/pkg/encoding/hex/go121_export.go +++ b/pkg/encoding/hex/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package hex diff --git a/pkg/encoding/hex/go122_export.go b/pkg/encoding/hex/go122_export.go new file mode 100755 index 00000000..3d1e43d6 --- /dev/null +++ b/pkg/encoding/hex/go122_export.go @@ -0,0 +1,52 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package hex + +import ( + q "encoding/hex" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "hex", + Path: "encoding/hex", + Deps: map[string]string{ + "errors": "errors", + "fmt": "fmt", + "io": "io", + "slices": "slices", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "InvalidByteError": reflect.TypeOf((*q.InvalidByteError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrLength": reflect.ValueOf(&q.ErrLength), + }, + Funcs: map[string]reflect.Value{ + "AppendDecode": reflect.ValueOf(q.AppendDecode), + "AppendEncode": reflect.ValueOf(q.AppendEncode), + "Decode": reflect.ValueOf(q.Decode), + "DecodeString": reflect.ValueOf(q.DecodeString), + "DecodedLen": reflect.ValueOf(q.DecodedLen), + "Dump": reflect.ValueOf(q.Dump), + "Dumper": reflect.ValueOf(q.Dumper), + "Encode": reflect.ValueOf(q.Encode), + "EncodeToString": reflect.ValueOf(q.EncodeToString), + "EncodedLen": reflect.ValueOf(q.EncodedLen), + "NewDecoder": reflect.ValueOf(q.NewDecoder), + "NewEncoder": reflect.ValueOf(q.NewEncoder), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/encoding/hex/go123_export.go b/pkg/encoding/hex/go123_export.go new file mode 100755 index 00000000..74a3b7e5 --- /dev/null +++ b/pkg/encoding/hex/go123_export.go @@ -0,0 +1,52 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package hex + +import ( + q "encoding/hex" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "hex", + Path: "encoding/hex", + Deps: map[string]string{ + "errors": "errors", + "fmt": "fmt", + "io": "io", + "slices": "slices", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "InvalidByteError": reflect.TypeOf((*q.InvalidByteError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrLength": reflect.ValueOf(&q.ErrLength), + }, + Funcs: map[string]reflect.Value{ + "AppendDecode": reflect.ValueOf(q.AppendDecode), + "AppendEncode": reflect.ValueOf(q.AppendEncode), + "Decode": reflect.ValueOf(q.Decode), + "DecodeString": reflect.ValueOf(q.DecodeString), + "DecodedLen": reflect.ValueOf(q.DecodedLen), + "Dump": reflect.ValueOf(q.Dump), + "Dumper": reflect.ValueOf(q.Dumper), + "Encode": reflect.ValueOf(q.Encode), + "EncodeToString": reflect.ValueOf(q.EncodeToString), + "EncodedLen": reflect.ValueOf(q.EncodedLen), + "NewDecoder": reflect.ValueOf(q.NewDecoder), + "NewEncoder": reflect.ValueOf(q.NewEncoder), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/encoding/json/go121_export.go b/pkg/encoding/json/go121_export.go index c75f9875..b6b0eb1e 100755 --- a/pkg/encoding/json/go121_export.go +++ b/pkg/encoding/json/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package json diff --git a/pkg/encoding/json/go122_export.go b/pkg/encoding/json/go122_export.go new file mode 100755 index 00000000..881d17a5 --- /dev/null +++ b/pkg/encoding/json/go122_export.go @@ -0,0 +1,74 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package json + +import ( + q "encoding/json" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "json", + Path: "encoding/json", + Deps: map[string]string{ + "bytes": "bytes", + "encoding": "encoding", + "encoding/base64": "base64", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "math": "math", + "reflect": "reflect", + "slices": "slices", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "unicode": "unicode", + "unicode/utf16": "utf16", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "Marshaler": reflect.TypeOf((*q.Marshaler)(nil)).Elem(), + "Token": reflect.TypeOf((*q.Token)(nil)).Elem(), + "Unmarshaler": reflect.TypeOf((*q.Unmarshaler)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Decoder": reflect.TypeOf((*q.Decoder)(nil)).Elem(), + "Delim": reflect.TypeOf((*q.Delim)(nil)).Elem(), + "Encoder": reflect.TypeOf((*q.Encoder)(nil)).Elem(), + "InvalidUTF8Error": reflect.TypeOf((*q.InvalidUTF8Error)(nil)).Elem(), + "InvalidUnmarshalError": reflect.TypeOf((*q.InvalidUnmarshalError)(nil)).Elem(), + "MarshalerError": reflect.TypeOf((*q.MarshalerError)(nil)).Elem(), + "Number": reflect.TypeOf((*q.Number)(nil)).Elem(), + "RawMessage": reflect.TypeOf((*q.RawMessage)(nil)).Elem(), + "SyntaxError": reflect.TypeOf((*q.SyntaxError)(nil)).Elem(), + "UnmarshalFieldError": reflect.TypeOf((*q.UnmarshalFieldError)(nil)).Elem(), + "UnmarshalTypeError": reflect.TypeOf((*q.UnmarshalTypeError)(nil)).Elem(), + "UnsupportedTypeError": reflect.TypeOf((*q.UnsupportedTypeError)(nil)).Elem(), + "UnsupportedValueError": reflect.TypeOf((*q.UnsupportedValueError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Compact": reflect.ValueOf(q.Compact), + "HTMLEscape": reflect.ValueOf(q.HTMLEscape), + "Indent": reflect.ValueOf(q.Indent), + "Marshal": reflect.ValueOf(q.Marshal), + "MarshalIndent": reflect.ValueOf(q.MarshalIndent), + "NewDecoder": reflect.ValueOf(q.NewDecoder), + "NewEncoder": reflect.ValueOf(q.NewEncoder), + "Unmarshal": reflect.ValueOf(q.Unmarshal), + "Valid": reflect.ValueOf(q.Valid), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/encoding/json/go123_export.go b/pkg/encoding/json/go123_export.go new file mode 100755 index 00000000..ed54e03a --- /dev/null +++ b/pkg/encoding/json/go123_export.go @@ -0,0 +1,75 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package json + +import ( + q "encoding/json" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "json", + Path: "encoding/json", + Deps: map[string]string{ + "bytes": "bytes", + "cmp": "cmp", + "encoding": "encoding", + "encoding/base64": "base64", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "math": "math", + "reflect": "reflect", + "slices": "slices", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "unicode": "unicode", + "unicode/utf16": "utf16", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Marshaler": reflect.TypeOf((*q.Marshaler)(nil)).Elem(), + "Token": reflect.TypeOf((*q.Token)(nil)).Elem(), + "Unmarshaler": reflect.TypeOf((*q.Unmarshaler)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Decoder": reflect.TypeOf((*q.Decoder)(nil)).Elem(), + "Delim": reflect.TypeOf((*q.Delim)(nil)).Elem(), + "Encoder": reflect.TypeOf((*q.Encoder)(nil)).Elem(), + "InvalidUTF8Error": reflect.TypeOf((*q.InvalidUTF8Error)(nil)).Elem(), + "InvalidUnmarshalError": reflect.TypeOf((*q.InvalidUnmarshalError)(nil)).Elem(), + "MarshalerError": reflect.TypeOf((*q.MarshalerError)(nil)).Elem(), + "Number": reflect.TypeOf((*q.Number)(nil)).Elem(), + "RawMessage": reflect.TypeOf((*q.RawMessage)(nil)).Elem(), + "SyntaxError": reflect.TypeOf((*q.SyntaxError)(nil)).Elem(), + "UnmarshalFieldError": reflect.TypeOf((*q.UnmarshalFieldError)(nil)).Elem(), + "UnmarshalTypeError": reflect.TypeOf((*q.UnmarshalTypeError)(nil)).Elem(), + "UnsupportedTypeError": reflect.TypeOf((*q.UnsupportedTypeError)(nil)).Elem(), + "UnsupportedValueError": reflect.TypeOf((*q.UnsupportedValueError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Compact": reflect.ValueOf(q.Compact), + "HTMLEscape": reflect.ValueOf(q.HTMLEscape), + "Indent": reflect.ValueOf(q.Indent), + "Marshal": reflect.ValueOf(q.Marshal), + "MarshalIndent": reflect.ValueOf(q.MarshalIndent), + "NewDecoder": reflect.ValueOf(q.NewDecoder), + "NewEncoder": reflect.ValueOf(q.NewEncoder), + "Unmarshal": reflect.ValueOf(q.Unmarshal), + "Valid": reflect.ValueOf(q.Valid), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/encoding/pem/go121_export.go b/pkg/encoding/pem/go121_export.go index 1744b1eb..610246b2 100755 --- a/pkg/encoding/pem/go121_export.go +++ b/pkg/encoding/pem/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package pem diff --git a/pkg/encoding/pem/go122_export.go b/pkg/encoding/pem/go122_export.go new file mode 100755 index 00000000..33f3185a --- /dev/null +++ b/pkg/encoding/pem/go122_export.go @@ -0,0 +1,42 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package pem + +import ( + q "encoding/pem" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "pem", + Path: "encoding/pem", + Deps: map[string]string{ + "bytes": "bytes", + "encoding/base64": "base64", + "errors": "errors", + "io": "io", + "sort": "sort", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Block": reflect.TypeOf((*q.Block)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Decode": reflect.ValueOf(q.Decode), + "Encode": reflect.ValueOf(q.Encode), + "EncodeToMemory": reflect.ValueOf(q.EncodeToMemory), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/encoding/pem/go123_export.go b/pkg/encoding/pem/go123_export.go new file mode 100755 index 00000000..1f037686 --- /dev/null +++ b/pkg/encoding/pem/go123_export.go @@ -0,0 +1,42 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package pem + +import ( + q "encoding/pem" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "pem", + Path: "encoding/pem", + Deps: map[string]string{ + "bytes": "bytes", + "encoding/base64": "base64", + "errors": "errors", + "io": "io", + "slices": "slices", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Block": reflect.TypeOf((*q.Block)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Decode": reflect.ValueOf(q.Decode), + "Encode": reflect.ValueOf(q.Encode), + "EncodeToMemory": reflect.ValueOf(q.EncodeToMemory), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/encoding/xml/go121_export.go b/pkg/encoding/xml/go121_export.go index 11eba0d0..394b4525 100755 --- a/pkg/encoding/xml/go121_export.go +++ b/pkg/encoding/xml/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package xml diff --git a/pkg/encoding/xml/go122_export.go b/pkg/encoding/xml/go122_export.go new file mode 100755 index 00000000..dd74e107 --- /dev/null +++ b/pkg/encoding/xml/go122_export.go @@ -0,0 +1,81 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package xml + +import ( + q "encoding/xml" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "xml", + Path: "encoding/xml", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "encoding": "encoding", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "reflect": "reflect", + "runtime": "runtime", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "Marshaler": reflect.TypeOf((*q.Marshaler)(nil)).Elem(), + "MarshalerAttr": reflect.TypeOf((*q.MarshalerAttr)(nil)).Elem(), + "Token": reflect.TypeOf((*q.Token)(nil)).Elem(), + "TokenReader": reflect.TypeOf((*q.TokenReader)(nil)).Elem(), + "Unmarshaler": reflect.TypeOf((*q.Unmarshaler)(nil)).Elem(), + "UnmarshalerAttr": reflect.TypeOf((*q.UnmarshalerAttr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Attr": reflect.TypeOf((*q.Attr)(nil)).Elem(), + "CharData": reflect.TypeOf((*q.CharData)(nil)).Elem(), + "Comment": reflect.TypeOf((*q.Comment)(nil)).Elem(), + "Decoder": reflect.TypeOf((*q.Decoder)(nil)).Elem(), + "Directive": reflect.TypeOf((*q.Directive)(nil)).Elem(), + "Encoder": reflect.TypeOf((*q.Encoder)(nil)).Elem(), + "EndElement": reflect.TypeOf((*q.EndElement)(nil)).Elem(), + "Name": reflect.TypeOf((*q.Name)(nil)).Elem(), + "ProcInst": reflect.TypeOf((*q.ProcInst)(nil)).Elem(), + "StartElement": reflect.TypeOf((*q.StartElement)(nil)).Elem(), + "SyntaxError": reflect.TypeOf((*q.SyntaxError)(nil)).Elem(), + "TagPathError": reflect.TypeOf((*q.TagPathError)(nil)).Elem(), + "UnmarshalError": reflect.TypeOf((*q.UnmarshalError)(nil)).Elem(), + "UnsupportedTypeError": reflect.TypeOf((*q.UnsupportedTypeError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "HTMLAutoClose": reflect.ValueOf(&q.HTMLAutoClose), + "HTMLEntity": reflect.ValueOf(&q.HTMLEntity), + }, + Funcs: map[string]reflect.Value{ + "CopyToken": reflect.ValueOf(q.CopyToken), + "Escape": reflect.ValueOf(q.Escape), + "EscapeText": reflect.ValueOf(q.EscapeText), + "Marshal": reflect.ValueOf(q.Marshal), + "MarshalIndent": reflect.ValueOf(q.MarshalIndent), + "NewDecoder": reflect.ValueOf(q.NewDecoder), + "NewEncoder": reflect.ValueOf(q.NewEncoder), + "NewTokenDecoder": reflect.ValueOf(q.NewTokenDecoder), + "Unmarshal": reflect.ValueOf(q.Unmarshal), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "Header": {"untyped string", constant.MakeString(string(q.Header))}, + }, + }) +} diff --git a/pkg/encoding/xml/go123_export.go b/pkg/encoding/xml/go123_export.go new file mode 100755 index 00000000..93528936 --- /dev/null +++ b/pkg/encoding/xml/go123_export.go @@ -0,0 +1,81 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package xml + +import ( + q "encoding/xml" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "xml", + Path: "encoding/xml", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "encoding": "encoding", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "reflect": "reflect", + "runtime": "runtime", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "Marshaler": reflect.TypeOf((*q.Marshaler)(nil)).Elem(), + "MarshalerAttr": reflect.TypeOf((*q.MarshalerAttr)(nil)).Elem(), + "Token": reflect.TypeOf((*q.Token)(nil)).Elem(), + "TokenReader": reflect.TypeOf((*q.TokenReader)(nil)).Elem(), + "Unmarshaler": reflect.TypeOf((*q.Unmarshaler)(nil)).Elem(), + "UnmarshalerAttr": reflect.TypeOf((*q.UnmarshalerAttr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Attr": reflect.TypeOf((*q.Attr)(nil)).Elem(), + "CharData": reflect.TypeOf((*q.CharData)(nil)).Elem(), + "Comment": reflect.TypeOf((*q.Comment)(nil)).Elem(), + "Decoder": reflect.TypeOf((*q.Decoder)(nil)).Elem(), + "Directive": reflect.TypeOf((*q.Directive)(nil)).Elem(), + "Encoder": reflect.TypeOf((*q.Encoder)(nil)).Elem(), + "EndElement": reflect.TypeOf((*q.EndElement)(nil)).Elem(), + "Name": reflect.TypeOf((*q.Name)(nil)).Elem(), + "ProcInst": reflect.TypeOf((*q.ProcInst)(nil)).Elem(), + "StartElement": reflect.TypeOf((*q.StartElement)(nil)).Elem(), + "SyntaxError": reflect.TypeOf((*q.SyntaxError)(nil)).Elem(), + "TagPathError": reflect.TypeOf((*q.TagPathError)(nil)).Elem(), + "UnmarshalError": reflect.TypeOf((*q.UnmarshalError)(nil)).Elem(), + "UnsupportedTypeError": reflect.TypeOf((*q.UnsupportedTypeError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "HTMLAutoClose": reflect.ValueOf(&q.HTMLAutoClose), + "HTMLEntity": reflect.ValueOf(&q.HTMLEntity), + }, + Funcs: map[string]reflect.Value{ + "CopyToken": reflect.ValueOf(q.CopyToken), + "Escape": reflect.ValueOf(q.Escape), + "EscapeText": reflect.ValueOf(q.EscapeText), + "Marshal": reflect.ValueOf(q.Marshal), + "MarshalIndent": reflect.ValueOf(q.MarshalIndent), + "NewDecoder": reflect.ValueOf(q.NewDecoder), + "NewEncoder": reflect.ValueOf(q.NewEncoder), + "NewTokenDecoder": reflect.ValueOf(q.NewTokenDecoder), + "Unmarshal": reflect.ValueOf(q.Unmarshal), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "Header": {"untyped string", constant.MakeString(string(q.Header))}, + }, + }) +} diff --git a/pkg/errors/go121_export.go b/pkg/errors/go121_export.go index a0265fd9..42891b08 100755 --- a/pkg/errors/go121_export.go +++ b/pkg/errors/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package errors diff --git a/pkg/errors/go122_export.go b/pkg/errors/go122_export.go new file mode 100755 index 00000000..a0fc172f --- /dev/null +++ b/pkg/errors/go122_export.go @@ -0,0 +1,40 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package errors + +import ( + q "errors" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "errors", + Path: "errors", + Deps: map[string]string{ + "internal/reflectlite": "reflectlite", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrUnsupported": reflect.ValueOf(&q.ErrUnsupported), + }, + Funcs: map[string]reflect.Value{ + "As": reflect.ValueOf(q.As), + "Is": reflect.ValueOf(q.Is), + "Join": reflect.ValueOf(q.Join), + "New": reflect.ValueOf(q.New), + "Unwrap": reflect.ValueOf(q.Unwrap), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/errors/go123_export.go b/pkg/errors/go123_export.go new file mode 100755 index 00000000..f887b221 --- /dev/null +++ b/pkg/errors/go123_export.go @@ -0,0 +1,40 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package errors + +import ( + q "errors" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "errors", + Path: "errors", + Deps: map[string]string{ + "internal/reflectlite": "reflectlite", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrUnsupported": reflect.ValueOf(&q.ErrUnsupported), + }, + Funcs: map[string]reflect.Value{ + "As": reflect.ValueOf(q.As), + "Is": reflect.ValueOf(q.Is), + "Join": reflect.ValueOf(q.Join), + "New": reflect.ValueOf(q.New), + "Unwrap": reflect.ValueOf(q.Unwrap), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/expvar/go121_export.go b/pkg/expvar/go121_export.go index cd04dc7f..86293d05 100755 --- a/pkg/expvar/go121_export.go +++ b/pkg/expvar/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package expvar diff --git a/pkg/expvar/go122_export.go b/pkg/expvar/go122_export.go new file mode 100755 index 00000000..3a0ab7a5 --- /dev/null +++ b/pkg/expvar/go122_export.go @@ -0,0 +1,59 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package expvar + +import ( + q "expvar" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "expvar", + Path: "expvar", + Deps: map[string]string{ + "encoding/json": "json", + "log": "log", + "math": "math", + "net/http": "http", + "os": "os", + "runtime": "runtime", + "sort": "sort", + "strconv": "strconv", + "sync": "sync", + "sync/atomic": "atomic", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "Var": reflect.TypeOf((*q.Var)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Float": reflect.TypeOf((*q.Float)(nil)).Elem(), + "Func": reflect.TypeOf((*q.Func)(nil)).Elem(), + "Int": reflect.TypeOf((*q.Int)(nil)).Elem(), + "KeyValue": reflect.TypeOf((*q.KeyValue)(nil)).Elem(), + "Map": reflect.TypeOf((*q.Map)(nil)).Elem(), + "String": reflect.TypeOf((*q.String)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Do": reflect.ValueOf(q.Do), + "Get": reflect.ValueOf(q.Get), + "Handler": reflect.ValueOf(q.Handler), + "NewFloat": reflect.ValueOf(q.NewFloat), + "NewInt": reflect.ValueOf(q.NewInt), + "NewMap": reflect.ValueOf(q.NewMap), + "NewString": reflect.ValueOf(q.NewString), + "Publish": reflect.ValueOf(q.Publish), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/expvar/go123_export.go b/pkg/expvar/go123_export.go new file mode 100755 index 00000000..d95dce8b --- /dev/null +++ b/pkg/expvar/go123_export.go @@ -0,0 +1,60 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package expvar + +import ( + q "expvar" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "expvar", + Path: "expvar", + Deps: map[string]string{ + "encoding/json": "json", + "internal/godebug": "godebug", + "log": "log", + "math": "math", + "net/http": "http", + "os": "os", + "runtime": "runtime", + "slices": "slices", + "strconv": "strconv", + "sync": "sync", + "sync/atomic": "atomic", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "Var": reflect.TypeOf((*q.Var)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Float": reflect.TypeOf((*q.Float)(nil)).Elem(), + "Func": reflect.TypeOf((*q.Func)(nil)).Elem(), + "Int": reflect.TypeOf((*q.Int)(nil)).Elem(), + "KeyValue": reflect.TypeOf((*q.KeyValue)(nil)).Elem(), + "Map": reflect.TypeOf((*q.Map)(nil)).Elem(), + "String": reflect.TypeOf((*q.String)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Do": reflect.ValueOf(q.Do), + "Get": reflect.ValueOf(q.Get), + "Handler": reflect.ValueOf(q.Handler), + "NewFloat": reflect.ValueOf(q.NewFloat), + "NewInt": reflect.ValueOf(q.NewInt), + "NewMap": reflect.ValueOf(q.NewMap), + "NewString": reflect.ValueOf(q.NewString), + "Publish": reflect.ValueOf(q.Publish), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/flag/go121_export.go b/pkg/flag/go121_export.go index 56daf549..2e840567 100755 --- a/pkg/flag/go121_export.go +++ b/pkg/flag/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package flag diff --git a/pkg/flag/go122_export.go b/pkg/flag/go122_export.go new file mode 100755 index 00000000..6ac40f0a --- /dev/null +++ b/pkg/flag/go122_export.go @@ -0,0 +1,91 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package flag + +import ( + q "flag" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "flag", + Path: "flag", + Deps: map[string]string{ + "encoding": "encoding", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "os": "os", + "reflect": "reflect", + "runtime": "runtime", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "time": "time", + }, + Interfaces: map[string]reflect.Type{ + "Getter": reflect.TypeOf((*q.Getter)(nil)).Elem(), + "Value": reflect.TypeOf((*q.Value)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "ErrorHandling": reflect.TypeOf((*q.ErrorHandling)(nil)).Elem(), + "Flag": reflect.TypeOf((*q.Flag)(nil)).Elem(), + "FlagSet": reflect.TypeOf((*q.FlagSet)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "CommandLine": reflect.ValueOf(&q.CommandLine), + "ErrHelp": reflect.ValueOf(&q.ErrHelp), + "Usage": reflect.ValueOf(&q.Usage), + }, + Funcs: map[string]reflect.Value{ + "Arg": reflect.ValueOf(q.Arg), + "Args": reflect.ValueOf(q.Args), + "Bool": reflect.ValueOf(q.Bool), + "BoolFunc": reflect.ValueOf(q.BoolFunc), + "BoolVar": reflect.ValueOf(q.BoolVar), + "Duration": reflect.ValueOf(q.Duration), + "DurationVar": reflect.ValueOf(q.DurationVar), + "Float64": reflect.ValueOf(q.Float64), + "Float64Var": reflect.ValueOf(q.Float64Var), + "Func": reflect.ValueOf(q.Func), + "Int": reflect.ValueOf(q.Int), + "Int64": reflect.ValueOf(q.Int64), + "Int64Var": reflect.ValueOf(q.Int64Var), + "IntVar": reflect.ValueOf(q.IntVar), + "Lookup": reflect.ValueOf(q.Lookup), + "NArg": reflect.ValueOf(q.NArg), + "NFlag": reflect.ValueOf(q.NFlag), + "NewFlagSet": reflect.ValueOf(q.NewFlagSet), + "Parse": reflect.ValueOf(q.Parse), + "Parsed": reflect.ValueOf(q.Parsed), + "PrintDefaults": reflect.ValueOf(q.PrintDefaults), + "Set": reflect.ValueOf(q.Set), + "String": reflect.ValueOf(q.String), + "StringVar": reflect.ValueOf(q.StringVar), + "TextVar": reflect.ValueOf(q.TextVar), + "Uint": reflect.ValueOf(q.Uint), + "Uint64": reflect.ValueOf(q.Uint64), + "Uint64Var": reflect.ValueOf(q.Uint64Var), + "UintVar": reflect.ValueOf(q.UintVar), + "UnquoteUsage": reflect.ValueOf(q.UnquoteUsage), + "Var": reflect.ValueOf(q.Var), + "Visit": reflect.ValueOf(q.Visit), + "VisitAll": reflect.ValueOf(q.VisitAll), + }, + TypedConsts: map[string]igop.TypedConst{ + "ContinueOnError": {reflect.TypeOf(q.ContinueOnError), constant.MakeInt64(int64(q.ContinueOnError))}, + "ExitOnError": {reflect.TypeOf(q.ExitOnError), constant.MakeInt64(int64(q.ExitOnError))}, + "PanicOnError": {reflect.TypeOf(q.PanicOnError), constant.MakeInt64(int64(q.PanicOnError))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/flag/go123_export.go b/pkg/flag/go123_export.go new file mode 100755 index 00000000..cfb8a0f4 --- /dev/null +++ b/pkg/flag/go123_export.go @@ -0,0 +1,91 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package flag + +import ( + q "flag" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "flag", + Path: "flag", + Deps: map[string]string{ + "encoding": "encoding", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "os": "os", + "reflect": "reflect", + "runtime": "runtime", + "slices": "slices", + "strconv": "strconv", + "strings": "strings", + "time": "time", + }, + Interfaces: map[string]reflect.Type{ + "Getter": reflect.TypeOf((*q.Getter)(nil)).Elem(), + "Value": reflect.TypeOf((*q.Value)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "ErrorHandling": reflect.TypeOf((*q.ErrorHandling)(nil)).Elem(), + "Flag": reflect.TypeOf((*q.Flag)(nil)).Elem(), + "FlagSet": reflect.TypeOf((*q.FlagSet)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "CommandLine": reflect.ValueOf(&q.CommandLine), + "ErrHelp": reflect.ValueOf(&q.ErrHelp), + "Usage": reflect.ValueOf(&q.Usage), + }, + Funcs: map[string]reflect.Value{ + "Arg": reflect.ValueOf(q.Arg), + "Args": reflect.ValueOf(q.Args), + "Bool": reflect.ValueOf(q.Bool), + "BoolFunc": reflect.ValueOf(q.BoolFunc), + "BoolVar": reflect.ValueOf(q.BoolVar), + "Duration": reflect.ValueOf(q.Duration), + "DurationVar": reflect.ValueOf(q.DurationVar), + "Float64": reflect.ValueOf(q.Float64), + "Float64Var": reflect.ValueOf(q.Float64Var), + "Func": reflect.ValueOf(q.Func), + "Int": reflect.ValueOf(q.Int), + "Int64": reflect.ValueOf(q.Int64), + "Int64Var": reflect.ValueOf(q.Int64Var), + "IntVar": reflect.ValueOf(q.IntVar), + "Lookup": reflect.ValueOf(q.Lookup), + "NArg": reflect.ValueOf(q.NArg), + "NFlag": reflect.ValueOf(q.NFlag), + "NewFlagSet": reflect.ValueOf(q.NewFlagSet), + "Parse": reflect.ValueOf(q.Parse), + "Parsed": reflect.ValueOf(q.Parsed), + "PrintDefaults": reflect.ValueOf(q.PrintDefaults), + "Set": reflect.ValueOf(q.Set), + "String": reflect.ValueOf(q.String), + "StringVar": reflect.ValueOf(q.StringVar), + "TextVar": reflect.ValueOf(q.TextVar), + "Uint": reflect.ValueOf(q.Uint), + "Uint64": reflect.ValueOf(q.Uint64), + "Uint64Var": reflect.ValueOf(q.Uint64Var), + "UintVar": reflect.ValueOf(q.UintVar), + "UnquoteUsage": reflect.ValueOf(q.UnquoteUsage), + "Var": reflect.ValueOf(q.Var), + "Visit": reflect.ValueOf(q.Visit), + "VisitAll": reflect.ValueOf(q.VisitAll), + }, + TypedConsts: map[string]igop.TypedConst{ + "ContinueOnError": {reflect.TypeOf(q.ContinueOnError), constant.MakeInt64(int64(q.ContinueOnError))}, + "ExitOnError": {reflect.TypeOf(q.ExitOnError), constant.MakeInt64(int64(q.ExitOnError))}, + "PanicOnError": {reflect.TypeOf(q.PanicOnError), constant.MakeInt64(int64(q.PanicOnError))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/fmt/go121_export.go b/pkg/fmt/go121_export.go index aca5077b..d569c615 100755 --- a/pkg/fmt/go121_export.go +++ b/pkg/fmt/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package fmt diff --git a/pkg/fmt/go122_export.go b/pkg/fmt/go122_export.go new file mode 100755 index 00000000..a55d15fc --- /dev/null +++ b/pkg/fmt/go122_export.go @@ -0,0 +1,71 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package fmt + +import ( + q "fmt" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "fmt", + Path: "fmt", + Deps: map[string]string{ + "errors": "errors", + "internal/fmtsort": "fmtsort", + "io": "io", + "math": "math", + "os": "os", + "reflect": "reflect", + "sort": "sort", + "strconv": "strconv", + "sync": "sync", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "Formatter": reflect.TypeOf((*q.Formatter)(nil)).Elem(), + "GoStringer": reflect.TypeOf((*q.GoStringer)(nil)).Elem(), + "ScanState": reflect.TypeOf((*q.ScanState)(nil)).Elem(), + "Scanner": reflect.TypeOf((*q.Scanner)(nil)).Elem(), + "State": reflect.TypeOf((*q.State)(nil)).Elem(), + "Stringer": reflect.TypeOf((*q.Stringer)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Append": reflect.ValueOf(q.Append), + "Appendf": reflect.ValueOf(q.Appendf), + "Appendln": reflect.ValueOf(q.Appendln), + "Errorf": reflect.ValueOf(q.Errorf), + "FormatString": reflect.ValueOf(q.FormatString), + "Fprint": reflect.ValueOf(q.Fprint), + "Fprintf": reflect.ValueOf(q.Fprintf), + "Fprintln": reflect.ValueOf(q.Fprintln), + "Fscan": reflect.ValueOf(q.Fscan), + "Fscanf": reflect.ValueOf(q.Fscanf), + "Fscanln": reflect.ValueOf(q.Fscanln), + "Print": reflect.ValueOf(q.Print), + "Printf": reflect.ValueOf(q.Printf), + "Println": reflect.ValueOf(q.Println), + "Scan": reflect.ValueOf(q.Scan), + "Scanf": reflect.ValueOf(q.Scanf), + "Scanln": reflect.ValueOf(q.Scanln), + "Sprint": reflect.ValueOf(q.Sprint), + "Sprintf": reflect.ValueOf(q.Sprintf), + "Sprintln": reflect.ValueOf(q.Sprintln), + "Sscan": reflect.ValueOf(q.Sscan), + "Sscanf": reflect.ValueOf(q.Sscanf), + "Sscanln": reflect.ValueOf(q.Sscanln), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/fmt/go123_export.go b/pkg/fmt/go123_export.go new file mode 100755 index 00000000..885524a2 --- /dev/null +++ b/pkg/fmt/go123_export.go @@ -0,0 +1,71 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package fmt + +import ( + q "fmt" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "fmt", + Path: "fmt", + Deps: map[string]string{ + "errors": "errors", + "internal/fmtsort": "fmtsort", + "io": "io", + "math": "math", + "os": "os", + "reflect": "reflect", + "slices": "slices", + "strconv": "strconv", + "sync": "sync", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "Formatter": reflect.TypeOf((*q.Formatter)(nil)).Elem(), + "GoStringer": reflect.TypeOf((*q.GoStringer)(nil)).Elem(), + "ScanState": reflect.TypeOf((*q.ScanState)(nil)).Elem(), + "Scanner": reflect.TypeOf((*q.Scanner)(nil)).Elem(), + "State": reflect.TypeOf((*q.State)(nil)).Elem(), + "Stringer": reflect.TypeOf((*q.Stringer)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Append": reflect.ValueOf(q.Append), + "Appendf": reflect.ValueOf(q.Appendf), + "Appendln": reflect.ValueOf(q.Appendln), + "Errorf": reflect.ValueOf(q.Errorf), + "FormatString": reflect.ValueOf(q.FormatString), + "Fprint": reflect.ValueOf(q.Fprint), + "Fprintf": reflect.ValueOf(q.Fprintf), + "Fprintln": reflect.ValueOf(q.Fprintln), + "Fscan": reflect.ValueOf(q.Fscan), + "Fscanf": reflect.ValueOf(q.Fscanf), + "Fscanln": reflect.ValueOf(q.Fscanln), + "Print": reflect.ValueOf(q.Print), + "Printf": reflect.ValueOf(q.Printf), + "Println": reflect.ValueOf(q.Println), + "Scan": reflect.ValueOf(q.Scan), + "Scanf": reflect.ValueOf(q.Scanf), + "Scanln": reflect.ValueOf(q.Scanln), + "Sprint": reflect.ValueOf(q.Sprint), + "Sprintf": reflect.ValueOf(q.Sprintf), + "Sprintln": reflect.ValueOf(q.Sprintln), + "Sscan": reflect.ValueOf(q.Sscan), + "Sscanf": reflect.ValueOf(q.Sscanf), + "Sscanln": reflect.ValueOf(q.Sscanln), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/gen.go b/pkg/gen.go index 6bcd34d2..b1cd9a75 100644 --- a/pkg/gen.go +++ b/pkg/gen.go @@ -30,14 +30,25 @@ import ( "strings" ) +var ( + gover = runtime.Version()[:6] +) + func main() { - ver := runtime.Version()[:6] var tags string var name string var fname string - switch ver { + switch gover { + case "go1.23": + tags = "//+build go1.23" + name = "go123_export" + fname = "go123_pkgs.go" + case "go1.22": + tags = "//+build go1.22,!go1.23" + name = "go122_export" + fname = "go122_pkgs.go" case "go1.21": - tags = "//+build go1.21" + tags = "//+build go1.21,!go1.22" name = "go121_export" fname = "go121_pkgs.go" case "go1.20": @@ -72,7 +83,7 @@ func main() { pkgs := stdList() - log.Println(ver, name, tags) + log.Println(gover, name, tags) log.Println(pkgs) cmd := exec.Command("qexp", "-outdir", ".", "-addtags", tags, "-filename", name) @@ -118,6 +129,20 @@ func main() { panic(err) } } + + if gover == "go1.23" { + for _, pkg := range []string{"iter", "maps"} { + log.Printf("export go1.23 %v patch", pkg) + data, err := os.ReadFile("./_go123/" + pkg + "_export.go") + if err != nil { + panic(err) + } + err = os.WriteFile("./"+pkg+"/go123_export.go", data, 0666) + if err != nil { + panic(err) + } + } + } } var genericList = []string{ @@ -125,6 +150,7 @@ var genericList = []string{ "maps", "slices", "cmp", + "iter", } func genericPkgs(std []string) (pkgs []string) { @@ -195,6 +221,10 @@ func isSkipPkg(pkg string) bool { return true case "runtime/cgo", "runtime/race": return true + case "plugin": + if gover == "go1.23" { + return true + } default: if strings.HasPrefix(pkg, "vendor/") { return true diff --git a/pkg/github.com/goplus/gop/builtin/stringslice/export.go b/pkg/github.com/goplus/gop/builtin/stringslice/export.go new file mode 100755 index 00000000..d9146a5e --- /dev/null +++ b/pkg/github.com/goplus/gop/builtin/stringslice/export.go @@ -0,0 +1,43 @@ +// export by github.com/goplus/igop/cmd/qexp + +package stringslice + +import ( + q "github.com/goplus/gop/builtin/stringslice" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "stringslice", + Path: "github.com/goplus/gop/builtin/stringslice", + Deps: map[string]string{ + "github.com/qiniu/x/stringutil": "stringutil", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Capitalize": reflect.ValueOf(q.Capitalize), + "Repeat": reflect.ValueOf(q.Repeat), + "Replace": reflect.ValueOf(q.Replace), + "ReplaceAll": reflect.ValueOf(q.ReplaceAll), + "ToLower": reflect.ValueOf(q.ToLower), + "ToTitle": reflect.ValueOf(q.ToTitle), + "ToUpper": reflect.ValueOf(q.ToUpper), + "Trim": reflect.ValueOf(q.Trim), + "TrimLeft": reflect.ValueOf(q.TrimLeft), + "TrimPrefix": reflect.ValueOf(q.TrimPrefix), + "TrimRight": reflect.ValueOf(q.TrimRight), + "TrimSpace": reflect.ValueOf(q.TrimSpace), + "TrimSuffix": reflect.ValueOf(q.TrimSuffix), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/github.com/goplus/igop/race/export.go b/pkg/github.com/goplus/igop/race/export.go new file mode 100755 index 00000000..099017ad --- /dev/null +++ b/pkg/github.com/goplus/igop/race/export.go @@ -0,0 +1,42 @@ +// export by github.com/goplus/igop/cmd/qexp + +package race + +import ( + q "github.com/goplus/igop/race" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "race", + Path: "github.com/goplus/igop/race", + Deps: map[string]string{ + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Acquire": reflect.ValueOf(q.Acquire), + "Disable": reflect.ValueOf(q.Disable), + "Enable": reflect.ValueOf(q.Enable), + "Errors": reflect.ValueOf(q.Errors), + "Read": reflect.ValueOf(q.Read), + "ReadRange": reflect.ValueOf(q.ReadRange), + "Release": reflect.ValueOf(q.Release), + "ReleaseMerge": reflect.ValueOf(q.ReleaseMerge), + "Write": reflect.ValueOf(q.Write), + "WriteRange": reflect.ValueOf(q.WriteRange), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "Enabled": {"untyped bool", constant.MakeBool(bool(q.Enabled))}, + }, + }) +} diff --git a/pkg/github.com/qiniu/x/stringutil/export.go b/pkg/github.com/qiniu/x/stringutil/export.go new file mode 100755 index 00000000..c8fbdbd9 --- /dev/null +++ b/pkg/github.com/qiniu/x/stringutil/export.go @@ -0,0 +1,39 @@ +// export by github.com/goplus/igop/cmd/qexp + +package stringutil + +import ( + q "github.com/qiniu/x/stringutil" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "stringutil", + Path: "github.com/qiniu/x/stringutil", + Deps: map[string]string{ + "unicode": "unicode", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Builder": reflect.TypeOf((*q.Builder)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Capitalize": reflect.ValueOf(q.Capitalize), + "Concat": reflect.ValueOf(q.Concat), + "Diff": reflect.ValueOf(q.Diff), + "NewBuilder": reflect.ValueOf(q.NewBuilder), + "NewBuilderSize": reflect.ValueOf(q.NewBuilderSize), + "String": reflect.ValueOf(q.String), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/ast/go121_export.go b/pkg/go/ast/go121_export.go index ce44e594..1eac8b61 100755 --- a/pkg/go/ast/go121_export.go +++ b/pkg/go/ast/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package ast diff --git a/pkg/go/ast/go122_export.go b/pkg/go/ast/go122_export.go new file mode 100755 index 00000000..4052768e --- /dev/null +++ b/pkg/go/ast/go122_export.go @@ -0,0 +1,148 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package ast + +import ( + q "go/ast" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "ast", + Path: "go/ast", + Deps: map[string]string{ + "bytes": "bytes", + "fmt": "fmt", + "go/scanner": "scanner", + "go/token": "token", + "io": "io", + "os": "os", + "reflect": "reflect", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{ + "Decl": reflect.TypeOf((*q.Decl)(nil)).Elem(), + "Expr": reflect.TypeOf((*q.Expr)(nil)).Elem(), + "Node": reflect.TypeOf((*q.Node)(nil)).Elem(), + "Spec": reflect.TypeOf((*q.Spec)(nil)).Elem(), + "Stmt": reflect.TypeOf((*q.Stmt)(nil)).Elem(), + "Visitor": reflect.TypeOf((*q.Visitor)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "ArrayType": reflect.TypeOf((*q.ArrayType)(nil)).Elem(), + "AssignStmt": reflect.TypeOf((*q.AssignStmt)(nil)).Elem(), + "BadDecl": reflect.TypeOf((*q.BadDecl)(nil)).Elem(), + "BadExpr": reflect.TypeOf((*q.BadExpr)(nil)).Elem(), + "BadStmt": reflect.TypeOf((*q.BadStmt)(nil)).Elem(), + "BasicLit": reflect.TypeOf((*q.BasicLit)(nil)).Elem(), + "BinaryExpr": reflect.TypeOf((*q.BinaryExpr)(nil)).Elem(), + "BlockStmt": reflect.TypeOf((*q.BlockStmt)(nil)).Elem(), + "BranchStmt": reflect.TypeOf((*q.BranchStmt)(nil)).Elem(), + "CallExpr": reflect.TypeOf((*q.CallExpr)(nil)).Elem(), + "CaseClause": reflect.TypeOf((*q.CaseClause)(nil)).Elem(), + "ChanDir": reflect.TypeOf((*q.ChanDir)(nil)).Elem(), + "ChanType": reflect.TypeOf((*q.ChanType)(nil)).Elem(), + "CommClause": reflect.TypeOf((*q.CommClause)(nil)).Elem(), + "Comment": reflect.TypeOf((*q.Comment)(nil)).Elem(), + "CommentGroup": reflect.TypeOf((*q.CommentGroup)(nil)).Elem(), + "CommentMap": reflect.TypeOf((*q.CommentMap)(nil)).Elem(), + "CompositeLit": reflect.TypeOf((*q.CompositeLit)(nil)).Elem(), + "DeclStmt": reflect.TypeOf((*q.DeclStmt)(nil)).Elem(), + "DeferStmt": reflect.TypeOf((*q.DeferStmt)(nil)).Elem(), + "Ellipsis": reflect.TypeOf((*q.Ellipsis)(nil)).Elem(), + "EmptyStmt": reflect.TypeOf((*q.EmptyStmt)(nil)).Elem(), + "ExprStmt": reflect.TypeOf((*q.ExprStmt)(nil)).Elem(), + "Field": reflect.TypeOf((*q.Field)(nil)).Elem(), + "FieldFilter": reflect.TypeOf((*q.FieldFilter)(nil)).Elem(), + "FieldList": reflect.TypeOf((*q.FieldList)(nil)).Elem(), + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "Filter": reflect.TypeOf((*q.Filter)(nil)).Elem(), + "ForStmt": reflect.TypeOf((*q.ForStmt)(nil)).Elem(), + "FuncDecl": reflect.TypeOf((*q.FuncDecl)(nil)).Elem(), + "FuncLit": reflect.TypeOf((*q.FuncLit)(nil)).Elem(), + "FuncType": reflect.TypeOf((*q.FuncType)(nil)).Elem(), + "GenDecl": reflect.TypeOf((*q.GenDecl)(nil)).Elem(), + "GoStmt": reflect.TypeOf((*q.GoStmt)(nil)).Elem(), + "Ident": reflect.TypeOf((*q.Ident)(nil)).Elem(), + "IfStmt": reflect.TypeOf((*q.IfStmt)(nil)).Elem(), + "ImportSpec": reflect.TypeOf((*q.ImportSpec)(nil)).Elem(), + "Importer": reflect.TypeOf((*q.Importer)(nil)).Elem(), + "IncDecStmt": reflect.TypeOf((*q.IncDecStmt)(nil)).Elem(), + "IndexExpr": reflect.TypeOf((*q.IndexExpr)(nil)).Elem(), + "IndexListExpr": reflect.TypeOf((*q.IndexListExpr)(nil)).Elem(), + "InterfaceType": reflect.TypeOf((*q.InterfaceType)(nil)).Elem(), + "KeyValueExpr": reflect.TypeOf((*q.KeyValueExpr)(nil)).Elem(), + "LabeledStmt": reflect.TypeOf((*q.LabeledStmt)(nil)).Elem(), + "MapType": reflect.TypeOf((*q.MapType)(nil)).Elem(), + "MergeMode": reflect.TypeOf((*q.MergeMode)(nil)).Elem(), + "ObjKind": reflect.TypeOf((*q.ObjKind)(nil)).Elem(), + "Object": reflect.TypeOf((*q.Object)(nil)).Elem(), + "Package": reflect.TypeOf((*q.Package)(nil)).Elem(), + "ParenExpr": reflect.TypeOf((*q.ParenExpr)(nil)).Elem(), + "RangeStmt": reflect.TypeOf((*q.RangeStmt)(nil)).Elem(), + "ReturnStmt": reflect.TypeOf((*q.ReturnStmt)(nil)).Elem(), + "Scope": reflect.TypeOf((*q.Scope)(nil)).Elem(), + "SelectStmt": reflect.TypeOf((*q.SelectStmt)(nil)).Elem(), + "SelectorExpr": reflect.TypeOf((*q.SelectorExpr)(nil)).Elem(), + "SendStmt": reflect.TypeOf((*q.SendStmt)(nil)).Elem(), + "SliceExpr": reflect.TypeOf((*q.SliceExpr)(nil)).Elem(), + "StarExpr": reflect.TypeOf((*q.StarExpr)(nil)).Elem(), + "StructType": reflect.TypeOf((*q.StructType)(nil)).Elem(), + "SwitchStmt": reflect.TypeOf((*q.SwitchStmt)(nil)).Elem(), + "TypeAssertExpr": reflect.TypeOf((*q.TypeAssertExpr)(nil)).Elem(), + "TypeSpec": reflect.TypeOf((*q.TypeSpec)(nil)).Elem(), + "TypeSwitchStmt": reflect.TypeOf((*q.TypeSwitchStmt)(nil)).Elem(), + "UnaryExpr": reflect.TypeOf((*q.UnaryExpr)(nil)).Elem(), + "ValueSpec": reflect.TypeOf((*q.ValueSpec)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "FileExports": reflect.ValueOf(q.FileExports), + "FilterDecl": reflect.ValueOf(q.FilterDecl), + "FilterFile": reflect.ValueOf(q.FilterFile), + "FilterPackage": reflect.ValueOf(q.FilterPackage), + "Fprint": reflect.ValueOf(q.Fprint), + "Inspect": reflect.ValueOf(q.Inspect), + "IsExported": reflect.ValueOf(q.IsExported), + "IsGenerated": reflect.ValueOf(q.IsGenerated), + "MergePackageFiles": reflect.ValueOf(q.MergePackageFiles), + "NewCommentMap": reflect.ValueOf(q.NewCommentMap), + "NewIdent": reflect.ValueOf(q.NewIdent), + "NewObj": reflect.ValueOf(q.NewObj), + "NewPackage": reflect.ValueOf(q.NewPackage), + "NewScope": reflect.ValueOf(q.NewScope), + "NotNilFilter": reflect.ValueOf(q.NotNilFilter), + "PackageExports": reflect.ValueOf(q.PackageExports), + "Print": reflect.ValueOf(q.Print), + "SortImports": reflect.ValueOf(q.SortImports), + "Unparen": reflect.ValueOf(q.Unparen), + "Walk": reflect.ValueOf(q.Walk), + }, + TypedConsts: map[string]igop.TypedConst{ + "Bad": {reflect.TypeOf(q.Bad), constant.MakeInt64(int64(q.Bad))}, + "Con": {reflect.TypeOf(q.Con), constant.MakeInt64(int64(q.Con))}, + "FilterFuncDuplicates": {reflect.TypeOf(q.FilterFuncDuplicates), constant.MakeInt64(int64(q.FilterFuncDuplicates))}, + "FilterImportDuplicates": {reflect.TypeOf(q.FilterImportDuplicates), constant.MakeInt64(int64(q.FilterImportDuplicates))}, + "FilterUnassociatedComments": {reflect.TypeOf(q.FilterUnassociatedComments), constant.MakeInt64(int64(q.FilterUnassociatedComments))}, + "Fun": {reflect.TypeOf(q.Fun), constant.MakeInt64(int64(q.Fun))}, + "Lbl": {reflect.TypeOf(q.Lbl), constant.MakeInt64(int64(q.Lbl))}, + "Pkg": {reflect.TypeOf(q.Pkg), constant.MakeInt64(int64(q.Pkg))}, + "RECV": {reflect.TypeOf(q.RECV), constant.MakeInt64(int64(q.RECV))}, + "SEND": {reflect.TypeOf(q.SEND), constant.MakeInt64(int64(q.SEND))}, + "Typ": {reflect.TypeOf(q.Typ), constant.MakeInt64(int64(q.Typ))}, + "Var": {reflect.TypeOf(q.Var), constant.MakeInt64(int64(q.Var))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/ast/go123_export.go b/pkg/go/ast/go123_export.go new file mode 100755 index 00000000..79c83adb --- /dev/null +++ b/pkg/go/ast/go123_export.go @@ -0,0 +1,151 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package ast + +import ( + q "go/ast" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "ast", + Path: "go/ast", + Deps: map[string]string{ + "bytes": "bytes", + "cmp": "cmp", + "fmt": "fmt", + "go/scanner": "scanner", + "go/token": "token", + "io": "io", + "iter": "iter", + "os": "os", + "reflect": "reflect", + "slices": "slices", + "strconv": "strconv", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{ + "Decl": reflect.TypeOf((*q.Decl)(nil)).Elem(), + "Expr": reflect.TypeOf((*q.Expr)(nil)).Elem(), + "Node": reflect.TypeOf((*q.Node)(nil)).Elem(), + "Spec": reflect.TypeOf((*q.Spec)(nil)).Elem(), + "Stmt": reflect.TypeOf((*q.Stmt)(nil)).Elem(), + "Visitor": reflect.TypeOf((*q.Visitor)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "ArrayType": reflect.TypeOf((*q.ArrayType)(nil)).Elem(), + "AssignStmt": reflect.TypeOf((*q.AssignStmt)(nil)).Elem(), + "BadDecl": reflect.TypeOf((*q.BadDecl)(nil)).Elem(), + "BadExpr": reflect.TypeOf((*q.BadExpr)(nil)).Elem(), + "BadStmt": reflect.TypeOf((*q.BadStmt)(nil)).Elem(), + "BasicLit": reflect.TypeOf((*q.BasicLit)(nil)).Elem(), + "BinaryExpr": reflect.TypeOf((*q.BinaryExpr)(nil)).Elem(), + "BlockStmt": reflect.TypeOf((*q.BlockStmt)(nil)).Elem(), + "BranchStmt": reflect.TypeOf((*q.BranchStmt)(nil)).Elem(), + "CallExpr": reflect.TypeOf((*q.CallExpr)(nil)).Elem(), + "CaseClause": reflect.TypeOf((*q.CaseClause)(nil)).Elem(), + "ChanDir": reflect.TypeOf((*q.ChanDir)(nil)).Elem(), + "ChanType": reflect.TypeOf((*q.ChanType)(nil)).Elem(), + "CommClause": reflect.TypeOf((*q.CommClause)(nil)).Elem(), + "Comment": reflect.TypeOf((*q.Comment)(nil)).Elem(), + "CommentGroup": reflect.TypeOf((*q.CommentGroup)(nil)).Elem(), + "CommentMap": reflect.TypeOf((*q.CommentMap)(nil)).Elem(), + "CompositeLit": reflect.TypeOf((*q.CompositeLit)(nil)).Elem(), + "DeclStmt": reflect.TypeOf((*q.DeclStmt)(nil)).Elem(), + "DeferStmt": reflect.TypeOf((*q.DeferStmt)(nil)).Elem(), + "Ellipsis": reflect.TypeOf((*q.Ellipsis)(nil)).Elem(), + "EmptyStmt": reflect.TypeOf((*q.EmptyStmt)(nil)).Elem(), + "ExprStmt": reflect.TypeOf((*q.ExprStmt)(nil)).Elem(), + "Field": reflect.TypeOf((*q.Field)(nil)).Elem(), + "FieldFilter": reflect.TypeOf((*q.FieldFilter)(nil)).Elem(), + "FieldList": reflect.TypeOf((*q.FieldList)(nil)).Elem(), + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "Filter": reflect.TypeOf((*q.Filter)(nil)).Elem(), + "ForStmt": reflect.TypeOf((*q.ForStmt)(nil)).Elem(), + "FuncDecl": reflect.TypeOf((*q.FuncDecl)(nil)).Elem(), + "FuncLit": reflect.TypeOf((*q.FuncLit)(nil)).Elem(), + "FuncType": reflect.TypeOf((*q.FuncType)(nil)).Elem(), + "GenDecl": reflect.TypeOf((*q.GenDecl)(nil)).Elem(), + "GoStmt": reflect.TypeOf((*q.GoStmt)(nil)).Elem(), + "Ident": reflect.TypeOf((*q.Ident)(nil)).Elem(), + "IfStmt": reflect.TypeOf((*q.IfStmt)(nil)).Elem(), + "ImportSpec": reflect.TypeOf((*q.ImportSpec)(nil)).Elem(), + "Importer": reflect.TypeOf((*q.Importer)(nil)).Elem(), + "IncDecStmt": reflect.TypeOf((*q.IncDecStmt)(nil)).Elem(), + "IndexExpr": reflect.TypeOf((*q.IndexExpr)(nil)).Elem(), + "IndexListExpr": reflect.TypeOf((*q.IndexListExpr)(nil)).Elem(), + "InterfaceType": reflect.TypeOf((*q.InterfaceType)(nil)).Elem(), + "KeyValueExpr": reflect.TypeOf((*q.KeyValueExpr)(nil)).Elem(), + "LabeledStmt": reflect.TypeOf((*q.LabeledStmt)(nil)).Elem(), + "MapType": reflect.TypeOf((*q.MapType)(nil)).Elem(), + "MergeMode": reflect.TypeOf((*q.MergeMode)(nil)).Elem(), + "ObjKind": reflect.TypeOf((*q.ObjKind)(nil)).Elem(), + "Object": reflect.TypeOf((*q.Object)(nil)).Elem(), + "Package": reflect.TypeOf((*q.Package)(nil)).Elem(), + "ParenExpr": reflect.TypeOf((*q.ParenExpr)(nil)).Elem(), + "RangeStmt": reflect.TypeOf((*q.RangeStmt)(nil)).Elem(), + "ReturnStmt": reflect.TypeOf((*q.ReturnStmt)(nil)).Elem(), + "Scope": reflect.TypeOf((*q.Scope)(nil)).Elem(), + "SelectStmt": reflect.TypeOf((*q.SelectStmt)(nil)).Elem(), + "SelectorExpr": reflect.TypeOf((*q.SelectorExpr)(nil)).Elem(), + "SendStmt": reflect.TypeOf((*q.SendStmt)(nil)).Elem(), + "SliceExpr": reflect.TypeOf((*q.SliceExpr)(nil)).Elem(), + "StarExpr": reflect.TypeOf((*q.StarExpr)(nil)).Elem(), + "StructType": reflect.TypeOf((*q.StructType)(nil)).Elem(), + "SwitchStmt": reflect.TypeOf((*q.SwitchStmt)(nil)).Elem(), + "TypeAssertExpr": reflect.TypeOf((*q.TypeAssertExpr)(nil)).Elem(), + "TypeSpec": reflect.TypeOf((*q.TypeSpec)(nil)).Elem(), + "TypeSwitchStmt": reflect.TypeOf((*q.TypeSwitchStmt)(nil)).Elem(), + "UnaryExpr": reflect.TypeOf((*q.UnaryExpr)(nil)).Elem(), + "ValueSpec": reflect.TypeOf((*q.ValueSpec)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "FileExports": reflect.ValueOf(q.FileExports), + "FilterDecl": reflect.ValueOf(q.FilterDecl), + "FilterFile": reflect.ValueOf(q.FilterFile), + "FilterPackage": reflect.ValueOf(q.FilterPackage), + "Fprint": reflect.ValueOf(q.Fprint), + "Inspect": reflect.ValueOf(q.Inspect), + "IsExported": reflect.ValueOf(q.IsExported), + "IsGenerated": reflect.ValueOf(q.IsGenerated), + "MergePackageFiles": reflect.ValueOf(q.MergePackageFiles), + "NewCommentMap": reflect.ValueOf(q.NewCommentMap), + "NewIdent": reflect.ValueOf(q.NewIdent), + "NewObj": reflect.ValueOf(q.NewObj), + "NewPackage": reflect.ValueOf(q.NewPackage), + "NewScope": reflect.ValueOf(q.NewScope), + "NotNilFilter": reflect.ValueOf(q.NotNilFilter), + "PackageExports": reflect.ValueOf(q.PackageExports), + "Preorder": reflect.ValueOf(q.Preorder), + "Print": reflect.ValueOf(q.Print), + "SortImports": reflect.ValueOf(q.SortImports), + "Unparen": reflect.ValueOf(q.Unparen), + "Walk": reflect.ValueOf(q.Walk), + }, + TypedConsts: map[string]igop.TypedConst{ + "Bad": {reflect.TypeOf(q.Bad), constant.MakeInt64(int64(q.Bad))}, + "Con": {reflect.TypeOf(q.Con), constant.MakeInt64(int64(q.Con))}, + "FilterFuncDuplicates": {reflect.TypeOf(q.FilterFuncDuplicates), constant.MakeInt64(int64(q.FilterFuncDuplicates))}, + "FilterImportDuplicates": {reflect.TypeOf(q.FilterImportDuplicates), constant.MakeInt64(int64(q.FilterImportDuplicates))}, + "FilterUnassociatedComments": {reflect.TypeOf(q.FilterUnassociatedComments), constant.MakeInt64(int64(q.FilterUnassociatedComments))}, + "Fun": {reflect.TypeOf(q.Fun), constant.MakeInt64(int64(q.Fun))}, + "Lbl": {reflect.TypeOf(q.Lbl), constant.MakeInt64(int64(q.Lbl))}, + "Pkg": {reflect.TypeOf(q.Pkg), constant.MakeInt64(int64(q.Pkg))}, + "RECV": {reflect.TypeOf(q.RECV), constant.MakeInt64(int64(q.RECV))}, + "SEND": {reflect.TypeOf(q.SEND), constant.MakeInt64(int64(q.SEND))}, + "Typ": {reflect.TypeOf(q.Typ), constant.MakeInt64(int64(q.Typ))}, + "Var": {reflect.TypeOf(q.Var), constant.MakeInt64(int64(q.Var))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/build/constraint/go121_export.go b/pkg/go/build/constraint/go121_export.go index 8c561c9a..54081329 100755 --- a/pkg/go/build/constraint/go121_export.go +++ b/pkg/go/build/constraint/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package constraint diff --git a/pkg/go/build/constraint/go122_export.go b/pkg/go/build/constraint/go122_export.go new file mode 100755 index 00000000..d183f057 --- /dev/null +++ b/pkg/go/build/constraint/go122_export.go @@ -0,0 +1,49 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package constraint + +import ( + q "go/build/constraint" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "constraint", + Path: "go/build/constraint", + Deps: map[string]string{ + "errors": "errors", + "strconv": "strconv", + "strings": "strings", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "Expr": reflect.TypeOf((*q.Expr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "AndExpr": reflect.TypeOf((*q.AndExpr)(nil)).Elem(), + "NotExpr": reflect.TypeOf((*q.NotExpr)(nil)).Elem(), + "OrExpr": reflect.TypeOf((*q.OrExpr)(nil)).Elem(), + "SyntaxError": reflect.TypeOf((*q.SyntaxError)(nil)).Elem(), + "TagExpr": reflect.TypeOf((*q.TagExpr)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "GoVersion": reflect.ValueOf(q.GoVersion), + "IsGoBuild": reflect.ValueOf(q.IsGoBuild), + "IsPlusBuild": reflect.ValueOf(q.IsPlusBuild), + "Parse": reflect.ValueOf(q.Parse), + "PlusBuildLines": reflect.ValueOf(q.PlusBuildLines), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/build/constraint/go123_export.go b/pkg/go/build/constraint/go123_export.go new file mode 100755 index 00000000..01c6d80b --- /dev/null +++ b/pkg/go/build/constraint/go123_export.go @@ -0,0 +1,49 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package constraint + +import ( + q "go/build/constraint" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "constraint", + Path: "go/build/constraint", + Deps: map[string]string{ + "errors": "errors", + "strconv": "strconv", + "strings": "strings", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "Expr": reflect.TypeOf((*q.Expr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "AndExpr": reflect.TypeOf((*q.AndExpr)(nil)).Elem(), + "NotExpr": reflect.TypeOf((*q.NotExpr)(nil)).Elem(), + "OrExpr": reflect.TypeOf((*q.OrExpr)(nil)).Elem(), + "SyntaxError": reflect.TypeOf((*q.SyntaxError)(nil)).Elem(), + "TagExpr": reflect.TypeOf((*q.TagExpr)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "GoVersion": reflect.ValueOf(q.GoVersion), + "IsGoBuild": reflect.ValueOf(q.IsGoBuild), + "IsPlusBuild": reflect.ValueOf(q.IsPlusBuild), + "Parse": reflect.ValueOf(q.Parse), + "PlusBuildLines": reflect.ValueOf(q.PlusBuildLines), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/build/go121_export.go b/pkg/go/build/go121_export.go index e6d681bd..24ded773 100755 --- a/pkg/go/build/go121_export.go +++ b/pkg/go/build/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package build diff --git a/pkg/go/build/go122_export.go b/pkg/go/build/go122_export.go new file mode 100755 index 00000000..5c0a9411 --- /dev/null +++ b/pkg/go/build/go122_export.go @@ -0,0 +1,78 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package build + +import ( + q "go/build" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "build", + Path: "go/build", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "errors": "errors", + "fmt": "fmt", + "go/ast": "ast", + "go/build/constraint": "constraint", + "go/doc": "doc", + "go/parser": "parser", + "go/scanner": "scanner", + "go/token": "token", + "internal/buildcfg": "buildcfg", + "internal/godebug": "godebug", + "internal/goroot": "goroot", + "internal/goversion": "goversion", + "internal/platform": "platform", + "io": "io", + "io/fs": "fs", + "os": "os", + "os/exec": "exec", + "path": "path", + "path/filepath": "filepath", + "runtime": "runtime", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Context": reflect.TypeOf((*q.Context)(nil)).Elem(), + "Directive": reflect.TypeOf((*q.Directive)(nil)).Elem(), + "ImportMode": reflect.TypeOf((*q.ImportMode)(nil)).Elem(), + "MultiplePackageError": reflect.TypeOf((*q.MultiplePackageError)(nil)).Elem(), + "NoGoError": reflect.TypeOf((*q.NoGoError)(nil)).Elem(), + "Package": reflect.TypeOf((*q.Package)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Default": reflect.ValueOf(&q.Default), + "ToolDir": reflect.ValueOf(&q.ToolDir), + }, + Funcs: map[string]reflect.Value{ + "ArchChar": reflect.ValueOf(q.ArchChar), + "Import": reflect.ValueOf(q.Import), + "ImportDir": reflect.ValueOf(q.ImportDir), + "IsLocalImport": reflect.ValueOf(q.IsLocalImport), + }, + TypedConsts: map[string]igop.TypedConst{ + "AllowBinary": {reflect.TypeOf(q.AllowBinary), constant.MakeInt64(int64(q.AllowBinary))}, + "FindOnly": {reflect.TypeOf(q.FindOnly), constant.MakeInt64(int64(q.FindOnly))}, + "IgnoreVendor": {reflect.TypeOf(q.IgnoreVendor), constant.MakeInt64(int64(q.IgnoreVendor))}, + "ImportComment": {reflect.TypeOf(q.ImportComment), constant.MakeInt64(int64(q.ImportComment))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/build/go123_export.go b/pkg/go/build/go123_export.go new file mode 100755 index 00000000..2014d185 --- /dev/null +++ b/pkg/go/build/go123_export.go @@ -0,0 +1,79 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package build + +import ( + q "go/build" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "build", + Path: "go/build", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "errors": "errors", + "fmt": "fmt", + "go/ast": "ast", + "go/build/constraint": "constraint", + "go/doc": "doc", + "go/parser": "parser", + "go/scanner": "scanner", + "go/token": "token", + "internal/buildcfg": "buildcfg", + "internal/godebug": "godebug", + "internal/goroot": "goroot", + "internal/goversion": "goversion", + "internal/platform": "platform", + "io": "io", + "io/fs": "fs", + "os": "os", + "os/exec": "exec", + "path": "path", + "path/filepath": "filepath", + "runtime": "runtime", + "slices": "slices", + "strconv": "strconv", + "strings": "strings", + "unicode": "unicode", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Context": reflect.TypeOf((*q.Context)(nil)).Elem(), + "Directive": reflect.TypeOf((*q.Directive)(nil)).Elem(), + "ImportMode": reflect.TypeOf((*q.ImportMode)(nil)).Elem(), + "MultiplePackageError": reflect.TypeOf((*q.MultiplePackageError)(nil)).Elem(), + "NoGoError": reflect.TypeOf((*q.NoGoError)(nil)).Elem(), + "Package": reflect.TypeOf((*q.Package)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Default": reflect.ValueOf(&q.Default), + "ToolDir": reflect.ValueOf(&q.ToolDir), + }, + Funcs: map[string]reflect.Value{ + "ArchChar": reflect.ValueOf(q.ArchChar), + "Import": reflect.ValueOf(q.Import), + "ImportDir": reflect.ValueOf(q.ImportDir), + "IsLocalImport": reflect.ValueOf(q.IsLocalImport), + }, + TypedConsts: map[string]igop.TypedConst{ + "AllowBinary": {reflect.TypeOf(q.AllowBinary), constant.MakeInt64(int64(q.AllowBinary))}, + "FindOnly": {reflect.TypeOf(q.FindOnly), constant.MakeInt64(int64(q.FindOnly))}, + "IgnoreVendor": {reflect.TypeOf(q.IgnoreVendor), constant.MakeInt64(int64(q.IgnoreVendor))}, + "ImportComment": {reflect.TypeOf(q.ImportComment), constant.MakeInt64(int64(q.ImportComment))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/constant/go121_export.go b/pkg/go/constant/go121_export.go index 65e2b5ad..e04fa867 100755 --- a/pkg/go/constant/go121_export.go +++ b/pkg/go/constant/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package constant diff --git a/pkg/go/constant/go122_export.go b/pkg/go/constant/go122_export.go new file mode 100755 index 00000000..d42a829d --- /dev/null +++ b/pkg/go/constant/go122_export.go @@ -0,0 +1,83 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package constant + +import ( + q "go/constant" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "constant", + Path: "go/constant", + Deps: map[string]string{ + "fmt": "fmt", + "go/token": "token", + "math": "math", + "math/big": "big", + "math/bits": "bits", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "Value": reflect.TypeOf((*q.Value)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Kind": reflect.TypeOf((*q.Kind)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "BinaryOp": reflect.ValueOf(q.BinaryOp), + "BitLen": reflect.ValueOf(q.BitLen), + "BoolVal": reflect.ValueOf(q.BoolVal), + "Bytes": reflect.ValueOf(q.Bytes), + "Compare": reflect.ValueOf(q.Compare), + "Denom": reflect.ValueOf(q.Denom), + "Float32Val": reflect.ValueOf(q.Float32Val), + "Float64Val": reflect.ValueOf(q.Float64Val), + "Imag": reflect.ValueOf(q.Imag), + "Int64Val": reflect.ValueOf(q.Int64Val), + "Make": reflect.ValueOf(q.Make), + "MakeBool": reflect.ValueOf(q.MakeBool), + "MakeFloat64": reflect.ValueOf(q.MakeFloat64), + "MakeFromBytes": reflect.ValueOf(q.MakeFromBytes), + "MakeFromLiteral": reflect.ValueOf(q.MakeFromLiteral), + "MakeImag": reflect.ValueOf(q.MakeImag), + "MakeInt64": reflect.ValueOf(q.MakeInt64), + "MakeString": reflect.ValueOf(q.MakeString), + "MakeUint64": reflect.ValueOf(q.MakeUint64), + "MakeUnknown": reflect.ValueOf(q.MakeUnknown), + "Num": reflect.ValueOf(q.Num), + "Real": reflect.ValueOf(q.Real), + "Shift": reflect.ValueOf(q.Shift), + "Sign": reflect.ValueOf(q.Sign), + "StringVal": reflect.ValueOf(q.StringVal), + "ToComplex": reflect.ValueOf(q.ToComplex), + "ToFloat": reflect.ValueOf(q.ToFloat), + "ToInt": reflect.ValueOf(q.ToInt), + "Uint64Val": reflect.ValueOf(q.Uint64Val), + "UnaryOp": reflect.ValueOf(q.UnaryOp), + "Val": reflect.ValueOf(q.Val), + }, + TypedConsts: map[string]igop.TypedConst{ + "Bool": {reflect.TypeOf(q.Bool), constant.MakeInt64(int64(q.Bool))}, + "Complex": {reflect.TypeOf(q.Complex), constant.MakeInt64(int64(q.Complex))}, + "Float": {reflect.TypeOf(q.Float), constant.MakeInt64(int64(q.Float))}, + "Int": {reflect.TypeOf(q.Int), constant.MakeInt64(int64(q.Int))}, + "String": {reflect.TypeOf(q.String), constant.MakeInt64(int64(q.String))}, + "Unknown": {reflect.TypeOf(q.Unknown), constant.MakeInt64(int64(q.Unknown))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/constant/go123_export.go b/pkg/go/constant/go123_export.go new file mode 100755 index 00000000..a820f272 --- /dev/null +++ b/pkg/go/constant/go123_export.go @@ -0,0 +1,83 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package constant + +import ( + q "go/constant" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "constant", + Path: "go/constant", + Deps: map[string]string{ + "fmt": "fmt", + "go/token": "token", + "math": "math", + "math/big": "big", + "math/bits": "bits", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "Value": reflect.TypeOf((*q.Value)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Kind": reflect.TypeOf((*q.Kind)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "BinaryOp": reflect.ValueOf(q.BinaryOp), + "BitLen": reflect.ValueOf(q.BitLen), + "BoolVal": reflect.ValueOf(q.BoolVal), + "Bytes": reflect.ValueOf(q.Bytes), + "Compare": reflect.ValueOf(q.Compare), + "Denom": reflect.ValueOf(q.Denom), + "Float32Val": reflect.ValueOf(q.Float32Val), + "Float64Val": reflect.ValueOf(q.Float64Val), + "Imag": reflect.ValueOf(q.Imag), + "Int64Val": reflect.ValueOf(q.Int64Val), + "Make": reflect.ValueOf(q.Make), + "MakeBool": reflect.ValueOf(q.MakeBool), + "MakeFloat64": reflect.ValueOf(q.MakeFloat64), + "MakeFromBytes": reflect.ValueOf(q.MakeFromBytes), + "MakeFromLiteral": reflect.ValueOf(q.MakeFromLiteral), + "MakeImag": reflect.ValueOf(q.MakeImag), + "MakeInt64": reflect.ValueOf(q.MakeInt64), + "MakeString": reflect.ValueOf(q.MakeString), + "MakeUint64": reflect.ValueOf(q.MakeUint64), + "MakeUnknown": reflect.ValueOf(q.MakeUnknown), + "Num": reflect.ValueOf(q.Num), + "Real": reflect.ValueOf(q.Real), + "Shift": reflect.ValueOf(q.Shift), + "Sign": reflect.ValueOf(q.Sign), + "StringVal": reflect.ValueOf(q.StringVal), + "ToComplex": reflect.ValueOf(q.ToComplex), + "ToFloat": reflect.ValueOf(q.ToFloat), + "ToInt": reflect.ValueOf(q.ToInt), + "Uint64Val": reflect.ValueOf(q.Uint64Val), + "UnaryOp": reflect.ValueOf(q.UnaryOp), + "Val": reflect.ValueOf(q.Val), + }, + TypedConsts: map[string]igop.TypedConst{ + "Bool": {reflect.TypeOf(q.Bool), constant.MakeInt64(int64(q.Bool))}, + "Complex": {reflect.TypeOf(q.Complex), constant.MakeInt64(int64(q.Complex))}, + "Float": {reflect.TypeOf(q.Float), constant.MakeInt64(int64(q.Float))}, + "Int": {reflect.TypeOf(q.Int), constant.MakeInt64(int64(q.Int))}, + "String": {reflect.TypeOf(q.String), constant.MakeInt64(int64(q.String))}, + "Unknown": {reflect.TypeOf(q.Unknown), constant.MakeInt64(int64(q.Unknown))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/doc/comment/go121_export.go b/pkg/go/doc/comment/go121_export.go index 6d71563c..248cc6bb 100755 --- a/pkg/go/doc/comment/go121_export.go +++ b/pkg/go/doc/comment/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package comment diff --git a/pkg/go/doc/comment/go122_export.go b/pkg/go/doc/comment/go122_export.go new file mode 100755 index 00000000..11d4810c --- /dev/null +++ b/pkg/go/doc/comment/go122_export.go @@ -0,0 +1,57 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package comment + +import ( + q "go/doc/comment" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "comment", + Path: "go/doc/comment", + Deps: map[string]string{ + "bytes": "bytes", + "fmt": "fmt", + "slices": "slices", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "Block": reflect.TypeOf((*q.Block)(nil)).Elem(), + "Text": reflect.TypeOf((*q.Text)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Code": reflect.TypeOf((*q.Code)(nil)).Elem(), + "Doc": reflect.TypeOf((*q.Doc)(nil)).Elem(), + "DocLink": reflect.TypeOf((*q.DocLink)(nil)).Elem(), + "Heading": reflect.TypeOf((*q.Heading)(nil)).Elem(), + "Italic": reflect.TypeOf((*q.Italic)(nil)).Elem(), + "Link": reflect.TypeOf((*q.Link)(nil)).Elem(), + "LinkDef": reflect.TypeOf((*q.LinkDef)(nil)).Elem(), + "List": reflect.TypeOf((*q.List)(nil)).Elem(), + "ListItem": reflect.TypeOf((*q.ListItem)(nil)).Elem(), + "Paragraph": reflect.TypeOf((*q.Paragraph)(nil)).Elem(), + "Parser": reflect.TypeOf((*q.Parser)(nil)).Elem(), + "Plain": reflect.TypeOf((*q.Plain)(nil)).Elem(), + "Printer": reflect.TypeOf((*q.Printer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "DefaultLookupPackage": reflect.ValueOf(q.DefaultLookupPackage), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/doc/comment/go123_export.go b/pkg/go/doc/comment/go123_export.go new file mode 100755 index 00000000..2f103948 --- /dev/null +++ b/pkg/go/doc/comment/go123_export.go @@ -0,0 +1,57 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package comment + +import ( + q "go/doc/comment" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "comment", + Path: "go/doc/comment", + Deps: map[string]string{ + "bytes": "bytes", + "fmt": "fmt", + "slices": "slices", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "Block": reflect.TypeOf((*q.Block)(nil)).Elem(), + "Text": reflect.TypeOf((*q.Text)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Code": reflect.TypeOf((*q.Code)(nil)).Elem(), + "Doc": reflect.TypeOf((*q.Doc)(nil)).Elem(), + "DocLink": reflect.TypeOf((*q.DocLink)(nil)).Elem(), + "Heading": reflect.TypeOf((*q.Heading)(nil)).Elem(), + "Italic": reflect.TypeOf((*q.Italic)(nil)).Elem(), + "Link": reflect.TypeOf((*q.Link)(nil)).Elem(), + "LinkDef": reflect.TypeOf((*q.LinkDef)(nil)).Elem(), + "List": reflect.TypeOf((*q.List)(nil)).Elem(), + "ListItem": reflect.TypeOf((*q.ListItem)(nil)).Elem(), + "Paragraph": reflect.TypeOf((*q.Paragraph)(nil)).Elem(), + "Parser": reflect.TypeOf((*q.Parser)(nil)).Elem(), + "Plain": reflect.TypeOf((*q.Plain)(nil)).Elem(), + "Printer": reflect.TypeOf((*q.Printer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "DefaultLookupPackage": reflect.ValueOf(q.DefaultLookupPackage), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/doc/go121_export.go b/pkg/go/doc/go121_export.go index c510a526..efcd734e 100755 --- a/pkg/go/doc/go121_export.go +++ b/pkg/go/doc/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package doc diff --git a/pkg/go/doc/go122_export.go b/pkg/go/doc/go122_export.go new file mode 100755 index 00000000..3c943fd3 --- /dev/null +++ b/pkg/go/doc/go122_export.go @@ -0,0 +1,66 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package doc + +import ( + q "go/doc" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "doc", + Path: "go/doc", + Deps: map[string]string{ + "fmt": "fmt", + "go/ast": "ast", + "go/doc/comment": "comment", + "go/token": "token", + "internal/lazyregexp": "lazyregexp", + "io": "io", + "path": "path", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Example": reflect.TypeOf((*q.Example)(nil)).Elem(), + "Filter": reflect.TypeOf((*q.Filter)(nil)).Elem(), + "Func": reflect.TypeOf((*q.Func)(nil)).Elem(), + "Mode": reflect.TypeOf((*q.Mode)(nil)).Elem(), + "Note": reflect.TypeOf((*q.Note)(nil)).Elem(), + "Package": reflect.TypeOf((*q.Package)(nil)).Elem(), + "Type": reflect.TypeOf((*q.Type)(nil)).Elem(), + "Value": reflect.TypeOf((*q.Value)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "IllegalPrefixes": reflect.ValueOf(&q.IllegalPrefixes), + }, + Funcs: map[string]reflect.Value{ + "Examples": reflect.ValueOf(q.Examples), + "IsPredeclared": reflect.ValueOf(q.IsPredeclared), + "New": reflect.ValueOf(q.New), + "NewFromFiles": reflect.ValueOf(q.NewFromFiles), + "Synopsis": reflect.ValueOf(q.Synopsis), + "ToHTML": reflect.ValueOf(q.ToHTML), + "ToText": reflect.ValueOf(q.ToText), + }, + TypedConsts: map[string]igop.TypedConst{ + "AllDecls": {reflect.TypeOf(q.AllDecls), constant.MakeInt64(int64(q.AllDecls))}, + "AllMethods": {reflect.TypeOf(q.AllMethods), constant.MakeInt64(int64(q.AllMethods))}, + "PreserveAST": {reflect.TypeOf(q.PreserveAST), constant.MakeInt64(int64(q.PreserveAST))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/doc/go123_export.go b/pkg/go/doc/go123_export.go new file mode 100755 index 00000000..8c18ae97 --- /dev/null +++ b/pkg/go/doc/go123_export.go @@ -0,0 +1,67 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package doc + +import ( + q "go/doc" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "doc", + Path: "go/doc", + Deps: map[string]string{ + "cmp": "cmp", + "fmt": "fmt", + "go/ast": "ast", + "go/doc/comment": "comment", + "go/token": "token", + "internal/lazyregexp": "lazyregexp", + "io": "io", + "path": "path", + "slices": "slices", + "strconv": "strconv", + "strings": "strings", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Example": reflect.TypeOf((*q.Example)(nil)).Elem(), + "Filter": reflect.TypeOf((*q.Filter)(nil)).Elem(), + "Func": reflect.TypeOf((*q.Func)(nil)).Elem(), + "Mode": reflect.TypeOf((*q.Mode)(nil)).Elem(), + "Note": reflect.TypeOf((*q.Note)(nil)).Elem(), + "Package": reflect.TypeOf((*q.Package)(nil)).Elem(), + "Type": reflect.TypeOf((*q.Type)(nil)).Elem(), + "Value": reflect.TypeOf((*q.Value)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "IllegalPrefixes": reflect.ValueOf(&q.IllegalPrefixes), + }, + Funcs: map[string]reflect.Value{ + "Examples": reflect.ValueOf(q.Examples), + "IsPredeclared": reflect.ValueOf(q.IsPredeclared), + "New": reflect.ValueOf(q.New), + "NewFromFiles": reflect.ValueOf(q.NewFromFiles), + "Synopsis": reflect.ValueOf(q.Synopsis), + "ToHTML": reflect.ValueOf(q.ToHTML), + "ToText": reflect.ValueOf(q.ToText), + }, + TypedConsts: map[string]igop.TypedConst{ + "AllDecls": {reflect.TypeOf(q.AllDecls), constant.MakeInt64(int64(q.AllDecls))}, + "AllMethods": {reflect.TypeOf(q.AllMethods), constant.MakeInt64(int64(q.AllMethods))}, + "PreserveAST": {reflect.TypeOf(q.PreserveAST), constant.MakeInt64(int64(q.PreserveAST))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/format/go121_export.go b/pkg/go/format/go121_export.go index 727b63af..3c4564ce 100755 --- a/pkg/go/format/go121_export.go +++ b/pkg/go/format/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package format diff --git a/pkg/go/format/go122_export.go b/pkg/go/format/go122_export.go new file mode 100755 index 00000000..0cbfd08e --- /dev/null +++ b/pkg/go/format/go122_export.go @@ -0,0 +1,41 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package format + +import ( + q "go/format" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "format", + Path: "go/format", + Deps: map[string]string{ + "bytes": "bytes", + "fmt": "fmt", + "go/ast": "ast", + "go/parser": "parser", + "go/printer": "printer", + "go/token": "token", + "io": "io", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Node": reflect.ValueOf(q.Node), + "Source": reflect.ValueOf(q.Source), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/format/go123_export.go b/pkg/go/format/go123_export.go new file mode 100755 index 00000000..f0e3a7f6 --- /dev/null +++ b/pkg/go/format/go123_export.go @@ -0,0 +1,41 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package format + +import ( + q "go/format" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "format", + Path: "go/format", + Deps: map[string]string{ + "bytes": "bytes", + "fmt": "fmt", + "go/ast": "ast", + "go/parser": "parser", + "go/printer": "printer", + "go/token": "token", + "io": "io", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Node": reflect.ValueOf(q.Node), + "Source": reflect.ValueOf(q.Source), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/importer/go121_export.go b/pkg/go/importer/go121_export.go index 785d2dd6..325b8064 100755 --- a/pkg/go/importer/go121_export.go +++ b/pkg/go/importer/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package importer diff --git a/pkg/go/importer/go122_export.go b/pkg/go/importer/go122_export.go new file mode 100755 index 00000000..8a739e9f --- /dev/null +++ b/pkg/go/importer/go122_export.go @@ -0,0 +1,44 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package importer + +import ( + q "go/importer" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "importer", + Path: "go/importer", + Deps: map[string]string{ + "go/build": "build", + "go/internal/gccgoimporter": "gccgoimporter", + "go/internal/gcimporter": "gcimporter", + "go/internal/srcimporter": "srcimporter", + "go/token": "token", + "go/types": "types", + "io": "io", + "runtime": "runtime", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Lookup": reflect.TypeOf((*q.Lookup)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Default": reflect.ValueOf(q.Default), + "For": reflect.ValueOf(q.For), + "ForCompiler": reflect.ValueOf(q.ForCompiler), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/importer/go123_export.go b/pkg/go/importer/go123_export.go new file mode 100755 index 00000000..fe9146e2 --- /dev/null +++ b/pkg/go/importer/go123_export.go @@ -0,0 +1,44 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package importer + +import ( + q "go/importer" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "importer", + Path: "go/importer", + Deps: map[string]string{ + "go/build": "build", + "go/internal/gccgoimporter": "gccgoimporter", + "go/internal/gcimporter": "gcimporter", + "go/internal/srcimporter": "srcimporter", + "go/token": "token", + "go/types": "types", + "io": "io", + "runtime": "runtime", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Lookup": reflect.TypeOf((*q.Lookup)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Default": reflect.ValueOf(q.Default), + "For": reflect.ValueOf(q.For), + "ForCompiler": reflect.ValueOf(q.ForCompiler), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/parser/go121_export.go b/pkg/go/parser/go121_export.go index 8e30f334..84e9f520 100755 --- a/pkg/go/parser/go121_export.go +++ b/pkg/go/parser/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package parser diff --git a/pkg/go/parser/go122_export.go b/pkg/go/parser/go122_export.go new file mode 100755 index 00000000..527be968 --- /dev/null +++ b/pkg/go/parser/go122_export.go @@ -0,0 +1,60 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package parser + +import ( + q "go/parser" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "parser", + Path: "go/parser", + Deps: map[string]string{ + "bytes": "bytes", + "errors": "errors", + "fmt": "fmt", + "go/ast": "ast", + "go/build/constraint": "constraint", + "go/internal/typeparams": "typeparams", + "go/scanner": "scanner", + "go/token": "token", + "io": "io", + "io/fs": "fs", + "os": "os", + "path/filepath": "filepath", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Mode": reflect.TypeOf((*q.Mode)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "ParseDir": reflect.ValueOf(q.ParseDir), + "ParseExpr": reflect.ValueOf(q.ParseExpr), + "ParseExprFrom": reflect.ValueOf(q.ParseExprFrom), + "ParseFile": reflect.ValueOf(q.ParseFile), + }, + TypedConsts: map[string]igop.TypedConst{ + "AllErrors": {reflect.TypeOf(q.AllErrors), constant.MakeInt64(int64(q.AllErrors))}, + "DeclarationErrors": {reflect.TypeOf(q.DeclarationErrors), constant.MakeInt64(int64(q.DeclarationErrors))}, + "ImportsOnly": {reflect.TypeOf(q.ImportsOnly), constant.MakeInt64(int64(q.ImportsOnly))}, + "PackageClauseOnly": {reflect.TypeOf(q.PackageClauseOnly), constant.MakeInt64(int64(q.PackageClauseOnly))}, + "ParseComments": {reflect.TypeOf(q.ParseComments), constant.MakeInt64(int64(q.ParseComments))}, + "SkipObjectResolution": {reflect.TypeOf(q.SkipObjectResolution), constant.MakeInt64(int64(q.SkipObjectResolution))}, + "SpuriousErrors": {reflect.TypeOf(q.SpuriousErrors), constant.MakeInt64(int64(q.SpuriousErrors))}, + "Trace": {reflect.TypeOf(q.Trace), constant.MakeInt64(int64(q.Trace))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/parser/go123_export.go b/pkg/go/parser/go123_export.go new file mode 100755 index 00000000..aca91f73 --- /dev/null +++ b/pkg/go/parser/go123_export.go @@ -0,0 +1,60 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package parser + +import ( + q "go/parser" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "parser", + Path: "go/parser", + Deps: map[string]string{ + "bytes": "bytes", + "errors": "errors", + "fmt": "fmt", + "go/ast": "ast", + "go/build/constraint": "constraint", + "go/internal/typeparams": "typeparams", + "go/scanner": "scanner", + "go/token": "token", + "io": "io", + "io/fs": "fs", + "os": "os", + "path/filepath": "filepath", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Mode": reflect.TypeOf((*q.Mode)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "ParseDir": reflect.ValueOf(q.ParseDir), + "ParseExpr": reflect.ValueOf(q.ParseExpr), + "ParseExprFrom": reflect.ValueOf(q.ParseExprFrom), + "ParseFile": reflect.ValueOf(q.ParseFile), + }, + TypedConsts: map[string]igop.TypedConst{ + "AllErrors": {reflect.TypeOf(q.AllErrors), constant.MakeInt64(int64(q.AllErrors))}, + "DeclarationErrors": {reflect.TypeOf(q.DeclarationErrors), constant.MakeInt64(int64(q.DeclarationErrors))}, + "ImportsOnly": {reflect.TypeOf(q.ImportsOnly), constant.MakeInt64(int64(q.ImportsOnly))}, + "PackageClauseOnly": {reflect.TypeOf(q.PackageClauseOnly), constant.MakeInt64(int64(q.PackageClauseOnly))}, + "ParseComments": {reflect.TypeOf(q.ParseComments), constant.MakeInt64(int64(q.ParseComments))}, + "SkipObjectResolution": {reflect.TypeOf(q.SkipObjectResolution), constant.MakeInt64(int64(q.SkipObjectResolution))}, + "SpuriousErrors": {reflect.TypeOf(q.SpuriousErrors), constant.MakeInt64(int64(q.SpuriousErrors))}, + "Trace": {reflect.TypeOf(q.Trace), constant.MakeInt64(int64(q.Trace))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/printer/go121_export.go b/pkg/go/printer/go121_export.go index d381170c..dd5b26fb 100755 --- a/pkg/go/printer/go121_export.go +++ b/pkg/go/printer/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package printer diff --git a/pkg/go/printer/go122_export.go b/pkg/go/printer/go122_export.go new file mode 100755 index 00000000..940e4260 --- /dev/null +++ b/pkg/go/printer/go122_export.go @@ -0,0 +1,57 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package printer + +import ( + q "go/printer" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "printer", + Path: "go/printer", + Deps: map[string]string{ + "fmt": "fmt", + "go/ast": "ast", + "go/build/constraint": "constraint", + "go/doc/comment": "comment", + "go/token": "token", + "io": "io", + "math": "math", + "os": "os", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "text/tabwriter": "tabwriter", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "CommentedNode": reflect.TypeOf((*q.CommentedNode)(nil)).Elem(), + "Config": reflect.TypeOf((*q.Config)(nil)).Elem(), + "Mode": reflect.TypeOf((*q.Mode)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Fprint": reflect.ValueOf(q.Fprint), + }, + TypedConsts: map[string]igop.TypedConst{ + "RawFormat": {reflect.TypeOf(q.RawFormat), constant.MakeInt64(int64(q.RawFormat))}, + "SourcePos": {reflect.TypeOf(q.SourcePos), constant.MakeInt64(int64(q.SourcePos))}, + "TabIndent": {reflect.TypeOf(q.TabIndent), constant.MakeInt64(int64(q.TabIndent))}, + "UseSpaces": {reflect.TypeOf(q.UseSpaces), constant.MakeInt64(int64(q.UseSpaces))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/printer/go123_export.go b/pkg/go/printer/go123_export.go new file mode 100755 index 00000000..aa7fc966 --- /dev/null +++ b/pkg/go/printer/go123_export.go @@ -0,0 +1,57 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package printer + +import ( + q "go/printer" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "printer", + Path: "go/printer", + Deps: map[string]string{ + "fmt": "fmt", + "go/ast": "ast", + "go/build/constraint": "constraint", + "go/doc/comment": "comment", + "go/token": "token", + "io": "io", + "math": "math", + "os": "os", + "slices": "slices", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "text/tabwriter": "tabwriter", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "CommentedNode": reflect.TypeOf((*q.CommentedNode)(nil)).Elem(), + "Config": reflect.TypeOf((*q.Config)(nil)).Elem(), + "Mode": reflect.TypeOf((*q.Mode)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Fprint": reflect.ValueOf(q.Fprint), + }, + TypedConsts: map[string]igop.TypedConst{ + "RawFormat": {reflect.TypeOf(q.RawFormat), constant.MakeInt64(int64(q.RawFormat))}, + "SourcePos": {reflect.TypeOf(q.SourcePos), constant.MakeInt64(int64(q.SourcePos))}, + "TabIndent": {reflect.TypeOf(q.TabIndent), constant.MakeInt64(int64(q.TabIndent))}, + "UseSpaces": {reflect.TypeOf(q.UseSpaces), constant.MakeInt64(int64(q.UseSpaces))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/scanner/go121_export.go b/pkg/go/scanner/go121_export.go index 1b3c7460..d4c7be5f 100755 --- a/pkg/go/scanner/go121_export.go +++ b/pkg/go/scanner/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package scanner diff --git a/pkg/go/scanner/go122_export.go b/pkg/go/scanner/go122_export.go new file mode 100755 index 00000000..5e54b1fe --- /dev/null +++ b/pkg/go/scanner/go122_export.go @@ -0,0 +1,50 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package scanner + +import ( + q "go/scanner" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "scanner", + Path: "go/scanner", + Deps: map[string]string{ + "bytes": "bytes", + "fmt": "fmt", + "go/token": "token", + "io": "io", + "path/filepath": "filepath", + "sort": "sort", + "strconv": "strconv", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), + "ErrorHandler": reflect.TypeOf((*q.ErrorHandler)(nil)).Elem(), + "ErrorList": reflect.TypeOf((*q.ErrorList)(nil)).Elem(), + "Mode": reflect.TypeOf((*q.Mode)(nil)).Elem(), + "Scanner": reflect.TypeOf((*q.Scanner)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "PrintError": reflect.ValueOf(q.PrintError), + }, + TypedConsts: map[string]igop.TypedConst{ + "ScanComments": {reflect.TypeOf(q.ScanComments), constant.MakeInt64(int64(q.ScanComments))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/scanner/go123_export.go b/pkg/go/scanner/go123_export.go new file mode 100755 index 00000000..5f5cd050 --- /dev/null +++ b/pkg/go/scanner/go123_export.go @@ -0,0 +1,50 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package scanner + +import ( + q "go/scanner" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "scanner", + Path: "go/scanner", + Deps: map[string]string{ + "bytes": "bytes", + "fmt": "fmt", + "go/token": "token", + "io": "io", + "path/filepath": "filepath", + "sort": "sort", + "strconv": "strconv", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), + "ErrorHandler": reflect.TypeOf((*q.ErrorHandler)(nil)).Elem(), + "ErrorList": reflect.TypeOf((*q.ErrorList)(nil)).Elem(), + "Mode": reflect.TypeOf((*q.Mode)(nil)).Elem(), + "Scanner": reflect.TypeOf((*q.Scanner)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "PrintError": reflect.ValueOf(q.PrintError), + }, + TypedConsts: map[string]igop.TypedConst{ + "ScanComments": {reflect.TypeOf(q.ScanComments), constant.MakeInt64(int64(q.ScanComments))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/token/go121_export.go b/pkg/go/token/go121_export.go index 977a41b0..c953894c 100755 --- a/pkg/go/token/go121_export.go +++ b/pkg/go/token/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package token diff --git a/pkg/go/token/go122_export.go b/pkg/go/token/go122_export.go new file mode 100755 index 00000000..276b3bc3 --- /dev/null +++ b/pkg/go/token/go122_export.go @@ -0,0 +1,138 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package token + +import ( + q "go/token" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "token", + Path: "go/token", + Deps: map[string]string{ + "fmt": "fmt", + "sort": "sort", + "strconv": "strconv", + "sync": "sync", + "sync/atomic": "atomic", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "FileSet": reflect.TypeOf((*q.FileSet)(nil)).Elem(), + "Pos": reflect.TypeOf((*q.Pos)(nil)).Elem(), + "Position": reflect.TypeOf((*q.Position)(nil)).Elem(), + "Token": reflect.TypeOf((*q.Token)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "IsExported": reflect.ValueOf(q.IsExported), + "IsIdentifier": reflect.ValueOf(q.IsIdentifier), + "IsKeyword": reflect.ValueOf(q.IsKeyword), + "Lookup": reflect.ValueOf(q.Lookup), + "NewFileSet": reflect.ValueOf(q.NewFileSet), + }, + TypedConsts: map[string]igop.TypedConst{ + "ADD": {reflect.TypeOf(q.ADD), constant.MakeInt64(int64(q.ADD))}, + "ADD_ASSIGN": {reflect.TypeOf(q.ADD_ASSIGN), constant.MakeInt64(int64(q.ADD_ASSIGN))}, + "AND": {reflect.TypeOf(q.AND), constant.MakeInt64(int64(q.AND))}, + "AND_ASSIGN": {reflect.TypeOf(q.AND_ASSIGN), constant.MakeInt64(int64(q.AND_ASSIGN))}, + "AND_NOT": {reflect.TypeOf(q.AND_NOT), constant.MakeInt64(int64(q.AND_NOT))}, + "AND_NOT_ASSIGN": {reflect.TypeOf(q.AND_NOT_ASSIGN), constant.MakeInt64(int64(q.AND_NOT_ASSIGN))}, + "ARROW": {reflect.TypeOf(q.ARROW), constant.MakeInt64(int64(q.ARROW))}, + "ASSIGN": {reflect.TypeOf(q.ASSIGN), constant.MakeInt64(int64(q.ASSIGN))}, + "BREAK": {reflect.TypeOf(q.BREAK), constant.MakeInt64(int64(q.BREAK))}, + "CASE": {reflect.TypeOf(q.CASE), constant.MakeInt64(int64(q.CASE))}, + "CHAN": {reflect.TypeOf(q.CHAN), constant.MakeInt64(int64(q.CHAN))}, + "CHAR": {reflect.TypeOf(q.CHAR), constant.MakeInt64(int64(q.CHAR))}, + "COLON": {reflect.TypeOf(q.COLON), constant.MakeInt64(int64(q.COLON))}, + "COMMA": {reflect.TypeOf(q.COMMA), constant.MakeInt64(int64(q.COMMA))}, + "COMMENT": {reflect.TypeOf(q.COMMENT), constant.MakeInt64(int64(q.COMMENT))}, + "CONST": {reflect.TypeOf(q.CONST), constant.MakeInt64(int64(q.CONST))}, + "CONTINUE": {reflect.TypeOf(q.CONTINUE), constant.MakeInt64(int64(q.CONTINUE))}, + "DEC": {reflect.TypeOf(q.DEC), constant.MakeInt64(int64(q.DEC))}, + "DEFAULT": {reflect.TypeOf(q.DEFAULT), constant.MakeInt64(int64(q.DEFAULT))}, + "DEFER": {reflect.TypeOf(q.DEFER), constant.MakeInt64(int64(q.DEFER))}, + "DEFINE": {reflect.TypeOf(q.DEFINE), constant.MakeInt64(int64(q.DEFINE))}, + "ELLIPSIS": {reflect.TypeOf(q.ELLIPSIS), constant.MakeInt64(int64(q.ELLIPSIS))}, + "ELSE": {reflect.TypeOf(q.ELSE), constant.MakeInt64(int64(q.ELSE))}, + "EOF": {reflect.TypeOf(q.EOF), constant.MakeInt64(int64(q.EOF))}, + "EQL": {reflect.TypeOf(q.EQL), constant.MakeInt64(int64(q.EQL))}, + "FALLTHROUGH": {reflect.TypeOf(q.FALLTHROUGH), constant.MakeInt64(int64(q.FALLTHROUGH))}, + "FLOAT": {reflect.TypeOf(q.FLOAT), constant.MakeInt64(int64(q.FLOAT))}, + "FOR": {reflect.TypeOf(q.FOR), constant.MakeInt64(int64(q.FOR))}, + "FUNC": {reflect.TypeOf(q.FUNC), constant.MakeInt64(int64(q.FUNC))}, + "GEQ": {reflect.TypeOf(q.GEQ), constant.MakeInt64(int64(q.GEQ))}, + "GO": {reflect.TypeOf(q.GO), constant.MakeInt64(int64(q.GO))}, + "GOTO": {reflect.TypeOf(q.GOTO), constant.MakeInt64(int64(q.GOTO))}, + "GTR": {reflect.TypeOf(q.GTR), constant.MakeInt64(int64(q.GTR))}, + "IDENT": {reflect.TypeOf(q.IDENT), constant.MakeInt64(int64(q.IDENT))}, + "IF": {reflect.TypeOf(q.IF), constant.MakeInt64(int64(q.IF))}, + "ILLEGAL": {reflect.TypeOf(q.ILLEGAL), constant.MakeInt64(int64(q.ILLEGAL))}, + "IMAG": {reflect.TypeOf(q.IMAG), constant.MakeInt64(int64(q.IMAG))}, + "IMPORT": {reflect.TypeOf(q.IMPORT), constant.MakeInt64(int64(q.IMPORT))}, + "INC": {reflect.TypeOf(q.INC), constant.MakeInt64(int64(q.INC))}, + "INT": {reflect.TypeOf(q.INT), constant.MakeInt64(int64(q.INT))}, + "INTERFACE": {reflect.TypeOf(q.INTERFACE), constant.MakeInt64(int64(q.INTERFACE))}, + "LAND": {reflect.TypeOf(q.LAND), constant.MakeInt64(int64(q.LAND))}, + "LBRACE": {reflect.TypeOf(q.LBRACE), constant.MakeInt64(int64(q.LBRACE))}, + "LBRACK": {reflect.TypeOf(q.LBRACK), constant.MakeInt64(int64(q.LBRACK))}, + "LEQ": {reflect.TypeOf(q.LEQ), constant.MakeInt64(int64(q.LEQ))}, + "LOR": {reflect.TypeOf(q.LOR), constant.MakeInt64(int64(q.LOR))}, + "LPAREN": {reflect.TypeOf(q.LPAREN), constant.MakeInt64(int64(q.LPAREN))}, + "LSS": {reflect.TypeOf(q.LSS), constant.MakeInt64(int64(q.LSS))}, + "MAP": {reflect.TypeOf(q.MAP), constant.MakeInt64(int64(q.MAP))}, + "MUL": {reflect.TypeOf(q.MUL), constant.MakeInt64(int64(q.MUL))}, + "MUL_ASSIGN": {reflect.TypeOf(q.MUL_ASSIGN), constant.MakeInt64(int64(q.MUL_ASSIGN))}, + "NEQ": {reflect.TypeOf(q.NEQ), constant.MakeInt64(int64(q.NEQ))}, + "NOT": {reflect.TypeOf(q.NOT), constant.MakeInt64(int64(q.NOT))}, + "NoPos": {reflect.TypeOf(q.NoPos), constant.MakeInt64(int64(q.NoPos))}, + "OR": {reflect.TypeOf(q.OR), constant.MakeInt64(int64(q.OR))}, + "OR_ASSIGN": {reflect.TypeOf(q.OR_ASSIGN), constant.MakeInt64(int64(q.OR_ASSIGN))}, + "PACKAGE": {reflect.TypeOf(q.PACKAGE), constant.MakeInt64(int64(q.PACKAGE))}, + "PERIOD": {reflect.TypeOf(q.PERIOD), constant.MakeInt64(int64(q.PERIOD))}, + "QUO": {reflect.TypeOf(q.QUO), constant.MakeInt64(int64(q.QUO))}, + "QUO_ASSIGN": {reflect.TypeOf(q.QUO_ASSIGN), constant.MakeInt64(int64(q.QUO_ASSIGN))}, + "RANGE": {reflect.TypeOf(q.RANGE), constant.MakeInt64(int64(q.RANGE))}, + "RBRACE": {reflect.TypeOf(q.RBRACE), constant.MakeInt64(int64(q.RBRACE))}, + "RBRACK": {reflect.TypeOf(q.RBRACK), constant.MakeInt64(int64(q.RBRACK))}, + "REM": {reflect.TypeOf(q.REM), constant.MakeInt64(int64(q.REM))}, + "REM_ASSIGN": {reflect.TypeOf(q.REM_ASSIGN), constant.MakeInt64(int64(q.REM_ASSIGN))}, + "RETURN": {reflect.TypeOf(q.RETURN), constant.MakeInt64(int64(q.RETURN))}, + "RPAREN": {reflect.TypeOf(q.RPAREN), constant.MakeInt64(int64(q.RPAREN))}, + "SELECT": {reflect.TypeOf(q.SELECT), constant.MakeInt64(int64(q.SELECT))}, + "SEMICOLON": {reflect.TypeOf(q.SEMICOLON), constant.MakeInt64(int64(q.SEMICOLON))}, + "SHL": {reflect.TypeOf(q.SHL), constant.MakeInt64(int64(q.SHL))}, + "SHL_ASSIGN": {reflect.TypeOf(q.SHL_ASSIGN), constant.MakeInt64(int64(q.SHL_ASSIGN))}, + "SHR": {reflect.TypeOf(q.SHR), constant.MakeInt64(int64(q.SHR))}, + "SHR_ASSIGN": {reflect.TypeOf(q.SHR_ASSIGN), constant.MakeInt64(int64(q.SHR_ASSIGN))}, + "STRING": {reflect.TypeOf(q.STRING), constant.MakeInt64(int64(q.STRING))}, + "STRUCT": {reflect.TypeOf(q.STRUCT), constant.MakeInt64(int64(q.STRUCT))}, + "SUB": {reflect.TypeOf(q.SUB), constant.MakeInt64(int64(q.SUB))}, + "SUB_ASSIGN": {reflect.TypeOf(q.SUB_ASSIGN), constant.MakeInt64(int64(q.SUB_ASSIGN))}, + "SWITCH": {reflect.TypeOf(q.SWITCH), constant.MakeInt64(int64(q.SWITCH))}, + "TILDE": {reflect.TypeOf(q.TILDE), constant.MakeInt64(int64(q.TILDE))}, + "TYPE": {reflect.TypeOf(q.TYPE), constant.MakeInt64(int64(q.TYPE))}, + "VAR": {reflect.TypeOf(q.VAR), constant.MakeInt64(int64(q.VAR))}, + "XOR": {reflect.TypeOf(q.XOR), constant.MakeInt64(int64(q.XOR))}, + "XOR_ASSIGN": {reflect.TypeOf(q.XOR_ASSIGN), constant.MakeInt64(int64(q.XOR_ASSIGN))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "HighestPrec": {"untyped int", constant.MakeInt64(int64(q.HighestPrec))}, + "LowestPrec": {"untyped int", constant.MakeInt64(int64(q.LowestPrec))}, + "UnaryPrec": {"untyped int", constant.MakeInt64(int64(q.UnaryPrec))}, + }, + }) +} diff --git a/pkg/go/token/go123_export.go b/pkg/go/token/go123_export.go new file mode 100755 index 00000000..abb57cd5 --- /dev/null +++ b/pkg/go/token/go123_export.go @@ -0,0 +1,139 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package token + +import ( + q "go/token" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "token", + Path: "go/token", + Deps: map[string]string{ + "cmp": "cmp", + "fmt": "fmt", + "slices": "slices", + "strconv": "strconv", + "sync": "sync", + "sync/atomic": "atomic", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "FileSet": reflect.TypeOf((*q.FileSet)(nil)).Elem(), + "Pos": reflect.TypeOf((*q.Pos)(nil)).Elem(), + "Position": reflect.TypeOf((*q.Position)(nil)).Elem(), + "Token": reflect.TypeOf((*q.Token)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "IsExported": reflect.ValueOf(q.IsExported), + "IsIdentifier": reflect.ValueOf(q.IsIdentifier), + "IsKeyword": reflect.ValueOf(q.IsKeyword), + "Lookup": reflect.ValueOf(q.Lookup), + "NewFileSet": reflect.ValueOf(q.NewFileSet), + }, + TypedConsts: map[string]igop.TypedConst{ + "ADD": {reflect.TypeOf(q.ADD), constant.MakeInt64(int64(q.ADD))}, + "ADD_ASSIGN": {reflect.TypeOf(q.ADD_ASSIGN), constant.MakeInt64(int64(q.ADD_ASSIGN))}, + "AND": {reflect.TypeOf(q.AND), constant.MakeInt64(int64(q.AND))}, + "AND_ASSIGN": {reflect.TypeOf(q.AND_ASSIGN), constant.MakeInt64(int64(q.AND_ASSIGN))}, + "AND_NOT": {reflect.TypeOf(q.AND_NOT), constant.MakeInt64(int64(q.AND_NOT))}, + "AND_NOT_ASSIGN": {reflect.TypeOf(q.AND_NOT_ASSIGN), constant.MakeInt64(int64(q.AND_NOT_ASSIGN))}, + "ARROW": {reflect.TypeOf(q.ARROW), constant.MakeInt64(int64(q.ARROW))}, + "ASSIGN": {reflect.TypeOf(q.ASSIGN), constant.MakeInt64(int64(q.ASSIGN))}, + "BREAK": {reflect.TypeOf(q.BREAK), constant.MakeInt64(int64(q.BREAK))}, + "CASE": {reflect.TypeOf(q.CASE), constant.MakeInt64(int64(q.CASE))}, + "CHAN": {reflect.TypeOf(q.CHAN), constant.MakeInt64(int64(q.CHAN))}, + "CHAR": {reflect.TypeOf(q.CHAR), constant.MakeInt64(int64(q.CHAR))}, + "COLON": {reflect.TypeOf(q.COLON), constant.MakeInt64(int64(q.COLON))}, + "COMMA": {reflect.TypeOf(q.COMMA), constant.MakeInt64(int64(q.COMMA))}, + "COMMENT": {reflect.TypeOf(q.COMMENT), constant.MakeInt64(int64(q.COMMENT))}, + "CONST": {reflect.TypeOf(q.CONST), constant.MakeInt64(int64(q.CONST))}, + "CONTINUE": {reflect.TypeOf(q.CONTINUE), constant.MakeInt64(int64(q.CONTINUE))}, + "DEC": {reflect.TypeOf(q.DEC), constant.MakeInt64(int64(q.DEC))}, + "DEFAULT": {reflect.TypeOf(q.DEFAULT), constant.MakeInt64(int64(q.DEFAULT))}, + "DEFER": {reflect.TypeOf(q.DEFER), constant.MakeInt64(int64(q.DEFER))}, + "DEFINE": {reflect.TypeOf(q.DEFINE), constant.MakeInt64(int64(q.DEFINE))}, + "ELLIPSIS": {reflect.TypeOf(q.ELLIPSIS), constant.MakeInt64(int64(q.ELLIPSIS))}, + "ELSE": {reflect.TypeOf(q.ELSE), constant.MakeInt64(int64(q.ELSE))}, + "EOF": {reflect.TypeOf(q.EOF), constant.MakeInt64(int64(q.EOF))}, + "EQL": {reflect.TypeOf(q.EQL), constant.MakeInt64(int64(q.EQL))}, + "FALLTHROUGH": {reflect.TypeOf(q.FALLTHROUGH), constant.MakeInt64(int64(q.FALLTHROUGH))}, + "FLOAT": {reflect.TypeOf(q.FLOAT), constant.MakeInt64(int64(q.FLOAT))}, + "FOR": {reflect.TypeOf(q.FOR), constant.MakeInt64(int64(q.FOR))}, + "FUNC": {reflect.TypeOf(q.FUNC), constant.MakeInt64(int64(q.FUNC))}, + "GEQ": {reflect.TypeOf(q.GEQ), constant.MakeInt64(int64(q.GEQ))}, + "GO": {reflect.TypeOf(q.GO), constant.MakeInt64(int64(q.GO))}, + "GOTO": {reflect.TypeOf(q.GOTO), constant.MakeInt64(int64(q.GOTO))}, + "GTR": {reflect.TypeOf(q.GTR), constant.MakeInt64(int64(q.GTR))}, + "IDENT": {reflect.TypeOf(q.IDENT), constant.MakeInt64(int64(q.IDENT))}, + "IF": {reflect.TypeOf(q.IF), constant.MakeInt64(int64(q.IF))}, + "ILLEGAL": {reflect.TypeOf(q.ILLEGAL), constant.MakeInt64(int64(q.ILLEGAL))}, + "IMAG": {reflect.TypeOf(q.IMAG), constant.MakeInt64(int64(q.IMAG))}, + "IMPORT": {reflect.TypeOf(q.IMPORT), constant.MakeInt64(int64(q.IMPORT))}, + "INC": {reflect.TypeOf(q.INC), constant.MakeInt64(int64(q.INC))}, + "INT": {reflect.TypeOf(q.INT), constant.MakeInt64(int64(q.INT))}, + "INTERFACE": {reflect.TypeOf(q.INTERFACE), constant.MakeInt64(int64(q.INTERFACE))}, + "LAND": {reflect.TypeOf(q.LAND), constant.MakeInt64(int64(q.LAND))}, + "LBRACE": {reflect.TypeOf(q.LBRACE), constant.MakeInt64(int64(q.LBRACE))}, + "LBRACK": {reflect.TypeOf(q.LBRACK), constant.MakeInt64(int64(q.LBRACK))}, + "LEQ": {reflect.TypeOf(q.LEQ), constant.MakeInt64(int64(q.LEQ))}, + "LOR": {reflect.TypeOf(q.LOR), constant.MakeInt64(int64(q.LOR))}, + "LPAREN": {reflect.TypeOf(q.LPAREN), constant.MakeInt64(int64(q.LPAREN))}, + "LSS": {reflect.TypeOf(q.LSS), constant.MakeInt64(int64(q.LSS))}, + "MAP": {reflect.TypeOf(q.MAP), constant.MakeInt64(int64(q.MAP))}, + "MUL": {reflect.TypeOf(q.MUL), constant.MakeInt64(int64(q.MUL))}, + "MUL_ASSIGN": {reflect.TypeOf(q.MUL_ASSIGN), constant.MakeInt64(int64(q.MUL_ASSIGN))}, + "NEQ": {reflect.TypeOf(q.NEQ), constant.MakeInt64(int64(q.NEQ))}, + "NOT": {reflect.TypeOf(q.NOT), constant.MakeInt64(int64(q.NOT))}, + "NoPos": {reflect.TypeOf(q.NoPos), constant.MakeInt64(int64(q.NoPos))}, + "OR": {reflect.TypeOf(q.OR), constant.MakeInt64(int64(q.OR))}, + "OR_ASSIGN": {reflect.TypeOf(q.OR_ASSIGN), constant.MakeInt64(int64(q.OR_ASSIGN))}, + "PACKAGE": {reflect.TypeOf(q.PACKAGE), constant.MakeInt64(int64(q.PACKAGE))}, + "PERIOD": {reflect.TypeOf(q.PERIOD), constant.MakeInt64(int64(q.PERIOD))}, + "QUO": {reflect.TypeOf(q.QUO), constant.MakeInt64(int64(q.QUO))}, + "QUO_ASSIGN": {reflect.TypeOf(q.QUO_ASSIGN), constant.MakeInt64(int64(q.QUO_ASSIGN))}, + "RANGE": {reflect.TypeOf(q.RANGE), constant.MakeInt64(int64(q.RANGE))}, + "RBRACE": {reflect.TypeOf(q.RBRACE), constant.MakeInt64(int64(q.RBRACE))}, + "RBRACK": {reflect.TypeOf(q.RBRACK), constant.MakeInt64(int64(q.RBRACK))}, + "REM": {reflect.TypeOf(q.REM), constant.MakeInt64(int64(q.REM))}, + "REM_ASSIGN": {reflect.TypeOf(q.REM_ASSIGN), constant.MakeInt64(int64(q.REM_ASSIGN))}, + "RETURN": {reflect.TypeOf(q.RETURN), constant.MakeInt64(int64(q.RETURN))}, + "RPAREN": {reflect.TypeOf(q.RPAREN), constant.MakeInt64(int64(q.RPAREN))}, + "SELECT": {reflect.TypeOf(q.SELECT), constant.MakeInt64(int64(q.SELECT))}, + "SEMICOLON": {reflect.TypeOf(q.SEMICOLON), constant.MakeInt64(int64(q.SEMICOLON))}, + "SHL": {reflect.TypeOf(q.SHL), constant.MakeInt64(int64(q.SHL))}, + "SHL_ASSIGN": {reflect.TypeOf(q.SHL_ASSIGN), constant.MakeInt64(int64(q.SHL_ASSIGN))}, + "SHR": {reflect.TypeOf(q.SHR), constant.MakeInt64(int64(q.SHR))}, + "SHR_ASSIGN": {reflect.TypeOf(q.SHR_ASSIGN), constant.MakeInt64(int64(q.SHR_ASSIGN))}, + "STRING": {reflect.TypeOf(q.STRING), constant.MakeInt64(int64(q.STRING))}, + "STRUCT": {reflect.TypeOf(q.STRUCT), constant.MakeInt64(int64(q.STRUCT))}, + "SUB": {reflect.TypeOf(q.SUB), constant.MakeInt64(int64(q.SUB))}, + "SUB_ASSIGN": {reflect.TypeOf(q.SUB_ASSIGN), constant.MakeInt64(int64(q.SUB_ASSIGN))}, + "SWITCH": {reflect.TypeOf(q.SWITCH), constant.MakeInt64(int64(q.SWITCH))}, + "TILDE": {reflect.TypeOf(q.TILDE), constant.MakeInt64(int64(q.TILDE))}, + "TYPE": {reflect.TypeOf(q.TYPE), constant.MakeInt64(int64(q.TYPE))}, + "VAR": {reflect.TypeOf(q.VAR), constant.MakeInt64(int64(q.VAR))}, + "XOR": {reflect.TypeOf(q.XOR), constant.MakeInt64(int64(q.XOR))}, + "XOR_ASSIGN": {reflect.TypeOf(q.XOR_ASSIGN), constant.MakeInt64(int64(q.XOR_ASSIGN))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "HighestPrec": {"untyped int", constant.MakeInt64(int64(q.HighestPrec))}, + "LowestPrec": {"untyped int", constant.MakeInt64(int64(q.LowestPrec))}, + "UnaryPrec": {"untyped int", constant.MakeInt64(int64(q.UnaryPrec))}, + }, + }) +} diff --git a/pkg/go/types/go121_export.go b/pkg/go/types/go121_export.go index 53183102..372d302c 100755 --- a/pkg/go/types/go121_export.go +++ b/pkg/go/types/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package types diff --git a/pkg/go/types/go122_export.go b/pkg/go/types/go122_export.go new file mode 100755 index 00000000..d6e0a5ed --- /dev/null +++ b/pkg/go/types/go122_export.go @@ -0,0 +1,213 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package types + +import ( + q "go/types" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "types", + Path: "go/types", + Deps: map[string]string{ + "bytes": "bytes", + "container/heap": "heap", + "errors": "errors", + "fmt": "fmt", + "go/ast": "ast", + "go/constant": "constant", + "go/internal/typeparams": "typeparams", + "go/parser": "parser", + "go/token": "token", + "go/version": "version", + "internal/buildcfg": "buildcfg", + "internal/godebug": "godebug", + "internal/goversion": "goversion", + "internal/types/errors": "errors", + "io": "io", + "math": "math", + "runtime": "runtime", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "sync/atomic": "atomic", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "Importer": reflect.TypeOf((*q.Importer)(nil)).Elem(), + "ImporterFrom": reflect.TypeOf((*q.ImporterFrom)(nil)).Elem(), + "Object": reflect.TypeOf((*q.Object)(nil)).Elem(), + "Sizes": reflect.TypeOf((*q.Sizes)(nil)).Elem(), + "Type": reflect.TypeOf((*q.Type)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Alias": reflect.TypeOf((*q.Alias)(nil)).Elem(), + "ArgumentError": reflect.TypeOf((*q.ArgumentError)(nil)).Elem(), + "Array": reflect.TypeOf((*q.Array)(nil)).Elem(), + "Basic": reflect.TypeOf((*q.Basic)(nil)).Elem(), + "BasicInfo": reflect.TypeOf((*q.BasicInfo)(nil)).Elem(), + "BasicKind": reflect.TypeOf((*q.BasicKind)(nil)).Elem(), + "Builtin": reflect.TypeOf((*q.Builtin)(nil)).Elem(), + "Chan": reflect.TypeOf((*q.Chan)(nil)).Elem(), + "ChanDir": reflect.TypeOf((*q.ChanDir)(nil)).Elem(), + "Checker": reflect.TypeOf((*q.Checker)(nil)).Elem(), + "Config": reflect.TypeOf((*q.Config)(nil)).Elem(), + "Const": reflect.TypeOf((*q.Const)(nil)).Elem(), + "Context": reflect.TypeOf((*q.Context)(nil)).Elem(), + "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), + "Func": reflect.TypeOf((*q.Func)(nil)).Elem(), + "ImportMode": reflect.TypeOf((*q.ImportMode)(nil)).Elem(), + "Info": reflect.TypeOf((*q.Info)(nil)).Elem(), + "Initializer": reflect.TypeOf((*q.Initializer)(nil)).Elem(), + "Instance": reflect.TypeOf((*q.Instance)(nil)).Elem(), + "Interface": reflect.TypeOf((*q.Interface)(nil)).Elem(), + "Label": reflect.TypeOf((*q.Label)(nil)).Elem(), + "Map": reflect.TypeOf((*q.Map)(nil)).Elem(), + "MethodSet": reflect.TypeOf((*q.MethodSet)(nil)).Elem(), + "Named": reflect.TypeOf((*q.Named)(nil)).Elem(), + "Nil": reflect.TypeOf((*q.Nil)(nil)).Elem(), + "Package": reflect.TypeOf((*q.Package)(nil)).Elem(), + "PkgName": reflect.TypeOf((*q.PkgName)(nil)).Elem(), + "Pointer": reflect.TypeOf((*q.Pointer)(nil)).Elem(), + "Qualifier": reflect.TypeOf((*q.Qualifier)(nil)).Elem(), + "Scope": reflect.TypeOf((*q.Scope)(nil)).Elem(), + "Selection": reflect.TypeOf((*q.Selection)(nil)).Elem(), + "SelectionKind": reflect.TypeOf((*q.SelectionKind)(nil)).Elem(), + "Signature": reflect.TypeOf((*q.Signature)(nil)).Elem(), + "Slice": reflect.TypeOf((*q.Slice)(nil)).Elem(), + "StdSizes": reflect.TypeOf((*q.StdSizes)(nil)).Elem(), + "Struct": reflect.TypeOf((*q.Struct)(nil)).Elem(), + "Term": reflect.TypeOf((*q.Term)(nil)).Elem(), + "Tuple": reflect.TypeOf((*q.Tuple)(nil)).Elem(), + "TypeAndValue": reflect.TypeOf((*q.TypeAndValue)(nil)).Elem(), + "TypeList": reflect.TypeOf((*q.TypeList)(nil)).Elem(), + "TypeName": reflect.TypeOf((*q.TypeName)(nil)).Elem(), + "TypeParam": reflect.TypeOf((*q.TypeParam)(nil)).Elem(), + "TypeParamList": reflect.TypeOf((*q.TypeParamList)(nil)).Elem(), + "Union": reflect.TypeOf((*q.Union)(nil)).Elem(), + "Var": reflect.TypeOf((*q.Var)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Typ": reflect.ValueOf(&q.Typ), + "Universe": reflect.ValueOf(&q.Universe), + "Unsafe": reflect.ValueOf(&q.Unsafe), + }, + Funcs: map[string]reflect.Value{ + "AssertableTo": reflect.ValueOf(q.AssertableTo), + "AssignableTo": reflect.ValueOf(q.AssignableTo), + "CheckExpr": reflect.ValueOf(q.CheckExpr), + "Comparable": reflect.ValueOf(q.Comparable), + "ConvertibleTo": reflect.ValueOf(q.ConvertibleTo), + "DefPredeclaredTestFuncs": reflect.ValueOf(q.DefPredeclaredTestFuncs), + "Default": reflect.ValueOf(q.Default), + "Eval": reflect.ValueOf(q.Eval), + "ExprString": reflect.ValueOf(q.ExprString), + "Id": reflect.ValueOf(q.Id), + "Identical": reflect.ValueOf(q.Identical), + "IdenticalIgnoreTags": reflect.ValueOf(q.IdenticalIgnoreTags), + "Implements": reflect.ValueOf(q.Implements), + "Instantiate": reflect.ValueOf(q.Instantiate), + "IsInterface": reflect.ValueOf(q.IsInterface), + "LookupFieldOrMethod": reflect.ValueOf(q.LookupFieldOrMethod), + "MissingMethod": reflect.ValueOf(q.MissingMethod), + "NewAlias": reflect.ValueOf(q.NewAlias), + "NewArray": reflect.ValueOf(q.NewArray), + "NewChan": reflect.ValueOf(q.NewChan), + "NewChecker": reflect.ValueOf(q.NewChecker), + "NewConst": reflect.ValueOf(q.NewConst), + "NewContext": reflect.ValueOf(q.NewContext), + "NewField": reflect.ValueOf(q.NewField), + "NewFunc": reflect.ValueOf(q.NewFunc), + "NewInterface": reflect.ValueOf(q.NewInterface), + "NewInterfaceType": reflect.ValueOf(q.NewInterfaceType), + "NewLabel": reflect.ValueOf(q.NewLabel), + "NewMap": reflect.ValueOf(q.NewMap), + "NewMethodSet": reflect.ValueOf(q.NewMethodSet), + "NewNamed": reflect.ValueOf(q.NewNamed), + "NewPackage": reflect.ValueOf(q.NewPackage), + "NewParam": reflect.ValueOf(q.NewParam), + "NewPkgName": reflect.ValueOf(q.NewPkgName), + "NewPointer": reflect.ValueOf(q.NewPointer), + "NewScope": reflect.ValueOf(q.NewScope), + "NewSignature": reflect.ValueOf(q.NewSignature), + "NewSignatureType": reflect.ValueOf(q.NewSignatureType), + "NewSlice": reflect.ValueOf(q.NewSlice), + "NewStruct": reflect.ValueOf(q.NewStruct), + "NewTerm": reflect.ValueOf(q.NewTerm), + "NewTuple": reflect.ValueOf(q.NewTuple), + "NewTypeName": reflect.ValueOf(q.NewTypeName), + "NewTypeParam": reflect.ValueOf(q.NewTypeParam), + "NewUnion": reflect.ValueOf(q.NewUnion), + "NewVar": reflect.ValueOf(q.NewVar), + "ObjectString": reflect.ValueOf(q.ObjectString), + "RelativeTo": reflect.ValueOf(q.RelativeTo), + "Satisfies": reflect.ValueOf(q.Satisfies), + "SelectionString": reflect.ValueOf(q.SelectionString), + "SizesFor": reflect.ValueOf(q.SizesFor), + "TypeString": reflect.ValueOf(q.TypeString), + "Unalias": reflect.ValueOf(q.Unalias), + "WriteExpr": reflect.ValueOf(q.WriteExpr), + "WriteSignature": reflect.ValueOf(q.WriteSignature), + "WriteType": reflect.ValueOf(q.WriteType), + }, + TypedConsts: map[string]igop.TypedConst{ + "Bool": {reflect.TypeOf(q.Bool), constant.MakeInt64(int64(q.Bool))}, + "Byte": {reflect.TypeOf(q.Byte), constant.MakeInt64(int64(q.Byte))}, + "Complex128": {reflect.TypeOf(q.Complex128), constant.MakeInt64(int64(q.Complex128))}, + "Complex64": {reflect.TypeOf(q.Complex64), constant.MakeInt64(int64(q.Complex64))}, + "FieldVal": {reflect.TypeOf(q.FieldVal), constant.MakeInt64(int64(q.FieldVal))}, + "Float32": {reflect.TypeOf(q.Float32), constant.MakeInt64(int64(q.Float32))}, + "Float64": {reflect.TypeOf(q.Float64), constant.MakeInt64(int64(q.Float64))}, + "Int": {reflect.TypeOf(q.Int), constant.MakeInt64(int64(q.Int))}, + "Int16": {reflect.TypeOf(q.Int16), constant.MakeInt64(int64(q.Int16))}, + "Int32": {reflect.TypeOf(q.Int32), constant.MakeInt64(int64(q.Int32))}, + "Int64": {reflect.TypeOf(q.Int64), constant.MakeInt64(int64(q.Int64))}, + "Int8": {reflect.TypeOf(q.Int8), constant.MakeInt64(int64(q.Int8))}, + "Invalid": {reflect.TypeOf(q.Invalid), constant.MakeInt64(int64(q.Invalid))}, + "IsBoolean": {reflect.TypeOf(q.IsBoolean), constant.MakeInt64(int64(q.IsBoolean))}, + "IsComplex": {reflect.TypeOf(q.IsComplex), constant.MakeInt64(int64(q.IsComplex))}, + "IsConstType": {reflect.TypeOf(q.IsConstType), constant.MakeInt64(int64(q.IsConstType))}, + "IsFloat": {reflect.TypeOf(q.IsFloat), constant.MakeInt64(int64(q.IsFloat))}, + "IsInteger": {reflect.TypeOf(q.IsInteger), constant.MakeInt64(int64(q.IsInteger))}, + "IsNumeric": {reflect.TypeOf(q.IsNumeric), constant.MakeInt64(int64(q.IsNumeric))}, + "IsOrdered": {reflect.TypeOf(q.IsOrdered), constant.MakeInt64(int64(q.IsOrdered))}, + "IsString": {reflect.TypeOf(q.IsString), constant.MakeInt64(int64(q.IsString))}, + "IsUnsigned": {reflect.TypeOf(q.IsUnsigned), constant.MakeInt64(int64(q.IsUnsigned))}, + "IsUntyped": {reflect.TypeOf(q.IsUntyped), constant.MakeInt64(int64(q.IsUntyped))}, + "MethodExpr": {reflect.TypeOf(q.MethodExpr), constant.MakeInt64(int64(q.MethodExpr))}, + "MethodVal": {reflect.TypeOf(q.MethodVal), constant.MakeInt64(int64(q.MethodVal))}, + "RecvOnly": {reflect.TypeOf(q.RecvOnly), constant.MakeInt64(int64(q.RecvOnly))}, + "Rune": {reflect.TypeOf(q.Rune), constant.MakeInt64(int64(q.Rune))}, + "SendOnly": {reflect.TypeOf(q.SendOnly), constant.MakeInt64(int64(q.SendOnly))}, + "SendRecv": {reflect.TypeOf(q.SendRecv), constant.MakeInt64(int64(q.SendRecv))}, + "String": {reflect.TypeOf(q.String), constant.MakeInt64(int64(q.String))}, + "Uint": {reflect.TypeOf(q.Uint), constant.MakeInt64(int64(q.Uint))}, + "Uint16": {reflect.TypeOf(q.Uint16), constant.MakeInt64(int64(q.Uint16))}, + "Uint32": {reflect.TypeOf(q.Uint32), constant.MakeInt64(int64(q.Uint32))}, + "Uint64": {reflect.TypeOf(q.Uint64), constant.MakeInt64(int64(q.Uint64))}, + "Uint8": {reflect.TypeOf(q.Uint8), constant.MakeInt64(int64(q.Uint8))}, + "Uintptr": {reflect.TypeOf(q.Uintptr), constant.MakeInt64(int64(q.Uintptr))}, + "UnsafePointer": {reflect.TypeOf(q.UnsafePointer), constant.MakeInt64(int64(q.UnsafePointer))}, + "UntypedBool": {reflect.TypeOf(q.UntypedBool), constant.MakeInt64(int64(q.UntypedBool))}, + "UntypedComplex": {reflect.TypeOf(q.UntypedComplex), constant.MakeInt64(int64(q.UntypedComplex))}, + "UntypedFloat": {reflect.TypeOf(q.UntypedFloat), constant.MakeInt64(int64(q.UntypedFloat))}, + "UntypedInt": {reflect.TypeOf(q.UntypedInt), constant.MakeInt64(int64(q.UntypedInt))}, + "UntypedNil": {reflect.TypeOf(q.UntypedNil), constant.MakeInt64(int64(q.UntypedNil))}, + "UntypedRune": {reflect.TypeOf(q.UntypedRune), constant.MakeInt64(int64(q.UntypedRune))}, + "UntypedString": {reflect.TypeOf(q.UntypedString), constant.MakeInt64(int64(q.UntypedString))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/types/go123_export.go b/pkg/go/types/go123_export.go new file mode 100755 index 00000000..21d10e90 --- /dev/null +++ b/pkg/go/types/go123_export.go @@ -0,0 +1,214 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package types + +import ( + q "go/types" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "types", + Path: "go/types", + Deps: map[string]string{ + "bytes": "bytes", + "container/heap": "heap", + "errors": "errors", + "fmt": "fmt", + "go/ast": "ast", + "go/constant": "constant", + "go/internal/typeparams": "typeparams", + "go/parser": "parser", + "go/token": "token", + "go/version": "version", + "internal/buildcfg": "buildcfg", + "internal/godebug": "godebug", + "internal/goversion": "goversion", + "internal/types/errors": "errors", + "io": "io", + "math": "math", + "runtime": "runtime", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "sync/atomic": "atomic", + "unicode": "unicode", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Importer": reflect.TypeOf((*q.Importer)(nil)).Elem(), + "ImporterFrom": reflect.TypeOf((*q.ImporterFrom)(nil)).Elem(), + "Object": reflect.TypeOf((*q.Object)(nil)).Elem(), + "Sizes": reflect.TypeOf((*q.Sizes)(nil)).Elem(), + "Type": reflect.TypeOf((*q.Type)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Alias": reflect.TypeOf((*q.Alias)(nil)).Elem(), + "ArgumentError": reflect.TypeOf((*q.ArgumentError)(nil)).Elem(), + "Array": reflect.TypeOf((*q.Array)(nil)).Elem(), + "Basic": reflect.TypeOf((*q.Basic)(nil)).Elem(), + "BasicInfo": reflect.TypeOf((*q.BasicInfo)(nil)).Elem(), + "BasicKind": reflect.TypeOf((*q.BasicKind)(nil)).Elem(), + "Builtin": reflect.TypeOf((*q.Builtin)(nil)).Elem(), + "Chan": reflect.TypeOf((*q.Chan)(nil)).Elem(), + "ChanDir": reflect.TypeOf((*q.ChanDir)(nil)).Elem(), + "Checker": reflect.TypeOf((*q.Checker)(nil)).Elem(), + "Config": reflect.TypeOf((*q.Config)(nil)).Elem(), + "Const": reflect.TypeOf((*q.Const)(nil)).Elem(), + "Context": reflect.TypeOf((*q.Context)(nil)).Elem(), + "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), + "Func": reflect.TypeOf((*q.Func)(nil)).Elem(), + "ImportMode": reflect.TypeOf((*q.ImportMode)(nil)).Elem(), + "Info": reflect.TypeOf((*q.Info)(nil)).Elem(), + "Initializer": reflect.TypeOf((*q.Initializer)(nil)).Elem(), + "Instance": reflect.TypeOf((*q.Instance)(nil)).Elem(), + "Interface": reflect.TypeOf((*q.Interface)(nil)).Elem(), + "Label": reflect.TypeOf((*q.Label)(nil)).Elem(), + "Map": reflect.TypeOf((*q.Map)(nil)).Elem(), + "MethodSet": reflect.TypeOf((*q.MethodSet)(nil)).Elem(), + "Named": reflect.TypeOf((*q.Named)(nil)).Elem(), + "Nil": reflect.TypeOf((*q.Nil)(nil)).Elem(), + "Package": reflect.TypeOf((*q.Package)(nil)).Elem(), + "PkgName": reflect.TypeOf((*q.PkgName)(nil)).Elem(), + "Pointer": reflect.TypeOf((*q.Pointer)(nil)).Elem(), + "Qualifier": reflect.TypeOf((*q.Qualifier)(nil)).Elem(), + "Scope": reflect.TypeOf((*q.Scope)(nil)).Elem(), + "Selection": reflect.TypeOf((*q.Selection)(nil)).Elem(), + "SelectionKind": reflect.TypeOf((*q.SelectionKind)(nil)).Elem(), + "Signature": reflect.TypeOf((*q.Signature)(nil)).Elem(), + "Slice": reflect.TypeOf((*q.Slice)(nil)).Elem(), + "StdSizes": reflect.TypeOf((*q.StdSizes)(nil)).Elem(), + "Struct": reflect.TypeOf((*q.Struct)(nil)).Elem(), + "Term": reflect.TypeOf((*q.Term)(nil)).Elem(), + "Tuple": reflect.TypeOf((*q.Tuple)(nil)).Elem(), + "TypeAndValue": reflect.TypeOf((*q.TypeAndValue)(nil)).Elem(), + "TypeList": reflect.TypeOf((*q.TypeList)(nil)).Elem(), + "TypeName": reflect.TypeOf((*q.TypeName)(nil)).Elem(), + "TypeParam": reflect.TypeOf((*q.TypeParam)(nil)).Elem(), + "TypeParamList": reflect.TypeOf((*q.TypeParamList)(nil)).Elem(), + "Union": reflect.TypeOf((*q.Union)(nil)).Elem(), + "Var": reflect.TypeOf((*q.Var)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Typ": reflect.ValueOf(&q.Typ), + "Universe": reflect.ValueOf(&q.Universe), + "Unsafe": reflect.ValueOf(&q.Unsafe), + }, + Funcs: map[string]reflect.Value{ + "AssertableTo": reflect.ValueOf(q.AssertableTo), + "AssignableTo": reflect.ValueOf(q.AssignableTo), + "CheckExpr": reflect.ValueOf(q.CheckExpr), + "Comparable": reflect.ValueOf(q.Comparable), + "ConvertibleTo": reflect.ValueOf(q.ConvertibleTo), + "DefPredeclaredTestFuncs": reflect.ValueOf(q.DefPredeclaredTestFuncs), + "Default": reflect.ValueOf(q.Default), + "Eval": reflect.ValueOf(q.Eval), + "ExprString": reflect.ValueOf(q.ExprString), + "Id": reflect.ValueOf(q.Id), + "Identical": reflect.ValueOf(q.Identical), + "IdenticalIgnoreTags": reflect.ValueOf(q.IdenticalIgnoreTags), + "Implements": reflect.ValueOf(q.Implements), + "Instantiate": reflect.ValueOf(q.Instantiate), + "IsInterface": reflect.ValueOf(q.IsInterface), + "LookupFieldOrMethod": reflect.ValueOf(q.LookupFieldOrMethod), + "MissingMethod": reflect.ValueOf(q.MissingMethod), + "NewAlias": reflect.ValueOf(q.NewAlias), + "NewArray": reflect.ValueOf(q.NewArray), + "NewChan": reflect.ValueOf(q.NewChan), + "NewChecker": reflect.ValueOf(q.NewChecker), + "NewConst": reflect.ValueOf(q.NewConst), + "NewContext": reflect.ValueOf(q.NewContext), + "NewField": reflect.ValueOf(q.NewField), + "NewFunc": reflect.ValueOf(q.NewFunc), + "NewInterface": reflect.ValueOf(q.NewInterface), + "NewInterfaceType": reflect.ValueOf(q.NewInterfaceType), + "NewLabel": reflect.ValueOf(q.NewLabel), + "NewMap": reflect.ValueOf(q.NewMap), + "NewMethodSet": reflect.ValueOf(q.NewMethodSet), + "NewNamed": reflect.ValueOf(q.NewNamed), + "NewPackage": reflect.ValueOf(q.NewPackage), + "NewParam": reflect.ValueOf(q.NewParam), + "NewPkgName": reflect.ValueOf(q.NewPkgName), + "NewPointer": reflect.ValueOf(q.NewPointer), + "NewScope": reflect.ValueOf(q.NewScope), + "NewSignature": reflect.ValueOf(q.NewSignature), + "NewSignatureType": reflect.ValueOf(q.NewSignatureType), + "NewSlice": reflect.ValueOf(q.NewSlice), + "NewStruct": reflect.ValueOf(q.NewStruct), + "NewTerm": reflect.ValueOf(q.NewTerm), + "NewTuple": reflect.ValueOf(q.NewTuple), + "NewTypeName": reflect.ValueOf(q.NewTypeName), + "NewTypeParam": reflect.ValueOf(q.NewTypeParam), + "NewUnion": reflect.ValueOf(q.NewUnion), + "NewVar": reflect.ValueOf(q.NewVar), + "ObjectString": reflect.ValueOf(q.ObjectString), + "RelativeTo": reflect.ValueOf(q.RelativeTo), + "Satisfies": reflect.ValueOf(q.Satisfies), + "SelectionString": reflect.ValueOf(q.SelectionString), + "SizesFor": reflect.ValueOf(q.SizesFor), + "TypeString": reflect.ValueOf(q.TypeString), + "Unalias": reflect.ValueOf(q.Unalias), + "WriteExpr": reflect.ValueOf(q.WriteExpr), + "WriteSignature": reflect.ValueOf(q.WriteSignature), + "WriteType": reflect.ValueOf(q.WriteType), + }, + TypedConsts: map[string]igop.TypedConst{ + "Bool": {reflect.TypeOf(q.Bool), constant.MakeInt64(int64(q.Bool))}, + "Byte": {reflect.TypeOf(q.Byte), constant.MakeInt64(int64(q.Byte))}, + "Complex128": {reflect.TypeOf(q.Complex128), constant.MakeInt64(int64(q.Complex128))}, + "Complex64": {reflect.TypeOf(q.Complex64), constant.MakeInt64(int64(q.Complex64))}, + "FieldVal": {reflect.TypeOf(q.FieldVal), constant.MakeInt64(int64(q.FieldVal))}, + "Float32": {reflect.TypeOf(q.Float32), constant.MakeInt64(int64(q.Float32))}, + "Float64": {reflect.TypeOf(q.Float64), constant.MakeInt64(int64(q.Float64))}, + "Int": {reflect.TypeOf(q.Int), constant.MakeInt64(int64(q.Int))}, + "Int16": {reflect.TypeOf(q.Int16), constant.MakeInt64(int64(q.Int16))}, + "Int32": {reflect.TypeOf(q.Int32), constant.MakeInt64(int64(q.Int32))}, + "Int64": {reflect.TypeOf(q.Int64), constant.MakeInt64(int64(q.Int64))}, + "Int8": {reflect.TypeOf(q.Int8), constant.MakeInt64(int64(q.Int8))}, + "Invalid": {reflect.TypeOf(q.Invalid), constant.MakeInt64(int64(q.Invalid))}, + "IsBoolean": {reflect.TypeOf(q.IsBoolean), constant.MakeInt64(int64(q.IsBoolean))}, + "IsComplex": {reflect.TypeOf(q.IsComplex), constant.MakeInt64(int64(q.IsComplex))}, + "IsConstType": {reflect.TypeOf(q.IsConstType), constant.MakeInt64(int64(q.IsConstType))}, + "IsFloat": {reflect.TypeOf(q.IsFloat), constant.MakeInt64(int64(q.IsFloat))}, + "IsInteger": {reflect.TypeOf(q.IsInteger), constant.MakeInt64(int64(q.IsInteger))}, + "IsNumeric": {reflect.TypeOf(q.IsNumeric), constant.MakeInt64(int64(q.IsNumeric))}, + "IsOrdered": {reflect.TypeOf(q.IsOrdered), constant.MakeInt64(int64(q.IsOrdered))}, + "IsString": {reflect.TypeOf(q.IsString), constant.MakeInt64(int64(q.IsString))}, + "IsUnsigned": {reflect.TypeOf(q.IsUnsigned), constant.MakeInt64(int64(q.IsUnsigned))}, + "IsUntyped": {reflect.TypeOf(q.IsUntyped), constant.MakeInt64(int64(q.IsUntyped))}, + "MethodExpr": {reflect.TypeOf(q.MethodExpr), constant.MakeInt64(int64(q.MethodExpr))}, + "MethodVal": {reflect.TypeOf(q.MethodVal), constant.MakeInt64(int64(q.MethodVal))}, + "RecvOnly": {reflect.TypeOf(q.RecvOnly), constant.MakeInt64(int64(q.RecvOnly))}, + "Rune": {reflect.TypeOf(q.Rune), constant.MakeInt64(int64(q.Rune))}, + "SendOnly": {reflect.TypeOf(q.SendOnly), constant.MakeInt64(int64(q.SendOnly))}, + "SendRecv": {reflect.TypeOf(q.SendRecv), constant.MakeInt64(int64(q.SendRecv))}, + "String": {reflect.TypeOf(q.String), constant.MakeInt64(int64(q.String))}, + "Uint": {reflect.TypeOf(q.Uint), constant.MakeInt64(int64(q.Uint))}, + "Uint16": {reflect.TypeOf(q.Uint16), constant.MakeInt64(int64(q.Uint16))}, + "Uint32": {reflect.TypeOf(q.Uint32), constant.MakeInt64(int64(q.Uint32))}, + "Uint64": {reflect.TypeOf(q.Uint64), constant.MakeInt64(int64(q.Uint64))}, + "Uint8": {reflect.TypeOf(q.Uint8), constant.MakeInt64(int64(q.Uint8))}, + "Uintptr": {reflect.TypeOf(q.Uintptr), constant.MakeInt64(int64(q.Uintptr))}, + "UnsafePointer": {reflect.TypeOf(q.UnsafePointer), constant.MakeInt64(int64(q.UnsafePointer))}, + "UntypedBool": {reflect.TypeOf(q.UntypedBool), constant.MakeInt64(int64(q.UntypedBool))}, + "UntypedComplex": {reflect.TypeOf(q.UntypedComplex), constant.MakeInt64(int64(q.UntypedComplex))}, + "UntypedFloat": {reflect.TypeOf(q.UntypedFloat), constant.MakeInt64(int64(q.UntypedFloat))}, + "UntypedInt": {reflect.TypeOf(q.UntypedInt), constant.MakeInt64(int64(q.UntypedInt))}, + "UntypedNil": {reflect.TypeOf(q.UntypedNil), constant.MakeInt64(int64(q.UntypedNil))}, + "UntypedRune": {reflect.TypeOf(q.UntypedRune), constant.MakeInt64(int64(q.UntypedRune))}, + "UntypedString": {reflect.TypeOf(q.UntypedString), constant.MakeInt64(int64(q.UntypedString))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/version/go122_export.go b/pkg/go/version/go122_export.go new file mode 100755 index 00000000..e1e05065 --- /dev/null +++ b/pkg/go/version/go122_export.go @@ -0,0 +1,36 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package version + +import ( + q "go/version" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "version", + Path: "go/version", + Deps: map[string]string{ + "internal/gover": "gover", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Compare": reflect.ValueOf(q.Compare), + "IsValid": reflect.ValueOf(q.IsValid), + "Lang": reflect.ValueOf(q.Lang), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go/version/go123_export.go b/pkg/go/version/go123_export.go new file mode 100755 index 00000000..92546a78 --- /dev/null +++ b/pkg/go/version/go123_export.go @@ -0,0 +1,36 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package version + +import ( + q "go/version" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "version", + Path: "go/version", + Deps: map[string]string{ + "internal/gover": "gover", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Compare": reflect.ValueOf(q.Compare), + "IsValid": reflect.ValueOf(q.IsValid), + "Lang": reflect.ValueOf(q.Lang), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/go121_pkgs.go b/pkg/go121_pkgs.go index 6a55637e..de28e48d 100644 --- a/pkg/go121_pkgs.go +++ b/pkg/go121_pkgs.go @@ -1,5 +1,5 @@ -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package pkg diff --git a/pkg/go122_pkgs.go b/pkg/go122_pkgs.go new file mode 100644 index 00000000..00687c9a --- /dev/null +++ b/pkg/go122_pkgs.go @@ -0,0 +1,160 @@ +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package pkg + +import ( + _ "github.com/goplus/igop/pkg/archive/tar" + _ "github.com/goplus/igop/pkg/archive/zip" + _ "github.com/goplus/igop/pkg/bufio" + _ "github.com/goplus/igop/pkg/bytes" + _ "github.com/goplus/igop/pkg/cmp" + _ "github.com/goplus/igop/pkg/compress/bzip2" + _ "github.com/goplus/igop/pkg/compress/flate" + _ "github.com/goplus/igop/pkg/compress/gzip" + _ "github.com/goplus/igop/pkg/compress/lzw" + _ "github.com/goplus/igop/pkg/compress/zlib" + _ "github.com/goplus/igop/pkg/container/heap" + _ "github.com/goplus/igop/pkg/container/list" + _ "github.com/goplus/igop/pkg/container/ring" + _ "github.com/goplus/igop/pkg/context" + _ "github.com/goplus/igop/pkg/crypto" + _ "github.com/goplus/igop/pkg/crypto/aes" + _ "github.com/goplus/igop/pkg/crypto/cipher" + _ "github.com/goplus/igop/pkg/crypto/des" + _ "github.com/goplus/igop/pkg/crypto/dsa" + _ "github.com/goplus/igop/pkg/crypto/ecdh" + _ "github.com/goplus/igop/pkg/crypto/ecdsa" + _ "github.com/goplus/igop/pkg/crypto/ed25519" + _ "github.com/goplus/igop/pkg/crypto/elliptic" + _ "github.com/goplus/igop/pkg/crypto/hmac" + _ "github.com/goplus/igop/pkg/crypto/md5" + _ "github.com/goplus/igop/pkg/crypto/rand" + _ "github.com/goplus/igop/pkg/crypto/rc4" + _ "github.com/goplus/igop/pkg/crypto/rsa" + _ "github.com/goplus/igop/pkg/crypto/sha1" + _ "github.com/goplus/igop/pkg/crypto/sha256" + _ "github.com/goplus/igop/pkg/crypto/sha512" + _ "github.com/goplus/igop/pkg/crypto/subtle" + _ "github.com/goplus/igop/pkg/crypto/tls" + _ "github.com/goplus/igop/pkg/crypto/x509" + _ "github.com/goplus/igop/pkg/crypto/x509/pkix" + _ "github.com/goplus/igop/pkg/database/sql" + _ "github.com/goplus/igop/pkg/database/sql/driver" + _ "github.com/goplus/igop/pkg/debug/buildinfo" + _ "github.com/goplus/igop/pkg/debug/dwarf" + _ "github.com/goplus/igop/pkg/debug/elf" + _ "github.com/goplus/igop/pkg/debug/gosym" + _ "github.com/goplus/igop/pkg/debug/macho" + _ "github.com/goplus/igop/pkg/debug/pe" + _ "github.com/goplus/igop/pkg/debug/plan9obj" + _ "github.com/goplus/igop/pkg/embed" + _ "github.com/goplus/igop/pkg/encoding" + _ "github.com/goplus/igop/pkg/encoding/ascii85" + _ "github.com/goplus/igop/pkg/encoding/asn1" + _ "github.com/goplus/igop/pkg/encoding/base32" + _ "github.com/goplus/igop/pkg/encoding/base64" + _ "github.com/goplus/igop/pkg/encoding/binary" + _ "github.com/goplus/igop/pkg/encoding/csv" + _ "github.com/goplus/igop/pkg/encoding/gob" + _ "github.com/goplus/igop/pkg/encoding/hex" + _ "github.com/goplus/igop/pkg/encoding/json" + _ "github.com/goplus/igop/pkg/encoding/pem" + _ "github.com/goplus/igop/pkg/encoding/xml" + _ "github.com/goplus/igop/pkg/errors" + _ "github.com/goplus/igop/pkg/expvar" + _ "github.com/goplus/igop/pkg/flag" + _ "github.com/goplus/igop/pkg/fmt" + _ "github.com/goplus/igop/pkg/go/ast" + _ "github.com/goplus/igop/pkg/go/build" + _ "github.com/goplus/igop/pkg/go/build/constraint" + _ "github.com/goplus/igop/pkg/go/constant" + _ "github.com/goplus/igop/pkg/go/doc" + _ "github.com/goplus/igop/pkg/go/doc/comment" + _ "github.com/goplus/igop/pkg/go/format" + _ "github.com/goplus/igop/pkg/go/importer" + _ "github.com/goplus/igop/pkg/go/parser" + _ "github.com/goplus/igop/pkg/go/printer" + _ "github.com/goplus/igop/pkg/go/scanner" + _ "github.com/goplus/igop/pkg/go/token" + _ "github.com/goplus/igop/pkg/go/types" + _ "github.com/goplus/igop/pkg/go/version" + _ "github.com/goplus/igop/pkg/hash" + _ "github.com/goplus/igop/pkg/hash/adler32" + _ "github.com/goplus/igop/pkg/hash/crc32" + _ "github.com/goplus/igop/pkg/hash/crc64" + _ "github.com/goplus/igop/pkg/hash/fnv" + _ "github.com/goplus/igop/pkg/hash/maphash" + _ "github.com/goplus/igop/pkg/html" + _ "github.com/goplus/igop/pkg/html/template" + _ "github.com/goplus/igop/pkg/image" + _ "github.com/goplus/igop/pkg/image/color" + _ "github.com/goplus/igop/pkg/image/color/palette" + _ "github.com/goplus/igop/pkg/image/draw" + _ "github.com/goplus/igop/pkg/image/gif" + _ "github.com/goplus/igop/pkg/image/jpeg" + _ "github.com/goplus/igop/pkg/image/png" + _ "github.com/goplus/igop/pkg/index/suffixarray" + _ "github.com/goplus/igop/pkg/io" + _ "github.com/goplus/igop/pkg/io/fs" + _ "github.com/goplus/igop/pkg/io/ioutil" + _ "github.com/goplus/igop/pkg/log" + _ "github.com/goplus/igop/pkg/log/slog" + _ "github.com/goplus/igop/pkg/maps" + _ "github.com/goplus/igop/pkg/math" + _ "github.com/goplus/igop/pkg/math/big" + _ "github.com/goplus/igop/pkg/math/bits" + _ "github.com/goplus/igop/pkg/math/cmplx" + _ "github.com/goplus/igop/pkg/math/rand" + _ "github.com/goplus/igop/pkg/math/rand/v2" + _ "github.com/goplus/igop/pkg/mime" + _ "github.com/goplus/igop/pkg/mime/multipart" + _ "github.com/goplus/igop/pkg/mime/quotedprintable" + _ "github.com/goplus/igop/pkg/net" + _ "github.com/goplus/igop/pkg/net/http" + _ "github.com/goplus/igop/pkg/net/http/cgi" + _ "github.com/goplus/igop/pkg/net/http/cookiejar" + _ "github.com/goplus/igop/pkg/net/http/fcgi" + _ "github.com/goplus/igop/pkg/net/http/httptest" + _ "github.com/goplus/igop/pkg/net/http/httptrace" + _ "github.com/goplus/igop/pkg/net/http/httputil" + _ "github.com/goplus/igop/pkg/net/http/pprof" + _ "github.com/goplus/igop/pkg/net/mail" + _ "github.com/goplus/igop/pkg/net/netip" + _ "github.com/goplus/igop/pkg/net/smtp" + _ "github.com/goplus/igop/pkg/net/textproto" + _ "github.com/goplus/igop/pkg/net/url" + _ "github.com/goplus/igop/pkg/os" + _ "github.com/goplus/igop/pkg/os/exec" + _ "github.com/goplus/igop/pkg/os/signal" + _ "github.com/goplus/igop/pkg/os/user" + _ "github.com/goplus/igop/pkg/path" + _ "github.com/goplus/igop/pkg/path/filepath" + _ "github.com/goplus/igop/pkg/plugin" + _ "github.com/goplus/igop/pkg/reflect" + _ "github.com/goplus/igop/pkg/regexp" + _ "github.com/goplus/igop/pkg/regexp/syntax" + _ "github.com/goplus/igop/pkg/runtime" + _ "github.com/goplus/igop/pkg/runtime/coverage" + _ "github.com/goplus/igop/pkg/runtime/debug" + _ "github.com/goplus/igop/pkg/runtime/metrics" + _ "github.com/goplus/igop/pkg/runtime/pprof" + _ "github.com/goplus/igop/pkg/runtime/trace" + _ "github.com/goplus/igop/pkg/slices" + _ "github.com/goplus/igop/pkg/sort" + _ "github.com/goplus/igop/pkg/strconv" + _ "github.com/goplus/igop/pkg/strings" + _ "github.com/goplus/igop/pkg/sync" + _ "github.com/goplus/igop/pkg/sync/atomic" + _ "github.com/goplus/igop/pkg/syscall" + _ "github.com/goplus/igop/pkg/testing" + _ "github.com/goplus/igop/pkg/text/scanner" + _ "github.com/goplus/igop/pkg/text/tabwriter" + _ "github.com/goplus/igop/pkg/text/template" + _ "github.com/goplus/igop/pkg/text/template/parse" + _ "github.com/goplus/igop/pkg/time" + _ "github.com/goplus/igop/pkg/time/tzdata" + _ "github.com/goplus/igop/pkg/unicode" + _ "github.com/goplus/igop/pkg/unicode/utf16" + _ "github.com/goplus/igop/pkg/unicode/utf8" +) diff --git a/pkg/go123_pkgs.go b/pkg/go123_pkgs.go new file mode 100644 index 00000000..25b03a14 --- /dev/null +++ b/pkg/go123_pkgs.go @@ -0,0 +1,162 @@ +//go:build go1.23 +// +build go1.23 + +package pkg + +import ( + _ "github.com/goplus/igop/pkg/archive/tar" + _ "github.com/goplus/igop/pkg/archive/zip" + _ "github.com/goplus/igop/pkg/bufio" + _ "github.com/goplus/igop/pkg/bytes" + _ "github.com/goplus/igop/pkg/cmp" + _ "github.com/goplus/igop/pkg/compress/bzip2" + _ "github.com/goplus/igop/pkg/compress/flate" + _ "github.com/goplus/igop/pkg/compress/gzip" + _ "github.com/goplus/igop/pkg/compress/lzw" + _ "github.com/goplus/igop/pkg/compress/zlib" + _ "github.com/goplus/igop/pkg/container/heap" + _ "github.com/goplus/igop/pkg/container/list" + _ "github.com/goplus/igop/pkg/container/ring" + _ "github.com/goplus/igop/pkg/context" + _ "github.com/goplus/igop/pkg/crypto" + _ "github.com/goplus/igop/pkg/crypto/aes" + _ "github.com/goplus/igop/pkg/crypto/cipher" + _ "github.com/goplus/igop/pkg/crypto/des" + _ "github.com/goplus/igop/pkg/crypto/dsa" + _ "github.com/goplus/igop/pkg/crypto/ecdh" + _ "github.com/goplus/igop/pkg/crypto/ecdsa" + _ "github.com/goplus/igop/pkg/crypto/ed25519" + _ "github.com/goplus/igop/pkg/crypto/elliptic" + _ "github.com/goplus/igop/pkg/crypto/hmac" + _ "github.com/goplus/igop/pkg/crypto/md5" + _ "github.com/goplus/igop/pkg/crypto/rand" + _ "github.com/goplus/igop/pkg/crypto/rc4" + _ "github.com/goplus/igop/pkg/crypto/rsa" + _ "github.com/goplus/igop/pkg/crypto/sha1" + _ "github.com/goplus/igop/pkg/crypto/sha256" + _ "github.com/goplus/igop/pkg/crypto/sha512" + _ "github.com/goplus/igop/pkg/crypto/subtle" + _ "github.com/goplus/igop/pkg/crypto/tls" + _ "github.com/goplus/igop/pkg/crypto/x509" + _ "github.com/goplus/igop/pkg/crypto/x509/pkix" + _ "github.com/goplus/igop/pkg/database/sql" + _ "github.com/goplus/igop/pkg/database/sql/driver" + _ "github.com/goplus/igop/pkg/debug/buildinfo" + _ "github.com/goplus/igop/pkg/debug/dwarf" + _ "github.com/goplus/igop/pkg/debug/elf" + _ "github.com/goplus/igop/pkg/debug/gosym" + _ "github.com/goplus/igop/pkg/debug/macho" + _ "github.com/goplus/igop/pkg/debug/pe" + _ "github.com/goplus/igop/pkg/debug/plan9obj" + _ "github.com/goplus/igop/pkg/embed" + _ "github.com/goplus/igop/pkg/encoding" + _ "github.com/goplus/igop/pkg/encoding/ascii85" + _ "github.com/goplus/igop/pkg/encoding/asn1" + _ "github.com/goplus/igop/pkg/encoding/base32" + _ "github.com/goplus/igop/pkg/encoding/base64" + _ "github.com/goplus/igop/pkg/encoding/binary" + _ "github.com/goplus/igop/pkg/encoding/csv" + _ "github.com/goplus/igop/pkg/encoding/gob" + _ "github.com/goplus/igop/pkg/encoding/hex" + _ "github.com/goplus/igop/pkg/encoding/json" + _ "github.com/goplus/igop/pkg/encoding/pem" + _ "github.com/goplus/igop/pkg/encoding/xml" + _ "github.com/goplus/igop/pkg/errors" + _ "github.com/goplus/igop/pkg/expvar" + _ "github.com/goplus/igop/pkg/flag" + _ "github.com/goplus/igop/pkg/fmt" + _ "github.com/goplus/igop/pkg/go/ast" + _ "github.com/goplus/igop/pkg/go/build" + _ "github.com/goplus/igop/pkg/go/build/constraint" + _ "github.com/goplus/igop/pkg/go/constant" + _ "github.com/goplus/igop/pkg/go/doc" + _ "github.com/goplus/igop/pkg/go/doc/comment" + _ "github.com/goplus/igop/pkg/go/format" + _ "github.com/goplus/igop/pkg/go/importer" + _ "github.com/goplus/igop/pkg/go/parser" + _ "github.com/goplus/igop/pkg/go/printer" + _ "github.com/goplus/igop/pkg/go/scanner" + _ "github.com/goplus/igop/pkg/go/token" + _ "github.com/goplus/igop/pkg/go/types" + _ "github.com/goplus/igop/pkg/go/version" + _ "github.com/goplus/igop/pkg/hash" + _ "github.com/goplus/igop/pkg/hash/adler32" + _ "github.com/goplus/igop/pkg/hash/crc32" + _ "github.com/goplus/igop/pkg/hash/crc64" + _ "github.com/goplus/igop/pkg/hash/fnv" + _ "github.com/goplus/igop/pkg/hash/maphash" + _ "github.com/goplus/igop/pkg/html" + _ "github.com/goplus/igop/pkg/html/template" + _ "github.com/goplus/igop/pkg/image" + _ "github.com/goplus/igop/pkg/image/color" + _ "github.com/goplus/igop/pkg/image/color/palette" + _ "github.com/goplus/igop/pkg/image/draw" + _ "github.com/goplus/igop/pkg/image/gif" + _ "github.com/goplus/igop/pkg/image/jpeg" + _ "github.com/goplus/igop/pkg/image/png" + _ "github.com/goplus/igop/pkg/index/suffixarray" + _ "github.com/goplus/igop/pkg/io" + _ "github.com/goplus/igop/pkg/io/fs" + _ "github.com/goplus/igop/pkg/io/ioutil" + _ "github.com/goplus/igop/pkg/iter" + _ "github.com/goplus/igop/pkg/log" + _ "github.com/goplus/igop/pkg/log/slog" + _ "github.com/goplus/igop/pkg/maps" + _ "github.com/goplus/igop/pkg/math" + _ "github.com/goplus/igop/pkg/math/big" + _ "github.com/goplus/igop/pkg/math/bits" + _ "github.com/goplus/igop/pkg/math/cmplx" + _ "github.com/goplus/igop/pkg/math/rand" + _ "github.com/goplus/igop/pkg/math/rand/v2" + _ "github.com/goplus/igop/pkg/mime" + _ "github.com/goplus/igop/pkg/mime/multipart" + _ "github.com/goplus/igop/pkg/mime/quotedprintable" + _ "github.com/goplus/igop/pkg/net" + _ "github.com/goplus/igop/pkg/net/http" + _ "github.com/goplus/igop/pkg/net/http/cgi" + _ "github.com/goplus/igop/pkg/net/http/cookiejar" + _ "github.com/goplus/igop/pkg/net/http/fcgi" + _ "github.com/goplus/igop/pkg/net/http/httptest" + _ "github.com/goplus/igop/pkg/net/http/httptrace" + _ "github.com/goplus/igop/pkg/net/http/httputil" + _ "github.com/goplus/igop/pkg/net/http/pprof" + _ "github.com/goplus/igop/pkg/net/mail" + _ "github.com/goplus/igop/pkg/net/netip" + _ "github.com/goplus/igop/pkg/net/smtp" + _ "github.com/goplus/igop/pkg/net/textproto" + _ "github.com/goplus/igop/pkg/net/url" + _ "github.com/goplus/igop/pkg/os" + _ "github.com/goplus/igop/pkg/os/exec" + _ "github.com/goplus/igop/pkg/os/signal" + _ "github.com/goplus/igop/pkg/os/user" + _ "github.com/goplus/igop/pkg/path" + _ "github.com/goplus/igop/pkg/path/filepath" + _ "github.com/goplus/igop/pkg/reflect" + _ "github.com/goplus/igop/pkg/regexp" + _ "github.com/goplus/igop/pkg/regexp/syntax" + _ "github.com/goplus/igop/pkg/runtime" + _ "github.com/goplus/igop/pkg/runtime/coverage" + _ "github.com/goplus/igop/pkg/runtime/debug" + _ "github.com/goplus/igop/pkg/runtime/metrics" + _ "github.com/goplus/igop/pkg/runtime/pprof" + _ "github.com/goplus/igop/pkg/runtime/trace" + _ "github.com/goplus/igop/pkg/slices" + _ "github.com/goplus/igop/pkg/sort" + _ "github.com/goplus/igop/pkg/strconv" + _ "github.com/goplus/igop/pkg/strings" + _ "github.com/goplus/igop/pkg/structs" + _ "github.com/goplus/igop/pkg/sync" + _ "github.com/goplus/igop/pkg/sync/atomic" + _ "github.com/goplus/igop/pkg/syscall" + _ "github.com/goplus/igop/pkg/testing" + _ "github.com/goplus/igop/pkg/text/scanner" + _ "github.com/goplus/igop/pkg/text/tabwriter" + _ "github.com/goplus/igop/pkg/text/template" + _ "github.com/goplus/igop/pkg/text/template/parse" + _ "github.com/goplus/igop/pkg/time" + _ "github.com/goplus/igop/pkg/time/tzdata" + _ "github.com/goplus/igop/pkg/unicode" + _ "github.com/goplus/igop/pkg/unicode/utf16" + _ "github.com/goplus/igop/pkg/unicode/utf8" + _ "github.com/goplus/igop/pkg/unique" +) diff --git a/pkg/hash/adler32/go121_export.go b/pkg/hash/adler32/go121_export.go index 4ee2ce40..8756a3a6 100755 --- a/pkg/hash/adler32/go121_export.go +++ b/pkg/hash/adler32/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package adler32 diff --git a/pkg/hash/adler32/go122_export.go b/pkg/hash/adler32/go122_export.go new file mode 100755 index 00000000..2fc89ed1 --- /dev/null +++ b/pkg/hash/adler32/go122_export.go @@ -0,0 +1,38 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package adler32 + +import ( + q "hash/adler32" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "adler32", + Path: "hash/adler32", + Deps: map[string]string{ + "errors": "errors", + "hash": "hash", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Checksum": reflect.ValueOf(q.Checksum), + "New": reflect.ValueOf(q.New), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "Size": {"untyped int", constant.MakeInt64(int64(q.Size))}, + }, + }) +} diff --git a/pkg/hash/adler32/go123_export.go b/pkg/hash/adler32/go123_export.go new file mode 100755 index 00000000..d49585c2 --- /dev/null +++ b/pkg/hash/adler32/go123_export.go @@ -0,0 +1,39 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package adler32 + +import ( + q "hash/adler32" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "adler32", + Path: "hash/adler32", + Deps: map[string]string{ + "errors": "errors", + "hash": "hash", + "internal/byteorder": "byteorder", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Checksum": reflect.ValueOf(q.Checksum), + "New": reflect.ValueOf(q.New), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "Size": {"untyped int", constant.MakeInt64(int64(q.Size))}, + }, + }) +} diff --git a/pkg/hash/crc32/go121_export.go b/pkg/hash/crc32/go121_export.go index 520ef66c..207b4577 100755 --- a/pkg/hash/crc32/go121_export.go +++ b/pkg/hash/crc32/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package crc32 diff --git a/pkg/hash/crc32/go122_export.go b/pkg/hash/crc32/go122_export.go new file mode 100755 index 00000000..4d85db35 --- /dev/null +++ b/pkg/hash/crc32/go122_export.go @@ -0,0 +1,53 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package crc32 + +import ( + q "hash/crc32" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "crc32", + Path: "hash/crc32", + Deps: map[string]string{ + "errors": "errors", + "hash": "hash", + "internal/cpu": "cpu", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Table": reflect.TypeOf((*q.Table)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "IEEETable": reflect.ValueOf(&q.IEEETable), + }, + Funcs: map[string]reflect.Value{ + "Checksum": reflect.ValueOf(q.Checksum), + "ChecksumIEEE": reflect.ValueOf(q.ChecksumIEEE), + "MakeTable": reflect.ValueOf(q.MakeTable), + "New": reflect.ValueOf(q.New), + "NewIEEE": reflect.ValueOf(q.NewIEEE), + "Update": reflect.ValueOf(q.Update), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "Castagnoli": {"untyped int", constant.MakeInt64(int64(q.Castagnoli))}, + "IEEE": {"untyped int", constant.MakeInt64(int64(q.IEEE))}, + "Koopman": {"untyped int", constant.MakeInt64(int64(q.Koopman))}, + "Size": {"untyped int", constant.MakeInt64(int64(q.Size))}, + }, + }) +} diff --git a/pkg/hash/crc32/go123_export.go b/pkg/hash/crc32/go123_export.go new file mode 100755 index 00000000..18cc8b2d --- /dev/null +++ b/pkg/hash/crc32/go123_export.go @@ -0,0 +1,54 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package crc32 + +import ( + q "hash/crc32" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "crc32", + Path: "hash/crc32", + Deps: map[string]string{ + "errors": "errors", + "hash": "hash", + "internal/byteorder": "byteorder", + "internal/cpu": "cpu", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Table": reflect.TypeOf((*q.Table)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "IEEETable": reflect.ValueOf(&q.IEEETable), + }, + Funcs: map[string]reflect.Value{ + "Checksum": reflect.ValueOf(q.Checksum), + "ChecksumIEEE": reflect.ValueOf(q.ChecksumIEEE), + "MakeTable": reflect.ValueOf(q.MakeTable), + "New": reflect.ValueOf(q.New), + "NewIEEE": reflect.ValueOf(q.NewIEEE), + "Update": reflect.ValueOf(q.Update), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "Castagnoli": {"untyped int", constant.MakeInt64(int64(q.Castagnoli))}, + "IEEE": {"untyped int", constant.MakeInt64(int64(q.IEEE))}, + "Koopman": {"untyped int", constant.MakeInt64(int64(q.Koopman))}, + "Size": {"untyped int", constant.MakeInt64(int64(q.Size))}, + }, + }) +} diff --git a/pkg/hash/crc64/go121_export.go b/pkg/hash/crc64/go121_export.go index 3f2f59f1..c9b77ac4 100755 --- a/pkg/hash/crc64/go121_export.go +++ b/pkg/hash/crc64/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package crc64 diff --git a/pkg/hash/crc64/go122_export.go b/pkg/hash/crc64/go122_export.go new file mode 100755 index 00000000..0af53e55 --- /dev/null +++ b/pkg/hash/crc64/go122_export.go @@ -0,0 +1,45 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package crc64 + +import ( + q "hash/crc64" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "crc64", + Path: "hash/crc64", + Deps: map[string]string{ + "errors": "errors", + "hash": "hash", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Table": reflect.TypeOf((*q.Table)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Checksum": reflect.ValueOf(q.Checksum), + "MakeTable": reflect.ValueOf(q.MakeTable), + "New": reflect.ValueOf(q.New), + "Update": reflect.ValueOf(q.Update), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "ECMA": {"untyped int", constant.MakeUint64(uint64(q.ECMA))}, + "ISO": {"untyped int", constant.MakeUint64(uint64(q.ISO))}, + "Size": {"untyped int", constant.MakeInt64(int64(q.Size))}, + }, + }) +} diff --git a/pkg/hash/crc64/go123_export.go b/pkg/hash/crc64/go123_export.go new file mode 100755 index 00000000..192f7508 --- /dev/null +++ b/pkg/hash/crc64/go123_export.go @@ -0,0 +1,46 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package crc64 + +import ( + q "hash/crc64" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "crc64", + Path: "hash/crc64", + Deps: map[string]string{ + "errors": "errors", + "hash": "hash", + "internal/byteorder": "byteorder", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Table": reflect.TypeOf((*q.Table)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Checksum": reflect.ValueOf(q.Checksum), + "MakeTable": reflect.ValueOf(q.MakeTable), + "New": reflect.ValueOf(q.New), + "Update": reflect.ValueOf(q.Update), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "ECMA": {"untyped int", constant.MakeUint64(uint64(q.ECMA))}, + "ISO": {"untyped int", constant.MakeUint64(uint64(q.ISO))}, + "Size": {"untyped int", constant.MakeInt64(int64(q.Size))}, + }, + }) +} diff --git a/pkg/hash/fnv/go121_export.go b/pkg/hash/fnv/go121_export.go index db3f356b..1383ddb2 100755 --- a/pkg/hash/fnv/go121_export.go +++ b/pkg/hash/fnv/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package fnv diff --git a/pkg/hash/fnv/go122_export.go b/pkg/hash/fnv/go122_export.go new file mode 100755 index 00000000..85512b65 --- /dev/null +++ b/pkg/hash/fnv/go122_export.go @@ -0,0 +1,40 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package fnv + +import ( + q "hash/fnv" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "fnv", + Path: "hash/fnv", + Deps: map[string]string{ + "errors": "errors", + "hash": "hash", + "math/bits": "bits", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "New128": reflect.ValueOf(q.New128), + "New128a": reflect.ValueOf(q.New128a), + "New32": reflect.ValueOf(q.New32), + "New32a": reflect.ValueOf(q.New32a), + "New64": reflect.ValueOf(q.New64), + "New64a": reflect.ValueOf(q.New64a), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/hash/fnv/go123_export.go b/pkg/hash/fnv/go123_export.go new file mode 100755 index 00000000..186a90e0 --- /dev/null +++ b/pkg/hash/fnv/go123_export.go @@ -0,0 +1,41 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package fnv + +import ( + q "hash/fnv" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "fnv", + Path: "hash/fnv", + Deps: map[string]string{ + "errors": "errors", + "hash": "hash", + "internal/byteorder": "byteorder", + "math/bits": "bits", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "New128": reflect.ValueOf(q.New128), + "New128a": reflect.ValueOf(q.New128a), + "New32": reflect.ValueOf(q.New32), + "New32a": reflect.ValueOf(q.New32a), + "New64": reflect.ValueOf(q.New64), + "New64a": reflect.ValueOf(q.New64a), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/hash/go121_export.go b/pkg/hash/go121_export.go index 2d3251c8..c966f971 100755 --- a/pkg/hash/go121_export.go +++ b/pkg/hash/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package hash diff --git a/pkg/hash/go122_export.go b/pkg/hash/go122_export.go new file mode 100755 index 00000000..71e54b3a --- /dev/null +++ b/pkg/hash/go122_export.go @@ -0,0 +1,35 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package hash + +import ( + q "hash" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "hash", + Path: "hash", + Deps: map[string]string{ + "io": "io", + }, + Interfaces: map[string]reflect.Type{ + "Hash": reflect.TypeOf((*q.Hash)(nil)).Elem(), + "Hash32": reflect.TypeOf((*q.Hash32)(nil)).Elem(), + "Hash64": reflect.TypeOf((*q.Hash64)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{}, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/hash/go123_export.go b/pkg/hash/go123_export.go new file mode 100755 index 00000000..9aa54ac7 --- /dev/null +++ b/pkg/hash/go123_export.go @@ -0,0 +1,35 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package hash + +import ( + q "hash" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "hash", + Path: "hash", + Deps: map[string]string{ + "io": "io", + }, + Interfaces: map[string]reflect.Type{ + "Hash": reflect.TypeOf((*q.Hash)(nil)).Elem(), + "Hash32": reflect.TypeOf((*q.Hash32)(nil)).Elem(), + "Hash64": reflect.TypeOf((*q.Hash64)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{}, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/hash/maphash/go121_export.go b/pkg/hash/maphash/go121_export.go index e689882c..622aebfd 100755 --- a/pkg/hash/maphash/go121_export.go +++ b/pkg/hash/maphash/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package maphash diff --git a/pkg/hash/maphash/go122_export.go b/pkg/hash/maphash/go122_export.go new file mode 100755 index 00000000..4ad7bbb7 --- /dev/null +++ b/pkg/hash/maphash/go122_export.go @@ -0,0 +1,38 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package maphash + +import ( + q "hash/maphash" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "maphash", + Path: "hash/maphash", + Deps: map[string]string{ + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Hash": reflect.TypeOf((*q.Hash)(nil)).Elem(), + "Seed": reflect.TypeOf((*q.Seed)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Bytes": reflect.ValueOf(q.Bytes), + "MakeSeed": reflect.ValueOf(q.MakeSeed), + "String": reflect.ValueOf(q.String), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/hash/maphash/go123_export.go b/pkg/hash/maphash/go123_export.go new file mode 100755 index 00000000..189a319a --- /dev/null +++ b/pkg/hash/maphash/go123_export.go @@ -0,0 +1,38 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package maphash + +import ( + q "hash/maphash" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "maphash", + Path: "hash/maphash", + Deps: map[string]string{ + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Hash": reflect.TypeOf((*q.Hash)(nil)).Elem(), + "Seed": reflect.TypeOf((*q.Seed)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Bytes": reflect.ValueOf(q.Bytes), + "MakeSeed": reflect.ValueOf(q.MakeSeed), + "String": reflect.ValueOf(q.String), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/html/go121_export.go b/pkg/html/go121_export.go index fdb8cd2c..3738ad73 100755 --- a/pkg/html/go121_export.go +++ b/pkg/html/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package html diff --git a/pkg/html/go122_export.go b/pkg/html/go122_export.go new file mode 100755 index 00000000..142712e8 --- /dev/null +++ b/pkg/html/go122_export.go @@ -0,0 +1,36 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package html + +import ( + q "html" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "html", + Path: "html", + Deps: map[string]string{ + "strings": "strings", + "sync": "sync", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "EscapeString": reflect.ValueOf(q.EscapeString), + "UnescapeString": reflect.ValueOf(q.UnescapeString), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/html/go123_export.go b/pkg/html/go123_export.go new file mode 100755 index 00000000..14b36760 --- /dev/null +++ b/pkg/html/go123_export.go @@ -0,0 +1,36 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package html + +import ( + q "html" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "html", + Path: "html", + Deps: map[string]string{ + "strings": "strings", + "sync": "sync", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "EscapeString": reflect.ValueOf(q.EscapeString), + "UnescapeString": reflect.ValueOf(q.UnescapeString), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/html/template/go121_export.go b/pkg/html/template/go121_export.go index cdb248d2..3d89fc1f 100755 --- a/pkg/html/template/go121_export.go +++ b/pkg/html/template/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package template diff --git a/pkg/html/template/go122_export.go b/pkg/html/template/go122_export.go new file mode 100755 index 00000000..244dfd21 --- /dev/null +++ b/pkg/html/template/go122_export.go @@ -0,0 +1,91 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package template + +import ( + q "html/template" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "template", + Path: "html/template", + Deps: map[string]string{ + "bytes": "bytes", + "encoding/json": "json", + "fmt": "fmt", + "html": "html", + "internal/godebug": "godebug", + "io": "io", + "io/fs": "fs", + "os": "os", + "path": "path", + "path/filepath": "filepath", + "reflect": "reflect", + "regexp": "regexp", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "text/template": "template", + "text/template/parse": "parse", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "CSS": reflect.TypeOf((*q.CSS)(nil)).Elem(), + "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), + "ErrorCode": reflect.TypeOf((*q.ErrorCode)(nil)).Elem(), + "HTML": reflect.TypeOf((*q.HTML)(nil)).Elem(), + "HTMLAttr": reflect.TypeOf((*q.HTMLAttr)(nil)).Elem(), + "JS": reflect.TypeOf((*q.JS)(nil)).Elem(), + "JSStr": reflect.TypeOf((*q.JSStr)(nil)).Elem(), + "Srcset": reflect.TypeOf((*q.Srcset)(nil)).Elem(), + "Template": reflect.TypeOf((*q.Template)(nil)).Elem(), + "URL": reflect.TypeOf((*q.URL)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{ + "FuncMap": reflect.TypeOf((*q.FuncMap)(nil)).Elem(), + }, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "HTMLEscape": reflect.ValueOf(q.HTMLEscape), + "HTMLEscapeString": reflect.ValueOf(q.HTMLEscapeString), + "HTMLEscaper": reflect.ValueOf(q.HTMLEscaper), + "IsTrue": reflect.ValueOf(q.IsTrue), + "JSEscape": reflect.ValueOf(q.JSEscape), + "JSEscapeString": reflect.ValueOf(q.JSEscapeString), + "JSEscaper": reflect.ValueOf(q.JSEscaper), + "Must": reflect.ValueOf(q.Must), + "New": reflect.ValueOf(q.New), + "ParseFS": reflect.ValueOf(q.ParseFS), + "ParseFiles": reflect.ValueOf(q.ParseFiles), + "ParseGlob": reflect.ValueOf(q.ParseGlob), + "URLQueryEscaper": reflect.ValueOf(q.URLQueryEscaper), + }, + TypedConsts: map[string]igop.TypedConst{ + "ErrAmbigContext": {reflect.TypeOf(q.ErrAmbigContext), constant.MakeInt64(int64(q.ErrAmbigContext))}, + "ErrBadHTML": {reflect.TypeOf(q.ErrBadHTML), constant.MakeInt64(int64(q.ErrBadHTML))}, + "ErrBranchEnd": {reflect.TypeOf(q.ErrBranchEnd), constant.MakeInt64(int64(q.ErrBranchEnd))}, + "ErrEndContext": {reflect.TypeOf(q.ErrEndContext), constant.MakeInt64(int64(q.ErrEndContext))}, + "ErrJSTemplate": {reflect.TypeOf(q.ErrJSTemplate), constant.MakeInt64(int64(q.ErrJSTemplate))}, + "ErrNoSuchTemplate": {reflect.TypeOf(q.ErrNoSuchTemplate), constant.MakeInt64(int64(q.ErrNoSuchTemplate))}, + "ErrOutputContext": {reflect.TypeOf(q.ErrOutputContext), constant.MakeInt64(int64(q.ErrOutputContext))}, + "ErrPartialCharset": {reflect.TypeOf(q.ErrPartialCharset), constant.MakeInt64(int64(q.ErrPartialCharset))}, + "ErrPartialEscape": {reflect.TypeOf(q.ErrPartialEscape), constant.MakeInt64(int64(q.ErrPartialEscape))}, + "ErrPredefinedEscaper": {reflect.TypeOf(q.ErrPredefinedEscaper), constant.MakeInt64(int64(q.ErrPredefinedEscaper))}, + "ErrRangeLoopReentry": {reflect.TypeOf(q.ErrRangeLoopReentry), constant.MakeInt64(int64(q.ErrRangeLoopReentry))}, + "ErrSlashAmbig": {reflect.TypeOf(q.ErrSlashAmbig), constant.MakeInt64(int64(q.ErrSlashAmbig))}, + "OK": {reflect.TypeOf(q.OK), constant.MakeInt64(int64(q.OK))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/html/template/go123_export.go b/pkg/html/template/go123_export.go new file mode 100755 index 00000000..ea6fcac7 --- /dev/null +++ b/pkg/html/template/go123_export.go @@ -0,0 +1,91 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package template + +import ( + q "html/template" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "template", + Path: "html/template", + Deps: map[string]string{ + "bytes": "bytes", + "encoding/json": "json", + "fmt": "fmt", + "html": "html", + "internal/godebug": "godebug", + "io": "io", + "io/fs": "fs", + "os": "os", + "path": "path", + "path/filepath": "filepath", + "reflect": "reflect", + "regexp": "regexp", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "text/template": "template", + "text/template/parse": "parse", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "CSS": reflect.TypeOf((*q.CSS)(nil)).Elem(), + "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), + "ErrorCode": reflect.TypeOf((*q.ErrorCode)(nil)).Elem(), + "HTML": reflect.TypeOf((*q.HTML)(nil)).Elem(), + "HTMLAttr": reflect.TypeOf((*q.HTMLAttr)(nil)).Elem(), + "JS": reflect.TypeOf((*q.JS)(nil)).Elem(), + "JSStr": reflect.TypeOf((*q.JSStr)(nil)).Elem(), + "Srcset": reflect.TypeOf((*q.Srcset)(nil)).Elem(), + "Template": reflect.TypeOf((*q.Template)(nil)).Elem(), + "URL": reflect.TypeOf((*q.URL)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{ + "FuncMap": reflect.TypeOf((*q.FuncMap)(nil)).Elem(), + }, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "HTMLEscape": reflect.ValueOf(q.HTMLEscape), + "HTMLEscapeString": reflect.ValueOf(q.HTMLEscapeString), + "HTMLEscaper": reflect.ValueOf(q.HTMLEscaper), + "IsTrue": reflect.ValueOf(q.IsTrue), + "JSEscape": reflect.ValueOf(q.JSEscape), + "JSEscapeString": reflect.ValueOf(q.JSEscapeString), + "JSEscaper": reflect.ValueOf(q.JSEscaper), + "Must": reflect.ValueOf(q.Must), + "New": reflect.ValueOf(q.New), + "ParseFS": reflect.ValueOf(q.ParseFS), + "ParseFiles": reflect.ValueOf(q.ParseFiles), + "ParseGlob": reflect.ValueOf(q.ParseGlob), + "URLQueryEscaper": reflect.ValueOf(q.URLQueryEscaper), + }, + TypedConsts: map[string]igop.TypedConst{ + "ErrAmbigContext": {reflect.TypeOf(q.ErrAmbigContext), constant.MakeInt64(int64(q.ErrAmbigContext))}, + "ErrBadHTML": {reflect.TypeOf(q.ErrBadHTML), constant.MakeInt64(int64(q.ErrBadHTML))}, + "ErrBranchEnd": {reflect.TypeOf(q.ErrBranchEnd), constant.MakeInt64(int64(q.ErrBranchEnd))}, + "ErrEndContext": {reflect.TypeOf(q.ErrEndContext), constant.MakeInt64(int64(q.ErrEndContext))}, + "ErrJSTemplate": {reflect.TypeOf(q.ErrJSTemplate), constant.MakeInt64(int64(q.ErrJSTemplate))}, + "ErrNoSuchTemplate": {reflect.TypeOf(q.ErrNoSuchTemplate), constant.MakeInt64(int64(q.ErrNoSuchTemplate))}, + "ErrOutputContext": {reflect.TypeOf(q.ErrOutputContext), constant.MakeInt64(int64(q.ErrOutputContext))}, + "ErrPartialCharset": {reflect.TypeOf(q.ErrPartialCharset), constant.MakeInt64(int64(q.ErrPartialCharset))}, + "ErrPartialEscape": {reflect.TypeOf(q.ErrPartialEscape), constant.MakeInt64(int64(q.ErrPartialEscape))}, + "ErrPredefinedEscaper": {reflect.TypeOf(q.ErrPredefinedEscaper), constant.MakeInt64(int64(q.ErrPredefinedEscaper))}, + "ErrRangeLoopReentry": {reflect.TypeOf(q.ErrRangeLoopReentry), constant.MakeInt64(int64(q.ErrRangeLoopReentry))}, + "ErrSlashAmbig": {reflect.TypeOf(q.ErrSlashAmbig), constant.MakeInt64(int64(q.ErrSlashAmbig))}, + "OK": {reflect.TypeOf(q.OK), constant.MakeInt64(int64(q.OK))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/image/color/go121_export.go b/pkg/image/color/go121_export.go index 6870ea0f..a189b866 100755 --- a/pkg/image/color/go121_export.go +++ b/pkg/image/color/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package color diff --git a/pkg/image/color/go122_export.go b/pkg/image/color/go122_export.go new file mode 100755 index 00000000..73310e1b --- /dev/null +++ b/pkg/image/color/go122_export.go @@ -0,0 +1,67 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package color + +import ( + q "image/color" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "color", + Path: "image/color", + Deps: map[string]string{}, + Interfaces: map[string]reflect.Type{ + "Color": reflect.TypeOf((*q.Color)(nil)).Elem(), + "Model": reflect.TypeOf((*q.Model)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Alpha": reflect.TypeOf((*q.Alpha)(nil)).Elem(), + "Alpha16": reflect.TypeOf((*q.Alpha16)(nil)).Elem(), + "CMYK": reflect.TypeOf((*q.CMYK)(nil)).Elem(), + "Gray": reflect.TypeOf((*q.Gray)(nil)).Elem(), + "Gray16": reflect.TypeOf((*q.Gray16)(nil)).Elem(), + "NRGBA": reflect.TypeOf((*q.NRGBA)(nil)).Elem(), + "NRGBA64": reflect.TypeOf((*q.NRGBA64)(nil)).Elem(), + "NYCbCrA": reflect.TypeOf((*q.NYCbCrA)(nil)).Elem(), + "Palette": reflect.TypeOf((*q.Palette)(nil)).Elem(), + "RGBA": reflect.TypeOf((*q.RGBA)(nil)).Elem(), + "RGBA64": reflect.TypeOf((*q.RGBA64)(nil)).Elem(), + "YCbCr": reflect.TypeOf((*q.YCbCr)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Alpha16Model": reflect.ValueOf(&q.Alpha16Model), + "AlphaModel": reflect.ValueOf(&q.AlphaModel), + "Black": reflect.ValueOf(&q.Black), + "CMYKModel": reflect.ValueOf(&q.CMYKModel), + "Gray16Model": reflect.ValueOf(&q.Gray16Model), + "GrayModel": reflect.ValueOf(&q.GrayModel), + "NRGBA64Model": reflect.ValueOf(&q.NRGBA64Model), + "NRGBAModel": reflect.ValueOf(&q.NRGBAModel), + "NYCbCrAModel": reflect.ValueOf(&q.NYCbCrAModel), + "Opaque": reflect.ValueOf(&q.Opaque), + "RGBA64Model": reflect.ValueOf(&q.RGBA64Model), + "RGBAModel": reflect.ValueOf(&q.RGBAModel), + "Transparent": reflect.ValueOf(&q.Transparent), + "White": reflect.ValueOf(&q.White), + "YCbCrModel": reflect.ValueOf(&q.YCbCrModel), + }, + Funcs: map[string]reflect.Value{ + "CMYKToRGB": reflect.ValueOf(q.CMYKToRGB), + "ModelFunc": reflect.ValueOf(q.ModelFunc), + "RGBToCMYK": reflect.ValueOf(q.RGBToCMYK), + "RGBToYCbCr": reflect.ValueOf(q.RGBToYCbCr), + "YCbCrToRGB": reflect.ValueOf(q.YCbCrToRGB), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/image/color/go123_export.go b/pkg/image/color/go123_export.go new file mode 100755 index 00000000..fef2d988 --- /dev/null +++ b/pkg/image/color/go123_export.go @@ -0,0 +1,67 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package color + +import ( + q "image/color" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "color", + Path: "image/color", + Deps: map[string]string{}, + Interfaces: map[string]reflect.Type{ + "Color": reflect.TypeOf((*q.Color)(nil)).Elem(), + "Model": reflect.TypeOf((*q.Model)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Alpha": reflect.TypeOf((*q.Alpha)(nil)).Elem(), + "Alpha16": reflect.TypeOf((*q.Alpha16)(nil)).Elem(), + "CMYK": reflect.TypeOf((*q.CMYK)(nil)).Elem(), + "Gray": reflect.TypeOf((*q.Gray)(nil)).Elem(), + "Gray16": reflect.TypeOf((*q.Gray16)(nil)).Elem(), + "NRGBA": reflect.TypeOf((*q.NRGBA)(nil)).Elem(), + "NRGBA64": reflect.TypeOf((*q.NRGBA64)(nil)).Elem(), + "NYCbCrA": reflect.TypeOf((*q.NYCbCrA)(nil)).Elem(), + "Palette": reflect.TypeOf((*q.Palette)(nil)).Elem(), + "RGBA": reflect.TypeOf((*q.RGBA)(nil)).Elem(), + "RGBA64": reflect.TypeOf((*q.RGBA64)(nil)).Elem(), + "YCbCr": reflect.TypeOf((*q.YCbCr)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Alpha16Model": reflect.ValueOf(&q.Alpha16Model), + "AlphaModel": reflect.ValueOf(&q.AlphaModel), + "Black": reflect.ValueOf(&q.Black), + "CMYKModel": reflect.ValueOf(&q.CMYKModel), + "Gray16Model": reflect.ValueOf(&q.Gray16Model), + "GrayModel": reflect.ValueOf(&q.GrayModel), + "NRGBA64Model": reflect.ValueOf(&q.NRGBA64Model), + "NRGBAModel": reflect.ValueOf(&q.NRGBAModel), + "NYCbCrAModel": reflect.ValueOf(&q.NYCbCrAModel), + "Opaque": reflect.ValueOf(&q.Opaque), + "RGBA64Model": reflect.ValueOf(&q.RGBA64Model), + "RGBAModel": reflect.ValueOf(&q.RGBAModel), + "Transparent": reflect.ValueOf(&q.Transparent), + "White": reflect.ValueOf(&q.White), + "YCbCrModel": reflect.ValueOf(&q.YCbCrModel), + }, + Funcs: map[string]reflect.Value{ + "CMYKToRGB": reflect.ValueOf(q.CMYKToRGB), + "ModelFunc": reflect.ValueOf(q.ModelFunc), + "RGBToCMYK": reflect.ValueOf(q.RGBToCMYK), + "RGBToYCbCr": reflect.ValueOf(q.RGBToYCbCr), + "YCbCrToRGB": reflect.ValueOf(q.YCbCrToRGB), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/image/color/palette/go121_export.go b/pkg/image/color/palette/go121_export.go index 3bd428d1..cc71e305 100755 --- a/pkg/image/color/palette/go121_export.go +++ b/pkg/image/color/palette/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package palette diff --git a/pkg/image/color/palette/go122_export.go b/pkg/image/color/palette/go122_export.go new file mode 100755 index 00000000..49d9365b --- /dev/null +++ b/pkg/image/color/palette/go122_export.go @@ -0,0 +1,34 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package palette + +import ( + q "image/color/palette" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "palette", + Path: "image/color/palette", + Deps: map[string]string{ + "image/color": "color", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Plan9": reflect.ValueOf(&q.Plan9), + "WebSafe": reflect.ValueOf(&q.WebSafe), + }, + Funcs: map[string]reflect.Value{}, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/image/color/palette/go123_export.go b/pkg/image/color/palette/go123_export.go new file mode 100755 index 00000000..7506e5c3 --- /dev/null +++ b/pkg/image/color/palette/go123_export.go @@ -0,0 +1,34 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package palette + +import ( + q "image/color/palette" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "palette", + Path: "image/color/palette", + Deps: map[string]string{ + "image/color": "color", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Plan9": reflect.ValueOf(&q.Plan9), + "WebSafe": reflect.ValueOf(&q.WebSafe), + }, + Funcs: map[string]reflect.Value{}, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/image/draw/go121_export.go b/pkg/image/draw/go121_export.go index 28abcdde..a3051b1e 100755 --- a/pkg/image/draw/go121_export.go +++ b/pkg/image/draw/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package draw diff --git a/pkg/image/draw/go122_export.go b/pkg/image/draw/go122_export.go new file mode 100755 index 00000000..c5566ec5 --- /dev/null +++ b/pkg/image/draw/go122_export.go @@ -0,0 +1,49 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package draw + +import ( + q "image/draw" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "draw", + Path: "image/draw", + Deps: map[string]string{ + "image": "image", + "image/color": "color", + "image/internal/imageutil": "imageutil", + }, + Interfaces: map[string]reflect.Type{ + "Drawer": reflect.TypeOf((*q.Drawer)(nil)).Elem(), + "Image": reflect.TypeOf((*q.Image)(nil)).Elem(), + "Quantizer": reflect.TypeOf((*q.Quantizer)(nil)).Elem(), + "RGBA64Image": reflect.TypeOf((*q.RGBA64Image)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Op": reflect.TypeOf((*q.Op)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "FloydSteinberg": reflect.ValueOf(&q.FloydSteinberg), + }, + Funcs: map[string]reflect.Value{ + "Draw": reflect.ValueOf(q.Draw), + "DrawMask": reflect.ValueOf(q.DrawMask), + }, + TypedConsts: map[string]igop.TypedConst{ + "Over": {reflect.TypeOf(q.Over), constant.MakeInt64(int64(q.Over))}, + "Src": {reflect.TypeOf(q.Src), constant.MakeInt64(int64(q.Src))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/image/draw/go123_export.go b/pkg/image/draw/go123_export.go new file mode 100755 index 00000000..b2009e2c --- /dev/null +++ b/pkg/image/draw/go123_export.go @@ -0,0 +1,49 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package draw + +import ( + q "image/draw" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "draw", + Path: "image/draw", + Deps: map[string]string{ + "image": "image", + "image/color": "color", + "image/internal/imageutil": "imageutil", + }, + Interfaces: map[string]reflect.Type{ + "Drawer": reflect.TypeOf((*q.Drawer)(nil)).Elem(), + "Image": reflect.TypeOf((*q.Image)(nil)).Elem(), + "Quantizer": reflect.TypeOf((*q.Quantizer)(nil)).Elem(), + "RGBA64Image": reflect.TypeOf((*q.RGBA64Image)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Op": reflect.TypeOf((*q.Op)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "FloydSteinberg": reflect.ValueOf(&q.FloydSteinberg), + }, + Funcs: map[string]reflect.Value{ + "Draw": reflect.ValueOf(q.Draw), + "DrawMask": reflect.ValueOf(q.DrawMask), + }, + TypedConsts: map[string]igop.TypedConst{ + "Over": {reflect.TypeOf(q.Over), constant.MakeInt64(int64(q.Over))}, + "Src": {reflect.TypeOf(q.Src), constant.MakeInt64(int64(q.Src))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/image/gif/go121_export.go b/pkg/image/gif/go121_export.go index 8c436796..0d0c6864 100755 --- a/pkg/image/gif/go121_export.go +++ b/pkg/image/gif/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package gif diff --git a/pkg/image/gif/go122_export.go b/pkg/image/gif/go122_export.go new file mode 100755 index 00000000..ac6200bf --- /dev/null +++ b/pkg/image/gif/go122_export.go @@ -0,0 +1,54 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package gif + +import ( + q "image/gif" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "gif", + Path: "image/gif", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "compress/lzw": "lzw", + "errors": "errors", + "fmt": "fmt", + "image": "image", + "image/color": "color", + "image/color/palette": "palette", + "image/draw": "draw", + "io": "io", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "GIF": reflect.TypeOf((*q.GIF)(nil)).Elem(), + "Options": reflect.TypeOf((*q.Options)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Decode": reflect.ValueOf(q.Decode), + "DecodeAll": reflect.ValueOf(q.DecodeAll), + "DecodeConfig": reflect.ValueOf(q.DecodeConfig), + "Encode": reflect.ValueOf(q.Encode), + "EncodeAll": reflect.ValueOf(q.EncodeAll), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "DisposalBackground": {"untyped int", constant.MakeInt64(int64(q.DisposalBackground))}, + "DisposalNone": {"untyped int", constant.MakeInt64(int64(q.DisposalNone))}, + "DisposalPrevious": {"untyped int", constant.MakeInt64(int64(q.DisposalPrevious))}, + }, + }) +} diff --git a/pkg/image/gif/go123_export.go b/pkg/image/gif/go123_export.go new file mode 100755 index 00000000..d77d2fac --- /dev/null +++ b/pkg/image/gif/go123_export.go @@ -0,0 +1,55 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package gif + +import ( + q "image/gif" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "gif", + Path: "image/gif", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "compress/lzw": "lzw", + "errors": "errors", + "fmt": "fmt", + "image": "image", + "image/color": "color", + "image/color/palette": "palette", + "image/draw": "draw", + "internal/byteorder": "byteorder", + "io": "io", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "GIF": reflect.TypeOf((*q.GIF)(nil)).Elem(), + "Options": reflect.TypeOf((*q.Options)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Decode": reflect.ValueOf(q.Decode), + "DecodeAll": reflect.ValueOf(q.DecodeAll), + "DecodeConfig": reflect.ValueOf(q.DecodeConfig), + "Encode": reflect.ValueOf(q.Encode), + "EncodeAll": reflect.ValueOf(q.EncodeAll), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "DisposalBackground": {"untyped int", constant.MakeInt64(int64(q.DisposalBackground))}, + "DisposalNone": {"untyped int", constant.MakeInt64(int64(q.DisposalNone))}, + "DisposalPrevious": {"untyped int", constant.MakeInt64(int64(q.DisposalPrevious))}, + }, + }) +} diff --git a/pkg/image/go121_export.go b/pkg/image/go121_export.go index 2ced5aca..9167af6f 100755 --- a/pkg/image/go121_export.go +++ b/pkg/image/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package image diff --git a/pkg/image/go122_export.go b/pkg/image/go122_export.go new file mode 100755 index 00000000..76479c0a --- /dev/null +++ b/pkg/image/go122_export.go @@ -0,0 +1,95 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package image + +import ( + q "image" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "image", + Path: "image", + Deps: map[string]string{ + "bufio": "bufio", + "errors": "errors", + "image/color": "color", + "io": "io", + "math/bits": "bits", + "strconv": "strconv", + "sync": "sync", + "sync/atomic": "atomic", + }, + Interfaces: map[string]reflect.Type{ + "Image": reflect.TypeOf((*q.Image)(nil)).Elem(), + "PalettedImage": reflect.TypeOf((*q.PalettedImage)(nil)).Elem(), + "RGBA64Image": reflect.TypeOf((*q.RGBA64Image)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Alpha": reflect.TypeOf((*q.Alpha)(nil)).Elem(), + "Alpha16": reflect.TypeOf((*q.Alpha16)(nil)).Elem(), + "CMYK": reflect.TypeOf((*q.CMYK)(nil)).Elem(), + "Config": reflect.TypeOf((*q.Config)(nil)).Elem(), + "Gray": reflect.TypeOf((*q.Gray)(nil)).Elem(), + "Gray16": reflect.TypeOf((*q.Gray16)(nil)).Elem(), + "NRGBA": reflect.TypeOf((*q.NRGBA)(nil)).Elem(), + "NRGBA64": reflect.TypeOf((*q.NRGBA64)(nil)).Elem(), + "NYCbCrA": reflect.TypeOf((*q.NYCbCrA)(nil)).Elem(), + "Paletted": reflect.TypeOf((*q.Paletted)(nil)).Elem(), + "Point": reflect.TypeOf((*q.Point)(nil)).Elem(), + "RGBA": reflect.TypeOf((*q.RGBA)(nil)).Elem(), + "RGBA64": reflect.TypeOf((*q.RGBA64)(nil)).Elem(), + "Rectangle": reflect.TypeOf((*q.Rectangle)(nil)).Elem(), + "Uniform": reflect.TypeOf((*q.Uniform)(nil)).Elem(), + "YCbCr": reflect.TypeOf((*q.YCbCr)(nil)).Elem(), + "YCbCrSubsampleRatio": reflect.TypeOf((*q.YCbCrSubsampleRatio)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Black": reflect.ValueOf(&q.Black), + "ErrFormat": reflect.ValueOf(&q.ErrFormat), + "Opaque": reflect.ValueOf(&q.Opaque), + "Transparent": reflect.ValueOf(&q.Transparent), + "White": reflect.ValueOf(&q.White), + "ZP": reflect.ValueOf(&q.ZP), + "ZR": reflect.ValueOf(&q.ZR), + }, + Funcs: map[string]reflect.Value{ + "Decode": reflect.ValueOf(q.Decode), + "DecodeConfig": reflect.ValueOf(q.DecodeConfig), + "NewAlpha": reflect.ValueOf(q.NewAlpha), + "NewAlpha16": reflect.ValueOf(q.NewAlpha16), + "NewCMYK": reflect.ValueOf(q.NewCMYK), + "NewGray": reflect.ValueOf(q.NewGray), + "NewGray16": reflect.ValueOf(q.NewGray16), + "NewNRGBA": reflect.ValueOf(q.NewNRGBA), + "NewNRGBA64": reflect.ValueOf(q.NewNRGBA64), + "NewNYCbCrA": reflect.ValueOf(q.NewNYCbCrA), + "NewPaletted": reflect.ValueOf(q.NewPaletted), + "NewRGBA": reflect.ValueOf(q.NewRGBA), + "NewRGBA64": reflect.ValueOf(q.NewRGBA64), + "NewUniform": reflect.ValueOf(q.NewUniform), + "NewYCbCr": reflect.ValueOf(q.NewYCbCr), + "Pt": reflect.ValueOf(q.Pt), + "Rect": reflect.ValueOf(q.Rect), + "RegisterFormat": reflect.ValueOf(q.RegisterFormat), + }, + TypedConsts: map[string]igop.TypedConst{ + "YCbCrSubsampleRatio410": {reflect.TypeOf(q.YCbCrSubsampleRatio410), constant.MakeInt64(int64(q.YCbCrSubsampleRatio410))}, + "YCbCrSubsampleRatio411": {reflect.TypeOf(q.YCbCrSubsampleRatio411), constant.MakeInt64(int64(q.YCbCrSubsampleRatio411))}, + "YCbCrSubsampleRatio420": {reflect.TypeOf(q.YCbCrSubsampleRatio420), constant.MakeInt64(int64(q.YCbCrSubsampleRatio420))}, + "YCbCrSubsampleRatio422": {reflect.TypeOf(q.YCbCrSubsampleRatio422), constant.MakeInt64(int64(q.YCbCrSubsampleRatio422))}, + "YCbCrSubsampleRatio440": {reflect.TypeOf(q.YCbCrSubsampleRatio440), constant.MakeInt64(int64(q.YCbCrSubsampleRatio440))}, + "YCbCrSubsampleRatio444": {reflect.TypeOf(q.YCbCrSubsampleRatio444), constant.MakeInt64(int64(q.YCbCrSubsampleRatio444))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/image/go123_export.go b/pkg/image/go123_export.go new file mode 100755 index 00000000..3d1f692d --- /dev/null +++ b/pkg/image/go123_export.go @@ -0,0 +1,95 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package image + +import ( + q "image" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "image", + Path: "image", + Deps: map[string]string{ + "bufio": "bufio", + "errors": "errors", + "image/color": "color", + "io": "io", + "math/bits": "bits", + "strconv": "strconv", + "sync": "sync", + "sync/atomic": "atomic", + }, + Interfaces: map[string]reflect.Type{ + "Image": reflect.TypeOf((*q.Image)(nil)).Elem(), + "PalettedImage": reflect.TypeOf((*q.PalettedImage)(nil)).Elem(), + "RGBA64Image": reflect.TypeOf((*q.RGBA64Image)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Alpha": reflect.TypeOf((*q.Alpha)(nil)).Elem(), + "Alpha16": reflect.TypeOf((*q.Alpha16)(nil)).Elem(), + "CMYK": reflect.TypeOf((*q.CMYK)(nil)).Elem(), + "Config": reflect.TypeOf((*q.Config)(nil)).Elem(), + "Gray": reflect.TypeOf((*q.Gray)(nil)).Elem(), + "Gray16": reflect.TypeOf((*q.Gray16)(nil)).Elem(), + "NRGBA": reflect.TypeOf((*q.NRGBA)(nil)).Elem(), + "NRGBA64": reflect.TypeOf((*q.NRGBA64)(nil)).Elem(), + "NYCbCrA": reflect.TypeOf((*q.NYCbCrA)(nil)).Elem(), + "Paletted": reflect.TypeOf((*q.Paletted)(nil)).Elem(), + "Point": reflect.TypeOf((*q.Point)(nil)).Elem(), + "RGBA": reflect.TypeOf((*q.RGBA)(nil)).Elem(), + "RGBA64": reflect.TypeOf((*q.RGBA64)(nil)).Elem(), + "Rectangle": reflect.TypeOf((*q.Rectangle)(nil)).Elem(), + "Uniform": reflect.TypeOf((*q.Uniform)(nil)).Elem(), + "YCbCr": reflect.TypeOf((*q.YCbCr)(nil)).Elem(), + "YCbCrSubsampleRatio": reflect.TypeOf((*q.YCbCrSubsampleRatio)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Black": reflect.ValueOf(&q.Black), + "ErrFormat": reflect.ValueOf(&q.ErrFormat), + "Opaque": reflect.ValueOf(&q.Opaque), + "Transparent": reflect.ValueOf(&q.Transparent), + "White": reflect.ValueOf(&q.White), + "ZP": reflect.ValueOf(&q.ZP), + "ZR": reflect.ValueOf(&q.ZR), + }, + Funcs: map[string]reflect.Value{ + "Decode": reflect.ValueOf(q.Decode), + "DecodeConfig": reflect.ValueOf(q.DecodeConfig), + "NewAlpha": reflect.ValueOf(q.NewAlpha), + "NewAlpha16": reflect.ValueOf(q.NewAlpha16), + "NewCMYK": reflect.ValueOf(q.NewCMYK), + "NewGray": reflect.ValueOf(q.NewGray), + "NewGray16": reflect.ValueOf(q.NewGray16), + "NewNRGBA": reflect.ValueOf(q.NewNRGBA), + "NewNRGBA64": reflect.ValueOf(q.NewNRGBA64), + "NewNYCbCrA": reflect.ValueOf(q.NewNYCbCrA), + "NewPaletted": reflect.ValueOf(q.NewPaletted), + "NewRGBA": reflect.ValueOf(q.NewRGBA), + "NewRGBA64": reflect.ValueOf(q.NewRGBA64), + "NewUniform": reflect.ValueOf(q.NewUniform), + "NewYCbCr": reflect.ValueOf(q.NewYCbCr), + "Pt": reflect.ValueOf(q.Pt), + "Rect": reflect.ValueOf(q.Rect), + "RegisterFormat": reflect.ValueOf(q.RegisterFormat), + }, + TypedConsts: map[string]igop.TypedConst{ + "YCbCrSubsampleRatio410": {reflect.TypeOf(q.YCbCrSubsampleRatio410), constant.MakeInt64(int64(q.YCbCrSubsampleRatio410))}, + "YCbCrSubsampleRatio411": {reflect.TypeOf(q.YCbCrSubsampleRatio411), constant.MakeInt64(int64(q.YCbCrSubsampleRatio411))}, + "YCbCrSubsampleRatio420": {reflect.TypeOf(q.YCbCrSubsampleRatio420), constant.MakeInt64(int64(q.YCbCrSubsampleRatio420))}, + "YCbCrSubsampleRatio422": {reflect.TypeOf(q.YCbCrSubsampleRatio422), constant.MakeInt64(int64(q.YCbCrSubsampleRatio422))}, + "YCbCrSubsampleRatio440": {reflect.TypeOf(q.YCbCrSubsampleRatio440), constant.MakeInt64(int64(q.YCbCrSubsampleRatio440))}, + "YCbCrSubsampleRatio444": {reflect.TypeOf(q.YCbCrSubsampleRatio444), constant.MakeInt64(int64(q.YCbCrSubsampleRatio444))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/image/jpeg/go121_export.go b/pkg/image/jpeg/go121_export.go index 76ad0407..3a4c2b6d 100755 --- a/pkg/image/jpeg/go121_export.go +++ b/pkg/image/jpeg/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package jpeg diff --git a/pkg/image/jpeg/go122_export.go b/pkg/image/jpeg/go122_export.go new file mode 100755 index 00000000..6d178dee --- /dev/null +++ b/pkg/image/jpeg/go122_export.go @@ -0,0 +1,49 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package jpeg + +import ( + q "image/jpeg" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "jpeg", + Path: "image/jpeg", + Deps: map[string]string{ + "bufio": "bufio", + "errors": "errors", + "image": "image", + "image/color": "color", + "image/internal/imageutil": "imageutil", + "io": "io", + }, + Interfaces: map[string]reflect.Type{ + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "FormatError": reflect.TypeOf((*q.FormatError)(nil)).Elem(), + "Options": reflect.TypeOf((*q.Options)(nil)).Elem(), + "UnsupportedError": reflect.TypeOf((*q.UnsupportedError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Decode": reflect.ValueOf(q.Decode), + "DecodeConfig": reflect.ValueOf(q.DecodeConfig), + "Encode": reflect.ValueOf(q.Encode), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "DefaultQuality": {"untyped int", constant.MakeInt64(int64(q.DefaultQuality))}, + }, + }) +} diff --git a/pkg/image/jpeg/go123_export.go b/pkg/image/jpeg/go123_export.go new file mode 100755 index 00000000..c8744524 --- /dev/null +++ b/pkg/image/jpeg/go123_export.go @@ -0,0 +1,49 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package jpeg + +import ( + q "image/jpeg" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "jpeg", + Path: "image/jpeg", + Deps: map[string]string{ + "bufio": "bufio", + "errors": "errors", + "image": "image", + "image/color": "color", + "image/internal/imageutil": "imageutil", + "io": "io", + }, + Interfaces: map[string]reflect.Type{ + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "FormatError": reflect.TypeOf((*q.FormatError)(nil)).Elem(), + "Options": reflect.TypeOf((*q.Options)(nil)).Elem(), + "UnsupportedError": reflect.TypeOf((*q.UnsupportedError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Decode": reflect.ValueOf(q.Decode), + "DecodeConfig": reflect.ValueOf(q.DecodeConfig), + "Encode": reflect.ValueOf(q.Encode), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "DefaultQuality": {"untyped int", constant.MakeInt64(int64(q.DefaultQuality))}, + }, + }) +} diff --git a/pkg/image/png/go121_export.go b/pkg/image/png/go121_export.go index 7dd4c5d0..b45bfc49 100755 --- a/pkg/image/png/go121_export.go +++ b/pkg/image/png/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package png diff --git a/pkg/image/png/go122_export.go b/pkg/image/png/go122_export.go new file mode 100755 index 00000000..f0b8d69d --- /dev/null +++ b/pkg/image/png/go122_export.go @@ -0,0 +1,58 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package png + +import ( + q "image/png" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "png", + Path: "image/png", + Deps: map[string]string{ + "bufio": "bufio", + "compress/zlib": "zlib", + "encoding/binary": "binary", + "fmt": "fmt", + "hash": "hash", + "hash/crc32": "crc32", + "image": "image", + "image/color": "color", + "io": "io", + "strconv": "strconv", + }, + Interfaces: map[string]reflect.Type{ + "EncoderBufferPool": reflect.TypeOf((*q.EncoderBufferPool)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "CompressionLevel": reflect.TypeOf((*q.CompressionLevel)(nil)).Elem(), + "Encoder": reflect.TypeOf((*q.Encoder)(nil)).Elem(), + "EncoderBuffer": reflect.TypeOf((*q.EncoderBuffer)(nil)).Elem(), + "FormatError": reflect.TypeOf((*q.FormatError)(nil)).Elem(), + "UnsupportedError": reflect.TypeOf((*q.UnsupportedError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Decode": reflect.ValueOf(q.Decode), + "DecodeConfig": reflect.ValueOf(q.DecodeConfig), + "Encode": reflect.ValueOf(q.Encode), + }, + TypedConsts: map[string]igop.TypedConst{ + "BestCompression": {reflect.TypeOf(q.BestCompression), constant.MakeInt64(int64(q.BestCompression))}, + "BestSpeed": {reflect.TypeOf(q.BestSpeed), constant.MakeInt64(int64(q.BestSpeed))}, + "DefaultCompression": {reflect.TypeOf(q.DefaultCompression), constant.MakeInt64(int64(q.DefaultCompression))}, + "NoCompression": {reflect.TypeOf(q.NoCompression), constant.MakeInt64(int64(q.NoCompression))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/image/png/go123_export.go b/pkg/image/png/go123_export.go new file mode 100755 index 00000000..dff3144b --- /dev/null +++ b/pkg/image/png/go123_export.go @@ -0,0 +1,58 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package png + +import ( + q "image/png" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "png", + Path: "image/png", + Deps: map[string]string{ + "bufio": "bufio", + "compress/zlib": "zlib", + "encoding/binary": "binary", + "fmt": "fmt", + "hash": "hash", + "hash/crc32": "crc32", + "image": "image", + "image/color": "color", + "io": "io", + "strconv": "strconv", + }, + Interfaces: map[string]reflect.Type{ + "EncoderBufferPool": reflect.TypeOf((*q.EncoderBufferPool)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "CompressionLevel": reflect.TypeOf((*q.CompressionLevel)(nil)).Elem(), + "Encoder": reflect.TypeOf((*q.Encoder)(nil)).Elem(), + "EncoderBuffer": reflect.TypeOf((*q.EncoderBuffer)(nil)).Elem(), + "FormatError": reflect.TypeOf((*q.FormatError)(nil)).Elem(), + "UnsupportedError": reflect.TypeOf((*q.UnsupportedError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Decode": reflect.ValueOf(q.Decode), + "DecodeConfig": reflect.ValueOf(q.DecodeConfig), + "Encode": reflect.ValueOf(q.Encode), + }, + TypedConsts: map[string]igop.TypedConst{ + "BestCompression": {reflect.TypeOf(q.BestCompression), constant.MakeInt64(int64(q.BestCompression))}, + "BestSpeed": {reflect.TypeOf(q.BestSpeed), constant.MakeInt64(int64(q.BestSpeed))}, + "DefaultCompression": {reflect.TypeOf(q.DefaultCompression), constant.MakeInt64(int64(q.DefaultCompression))}, + "NoCompression": {reflect.TypeOf(q.NoCompression), constant.MakeInt64(int64(q.NoCompression))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/index/suffixarray/go121_export.go b/pkg/index/suffixarray/go121_export.go index d6baef47..d29c3db0 100755 --- a/pkg/index/suffixarray/go121_export.go +++ b/pkg/index/suffixarray/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package suffixarray diff --git a/pkg/index/suffixarray/go122_export.go b/pkg/index/suffixarray/go122_export.go new file mode 100755 index 00000000..ff2c33b5 --- /dev/null +++ b/pkg/index/suffixarray/go122_export.go @@ -0,0 +1,41 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package suffixarray + +import ( + q "index/suffixarray" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "suffixarray", + Path: "index/suffixarray", + Deps: map[string]string{ + "bytes": "bytes", + "encoding/binary": "binary", + "errors": "errors", + "io": "io", + "math": "math", + "regexp": "regexp", + "sort": "sort", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Index": reflect.TypeOf((*q.Index)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "New": reflect.ValueOf(q.New), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/index/suffixarray/go123_export.go b/pkg/index/suffixarray/go123_export.go new file mode 100755 index 00000000..3fc07bed --- /dev/null +++ b/pkg/index/suffixarray/go123_export.go @@ -0,0 +1,42 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package suffixarray + +import ( + q "index/suffixarray" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "suffixarray", + Path: "index/suffixarray", + Deps: map[string]string{ + "bytes": "bytes", + "encoding/binary": "binary", + "errors": "errors", + "io": "io", + "math": "math", + "regexp": "regexp", + "slices": "slices", + "sort": "sort", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Index": reflect.TypeOf((*q.Index)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "New": reflect.ValueOf(q.New), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/io/fs/go121_export.go b/pkg/io/fs/go121_export.go index 525a58e8..f9d420dd 100755 --- a/pkg/io/fs/go121_export.go +++ b/pkg/io/fs/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package fs diff --git a/pkg/io/fs/go122_export.go b/pkg/io/fs/go122_export.go new file mode 100755 index 00000000..41fc77ee --- /dev/null +++ b/pkg/io/fs/go122_export.go @@ -0,0 +1,88 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package fs + +import ( + q "io/fs" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "fs", + Path: "io/fs", + Deps: map[string]string{ + "errors": "errors", + "internal/oserror": "oserror", + "io": "io", + "path": "path", + "sort": "sort", + "time": "time", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "DirEntry": reflect.TypeOf((*q.DirEntry)(nil)).Elem(), + "FS": reflect.TypeOf((*q.FS)(nil)).Elem(), + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "FileInfo": reflect.TypeOf((*q.FileInfo)(nil)).Elem(), + "GlobFS": reflect.TypeOf((*q.GlobFS)(nil)).Elem(), + "ReadDirFS": reflect.TypeOf((*q.ReadDirFS)(nil)).Elem(), + "ReadDirFile": reflect.TypeOf((*q.ReadDirFile)(nil)).Elem(), + "ReadFileFS": reflect.TypeOf((*q.ReadFileFS)(nil)).Elem(), + "StatFS": reflect.TypeOf((*q.StatFS)(nil)).Elem(), + "SubFS": reflect.TypeOf((*q.SubFS)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "FileMode": reflect.TypeOf((*q.FileMode)(nil)).Elem(), + "PathError": reflect.TypeOf((*q.PathError)(nil)).Elem(), + "WalkDirFunc": reflect.TypeOf((*q.WalkDirFunc)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrClosed": reflect.ValueOf(&q.ErrClosed), + "ErrExist": reflect.ValueOf(&q.ErrExist), + "ErrInvalid": reflect.ValueOf(&q.ErrInvalid), + "ErrNotExist": reflect.ValueOf(&q.ErrNotExist), + "ErrPermission": reflect.ValueOf(&q.ErrPermission), + "SkipAll": reflect.ValueOf(&q.SkipAll), + "SkipDir": reflect.ValueOf(&q.SkipDir), + }, + Funcs: map[string]reflect.Value{ + "FileInfoToDirEntry": reflect.ValueOf(q.FileInfoToDirEntry), + "FormatDirEntry": reflect.ValueOf(q.FormatDirEntry), + "FormatFileInfo": reflect.ValueOf(q.FormatFileInfo), + "Glob": reflect.ValueOf(q.Glob), + "ReadDir": reflect.ValueOf(q.ReadDir), + "ReadFile": reflect.ValueOf(q.ReadFile), + "Stat": reflect.ValueOf(q.Stat), + "Sub": reflect.ValueOf(q.Sub), + "ValidPath": reflect.ValueOf(q.ValidPath), + "WalkDir": reflect.ValueOf(q.WalkDir), + }, + TypedConsts: map[string]igop.TypedConst{ + "ModeAppend": {reflect.TypeOf(q.ModeAppend), constant.MakeInt64(int64(q.ModeAppend))}, + "ModeCharDevice": {reflect.TypeOf(q.ModeCharDevice), constant.MakeInt64(int64(q.ModeCharDevice))}, + "ModeDevice": {reflect.TypeOf(q.ModeDevice), constant.MakeInt64(int64(q.ModeDevice))}, + "ModeDir": {reflect.TypeOf(q.ModeDir), constant.MakeInt64(int64(q.ModeDir))}, + "ModeExclusive": {reflect.TypeOf(q.ModeExclusive), constant.MakeInt64(int64(q.ModeExclusive))}, + "ModeIrregular": {reflect.TypeOf(q.ModeIrregular), constant.MakeInt64(int64(q.ModeIrregular))}, + "ModeNamedPipe": {reflect.TypeOf(q.ModeNamedPipe), constant.MakeInt64(int64(q.ModeNamedPipe))}, + "ModePerm": {reflect.TypeOf(q.ModePerm), constant.MakeInt64(int64(q.ModePerm))}, + "ModeSetgid": {reflect.TypeOf(q.ModeSetgid), constant.MakeInt64(int64(q.ModeSetgid))}, + "ModeSetuid": {reflect.TypeOf(q.ModeSetuid), constant.MakeInt64(int64(q.ModeSetuid))}, + "ModeSocket": {reflect.TypeOf(q.ModeSocket), constant.MakeInt64(int64(q.ModeSocket))}, + "ModeSticky": {reflect.TypeOf(q.ModeSticky), constant.MakeInt64(int64(q.ModeSticky))}, + "ModeSymlink": {reflect.TypeOf(q.ModeSymlink), constant.MakeInt64(int64(q.ModeSymlink))}, + "ModeTemporary": {reflect.TypeOf(q.ModeTemporary), constant.MakeInt64(int64(q.ModeTemporary))}, + "ModeType": {reflect.TypeOf(q.ModeType), constant.MakeInt64(int64(q.ModeType))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/io/fs/go123_export.go b/pkg/io/fs/go123_export.go new file mode 100755 index 00000000..a1eb5139 --- /dev/null +++ b/pkg/io/fs/go123_export.go @@ -0,0 +1,89 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package fs + +import ( + q "io/fs" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "fs", + Path: "io/fs", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/oserror": "oserror", + "io": "io", + "path": "path", + "slices": "slices", + "time": "time", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "DirEntry": reflect.TypeOf((*q.DirEntry)(nil)).Elem(), + "FS": reflect.TypeOf((*q.FS)(nil)).Elem(), + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "FileInfo": reflect.TypeOf((*q.FileInfo)(nil)).Elem(), + "GlobFS": reflect.TypeOf((*q.GlobFS)(nil)).Elem(), + "ReadDirFS": reflect.TypeOf((*q.ReadDirFS)(nil)).Elem(), + "ReadDirFile": reflect.TypeOf((*q.ReadDirFile)(nil)).Elem(), + "ReadFileFS": reflect.TypeOf((*q.ReadFileFS)(nil)).Elem(), + "StatFS": reflect.TypeOf((*q.StatFS)(nil)).Elem(), + "SubFS": reflect.TypeOf((*q.SubFS)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "FileMode": reflect.TypeOf((*q.FileMode)(nil)).Elem(), + "PathError": reflect.TypeOf((*q.PathError)(nil)).Elem(), + "WalkDirFunc": reflect.TypeOf((*q.WalkDirFunc)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrClosed": reflect.ValueOf(&q.ErrClosed), + "ErrExist": reflect.ValueOf(&q.ErrExist), + "ErrInvalid": reflect.ValueOf(&q.ErrInvalid), + "ErrNotExist": reflect.ValueOf(&q.ErrNotExist), + "ErrPermission": reflect.ValueOf(&q.ErrPermission), + "SkipAll": reflect.ValueOf(&q.SkipAll), + "SkipDir": reflect.ValueOf(&q.SkipDir), + }, + Funcs: map[string]reflect.Value{ + "FileInfoToDirEntry": reflect.ValueOf(q.FileInfoToDirEntry), + "FormatDirEntry": reflect.ValueOf(q.FormatDirEntry), + "FormatFileInfo": reflect.ValueOf(q.FormatFileInfo), + "Glob": reflect.ValueOf(q.Glob), + "ReadDir": reflect.ValueOf(q.ReadDir), + "ReadFile": reflect.ValueOf(q.ReadFile), + "Stat": reflect.ValueOf(q.Stat), + "Sub": reflect.ValueOf(q.Sub), + "ValidPath": reflect.ValueOf(q.ValidPath), + "WalkDir": reflect.ValueOf(q.WalkDir), + }, + TypedConsts: map[string]igop.TypedConst{ + "ModeAppend": {reflect.TypeOf(q.ModeAppend), constant.MakeInt64(int64(q.ModeAppend))}, + "ModeCharDevice": {reflect.TypeOf(q.ModeCharDevice), constant.MakeInt64(int64(q.ModeCharDevice))}, + "ModeDevice": {reflect.TypeOf(q.ModeDevice), constant.MakeInt64(int64(q.ModeDevice))}, + "ModeDir": {reflect.TypeOf(q.ModeDir), constant.MakeInt64(int64(q.ModeDir))}, + "ModeExclusive": {reflect.TypeOf(q.ModeExclusive), constant.MakeInt64(int64(q.ModeExclusive))}, + "ModeIrregular": {reflect.TypeOf(q.ModeIrregular), constant.MakeInt64(int64(q.ModeIrregular))}, + "ModeNamedPipe": {reflect.TypeOf(q.ModeNamedPipe), constant.MakeInt64(int64(q.ModeNamedPipe))}, + "ModePerm": {reflect.TypeOf(q.ModePerm), constant.MakeInt64(int64(q.ModePerm))}, + "ModeSetgid": {reflect.TypeOf(q.ModeSetgid), constant.MakeInt64(int64(q.ModeSetgid))}, + "ModeSetuid": {reflect.TypeOf(q.ModeSetuid), constant.MakeInt64(int64(q.ModeSetuid))}, + "ModeSocket": {reflect.TypeOf(q.ModeSocket), constant.MakeInt64(int64(q.ModeSocket))}, + "ModeSticky": {reflect.TypeOf(q.ModeSticky), constant.MakeInt64(int64(q.ModeSticky))}, + "ModeSymlink": {reflect.TypeOf(q.ModeSymlink), constant.MakeInt64(int64(q.ModeSymlink))}, + "ModeTemporary": {reflect.TypeOf(q.ModeTemporary), constant.MakeInt64(int64(q.ModeTemporary))}, + "ModeType": {reflect.TypeOf(q.ModeType), constant.MakeInt64(int64(q.ModeType))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/io/go121_export.go b/pkg/io/go121_export.go index 2f5d827f..5950bd88 100755 --- a/pkg/io/go121_export.go +++ b/pkg/io/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package io diff --git a/pkg/io/go122_export.go b/pkg/io/go122_export.go new file mode 100755 index 00000000..315cb75d --- /dev/null +++ b/pkg/io/go122_export.go @@ -0,0 +1,90 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package io + +import ( + q "io" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "io", + Path: "io", + Deps: map[string]string{ + "errors": "errors", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{ + "ByteReader": reflect.TypeOf((*q.ByteReader)(nil)).Elem(), + "ByteScanner": reflect.TypeOf((*q.ByteScanner)(nil)).Elem(), + "ByteWriter": reflect.TypeOf((*q.ByteWriter)(nil)).Elem(), + "Closer": reflect.TypeOf((*q.Closer)(nil)).Elem(), + "ReadCloser": reflect.TypeOf((*q.ReadCloser)(nil)).Elem(), + "ReadSeekCloser": reflect.TypeOf((*q.ReadSeekCloser)(nil)).Elem(), + "ReadSeeker": reflect.TypeOf((*q.ReadSeeker)(nil)).Elem(), + "ReadWriteCloser": reflect.TypeOf((*q.ReadWriteCloser)(nil)).Elem(), + "ReadWriteSeeker": reflect.TypeOf((*q.ReadWriteSeeker)(nil)).Elem(), + "ReadWriter": reflect.TypeOf((*q.ReadWriter)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "ReaderAt": reflect.TypeOf((*q.ReaderAt)(nil)).Elem(), + "ReaderFrom": reflect.TypeOf((*q.ReaderFrom)(nil)).Elem(), + "RuneReader": reflect.TypeOf((*q.RuneReader)(nil)).Elem(), + "RuneScanner": reflect.TypeOf((*q.RuneScanner)(nil)).Elem(), + "Seeker": reflect.TypeOf((*q.Seeker)(nil)).Elem(), + "StringWriter": reflect.TypeOf((*q.StringWriter)(nil)).Elem(), + "WriteCloser": reflect.TypeOf((*q.WriteCloser)(nil)).Elem(), + "WriteSeeker": reflect.TypeOf((*q.WriteSeeker)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + "WriterAt": reflect.TypeOf((*q.WriterAt)(nil)).Elem(), + "WriterTo": reflect.TypeOf((*q.WriterTo)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "LimitedReader": reflect.TypeOf((*q.LimitedReader)(nil)).Elem(), + "OffsetWriter": reflect.TypeOf((*q.OffsetWriter)(nil)).Elem(), + "PipeReader": reflect.TypeOf((*q.PipeReader)(nil)).Elem(), + "PipeWriter": reflect.TypeOf((*q.PipeWriter)(nil)).Elem(), + "SectionReader": reflect.TypeOf((*q.SectionReader)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Discard": reflect.ValueOf(&q.Discard), + "EOF": reflect.ValueOf(&q.EOF), + "ErrClosedPipe": reflect.ValueOf(&q.ErrClosedPipe), + "ErrNoProgress": reflect.ValueOf(&q.ErrNoProgress), + "ErrShortBuffer": reflect.ValueOf(&q.ErrShortBuffer), + "ErrShortWrite": reflect.ValueOf(&q.ErrShortWrite), + "ErrUnexpectedEOF": reflect.ValueOf(&q.ErrUnexpectedEOF), + }, + Funcs: map[string]reflect.Value{ + "Copy": reflect.ValueOf(q.Copy), + "CopyBuffer": reflect.ValueOf(q.CopyBuffer), + "CopyN": reflect.ValueOf(q.CopyN), + "LimitReader": reflect.ValueOf(q.LimitReader), + "MultiReader": reflect.ValueOf(q.MultiReader), + "MultiWriter": reflect.ValueOf(q.MultiWriter), + "NewOffsetWriter": reflect.ValueOf(q.NewOffsetWriter), + "NewSectionReader": reflect.ValueOf(q.NewSectionReader), + "NopCloser": reflect.ValueOf(q.NopCloser), + "Pipe": reflect.ValueOf(q.Pipe), + "ReadAll": reflect.ValueOf(q.ReadAll), + "ReadAtLeast": reflect.ValueOf(q.ReadAtLeast), + "ReadFull": reflect.ValueOf(q.ReadFull), + "TeeReader": reflect.ValueOf(q.TeeReader), + "WriteString": reflect.ValueOf(q.WriteString), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "SeekCurrent": {"untyped int", constant.MakeInt64(int64(q.SeekCurrent))}, + "SeekEnd": {"untyped int", constant.MakeInt64(int64(q.SeekEnd))}, + "SeekStart": {"untyped int", constant.MakeInt64(int64(q.SeekStart))}, + }, + }) +} diff --git a/pkg/io/go123_export.go b/pkg/io/go123_export.go new file mode 100755 index 00000000..389de0b3 --- /dev/null +++ b/pkg/io/go123_export.go @@ -0,0 +1,90 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package io + +import ( + q "io" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "io", + Path: "io", + Deps: map[string]string{ + "errors": "errors", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{ + "ByteReader": reflect.TypeOf((*q.ByteReader)(nil)).Elem(), + "ByteScanner": reflect.TypeOf((*q.ByteScanner)(nil)).Elem(), + "ByteWriter": reflect.TypeOf((*q.ByteWriter)(nil)).Elem(), + "Closer": reflect.TypeOf((*q.Closer)(nil)).Elem(), + "ReadCloser": reflect.TypeOf((*q.ReadCloser)(nil)).Elem(), + "ReadSeekCloser": reflect.TypeOf((*q.ReadSeekCloser)(nil)).Elem(), + "ReadSeeker": reflect.TypeOf((*q.ReadSeeker)(nil)).Elem(), + "ReadWriteCloser": reflect.TypeOf((*q.ReadWriteCloser)(nil)).Elem(), + "ReadWriteSeeker": reflect.TypeOf((*q.ReadWriteSeeker)(nil)).Elem(), + "ReadWriter": reflect.TypeOf((*q.ReadWriter)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "ReaderAt": reflect.TypeOf((*q.ReaderAt)(nil)).Elem(), + "ReaderFrom": reflect.TypeOf((*q.ReaderFrom)(nil)).Elem(), + "RuneReader": reflect.TypeOf((*q.RuneReader)(nil)).Elem(), + "RuneScanner": reflect.TypeOf((*q.RuneScanner)(nil)).Elem(), + "Seeker": reflect.TypeOf((*q.Seeker)(nil)).Elem(), + "StringWriter": reflect.TypeOf((*q.StringWriter)(nil)).Elem(), + "WriteCloser": reflect.TypeOf((*q.WriteCloser)(nil)).Elem(), + "WriteSeeker": reflect.TypeOf((*q.WriteSeeker)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + "WriterAt": reflect.TypeOf((*q.WriterAt)(nil)).Elem(), + "WriterTo": reflect.TypeOf((*q.WriterTo)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "LimitedReader": reflect.TypeOf((*q.LimitedReader)(nil)).Elem(), + "OffsetWriter": reflect.TypeOf((*q.OffsetWriter)(nil)).Elem(), + "PipeReader": reflect.TypeOf((*q.PipeReader)(nil)).Elem(), + "PipeWriter": reflect.TypeOf((*q.PipeWriter)(nil)).Elem(), + "SectionReader": reflect.TypeOf((*q.SectionReader)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Discard": reflect.ValueOf(&q.Discard), + "EOF": reflect.ValueOf(&q.EOF), + "ErrClosedPipe": reflect.ValueOf(&q.ErrClosedPipe), + "ErrNoProgress": reflect.ValueOf(&q.ErrNoProgress), + "ErrShortBuffer": reflect.ValueOf(&q.ErrShortBuffer), + "ErrShortWrite": reflect.ValueOf(&q.ErrShortWrite), + "ErrUnexpectedEOF": reflect.ValueOf(&q.ErrUnexpectedEOF), + }, + Funcs: map[string]reflect.Value{ + "Copy": reflect.ValueOf(q.Copy), + "CopyBuffer": reflect.ValueOf(q.CopyBuffer), + "CopyN": reflect.ValueOf(q.CopyN), + "LimitReader": reflect.ValueOf(q.LimitReader), + "MultiReader": reflect.ValueOf(q.MultiReader), + "MultiWriter": reflect.ValueOf(q.MultiWriter), + "NewOffsetWriter": reflect.ValueOf(q.NewOffsetWriter), + "NewSectionReader": reflect.ValueOf(q.NewSectionReader), + "NopCloser": reflect.ValueOf(q.NopCloser), + "Pipe": reflect.ValueOf(q.Pipe), + "ReadAll": reflect.ValueOf(q.ReadAll), + "ReadAtLeast": reflect.ValueOf(q.ReadAtLeast), + "ReadFull": reflect.ValueOf(q.ReadFull), + "TeeReader": reflect.ValueOf(q.TeeReader), + "WriteString": reflect.ValueOf(q.WriteString), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "SeekCurrent": {"untyped int", constant.MakeInt64(int64(q.SeekCurrent))}, + "SeekEnd": {"untyped int", constant.MakeInt64(int64(q.SeekEnd))}, + "SeekStart": {"untyped int", constant.MakeInt64(int64(q.SeekStart))}, + }, + }) +} diff --git a/pkg/io/ioutil/go121_export.go b/pkg/io/ioutil/go121_export.go index 200a97c5..78a43560 100755 --- a/pkg/io/ioutil/go121_export.go +++ b/pkg/io/ioutil/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package ioutil diff --git a/pkg/io/ioutil/go122_export.go b/pkg/io/ioutil/go122_export.go new file mode 100755 index 00000000..bc2571b0 --- /dev/null +++ b/pkg/io/ioutil/go122_export.go @@ -0,0 +1,44 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package ioutil + +import ( + q "io/ioutil" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "ioutil", + Path: "io/ioutil", + Deps: map[string]string{ + "io": "io", + "io/fs": "fs", + "os": "os", + "sort": "sort", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Discard": reflect.ValueOf(&q.Discard), + }, + Funcs: map[string]reflect.Value{ + "NopCloser": reflect.ValueOf(q.NopCloser), + "ReadAll": reflect.ValueOf(q.ReadAll), + "ReadDir": reflect.ValueOf(q.ReadDir), + "ReadFile": reflect.ValueOf(q.ReadFile), + "TempDir": reflect.ValueOf(q.TempDir), + "TempFile": reflect.ValueOf(q.TempFile), + "WriteFile": reflect.ValueOf(q.WriteFile), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/io/ioutil/go123_export.go b/pkg/io/ioutil/go123_export.go new file mode 100755 index 00000000..6fa16a14 --- /dev/null +++ b/pkg/io/ioutil/go123_export.go @@ -0,0 +1,45 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package ioutil + +import ( + q "io/ioutil" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "ioutil", + Path: "io/ioutil", + Deps: map[string]string{ + "io": "io", + "io/fs": "fs", + "os": "os", + "slices": "slices", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Discard": reflect.ValueOf(&q.Discard), + }, + Funcs: map[string]reflect.Value{ + "NopCloser": reflect.ValueOf(q.NopCloser), + "ReadAll": reflect.ValueOf(q.ReadAll), + "ReadDir": reflect.ValueOf(q.ReadDir), + "ReadFile": reflect.ValueOf(q.ReadFile), + "TempDir": reflect.ValueOf(q.TempDir), + "TempFile": reflect.ValueOf(q.TempFile), + "WriteFile": reflect.ValueOf(q.WriteFile), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/iter/go123_export.go b/pkg/iter/go123_export.go new file mode 100644 index 00000000..4f655840 --- /dev/null +++ b/pkg/iter/go123_export.go @@ -0,0 +1,48 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package iter + +import ( + _ "iter" + "reflect" + _ "unsafe" + + "github.com/goplus/igop" + _ "github.com/goplus/igop/pkg/github.com/goplus/igop/race" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "iter", + Path: "iter", + Deps: map[string]string{ + "github.com/goplus/igop/pkg/internal/race": "race", + "runtime": "runtime", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "coroswitch": reflect.ValueOf(_coroswitch), + "newcoro": reflect.ValueOf(_newcoro), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + Source: source, + }) +} + +type coro = struct{} + +//go:linkname _newcoro runtime.newcoro +func _newcoro(fn func(*coro)) *coro + +//go:linkname _coroswitch runtime.coroswitch +func _coroswitch(*coro) + +var source = "package iter\n\nimport (\n\t\"runtime\"\n\t\"unsafe\"\n\t\"github.com/goplus/igop/race\"\n)\n\ntype Seq[V any] func(yield func(V) bool)\n\ntype Seq2[K, V any] func(yield func(K, V) bool)\n\ntype coro = struct{}\n\nfunc newcoro(fn func(*coro)) *coro\n\nfunc coroswitch(*coro)\n\nfunc Pull[V any](seq Seq[V]) (next func() (V, bool), stop func()) {\n\tvar (\n\t\tv\t\tV\n\t\tok\t\tbool\n\t\tdone\t\tbool\n\t\tyieldNext\tbool\n\t\tracer\t\tint\n\t\tpanicValue\tany\n\t\tseqDone\t\tbool\n\t)\n\tc := newcoro(func(c *coro) {\n\t\trace.Acquire(unsafe.Pointer(&racer))\n\t\tif done {\n\t\t\trace.Release(unsafe.Pointer(&racer))\n\t\t\treturn\n\t\t}\n\t\tyield := func(v1 V) bool {\n\t\t\tif done {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tif !yieldNext {\n\t\t\t\tpanic(\"iter.Pull: yield called again before next\")\n\t\t\t}\n\t\t\tyieldNext = false\n\t\t\tv, ok = v1, true\n\t\t\trace.Release(unsafe.Pointer(&racer))\n\t\t\tcoroswitch(c)\n\t\t\trace.Acquire(unsafe.Pointer(&racer))\n\t\t\treturn !done\n\t\t}\n\n\t\tdefer func() {\n\t\t\tif p := recover(); p != nil {\n\t\t\t\tpanicValue = p\n\t\t\t} else if !seqDone {\n\t\t\t\tpanicValue = goexitPanicValue\n\t\t\t}\n\t\t\tdone = true\n\t\t\trace.Release(unsafe.Pointer(&racer))\n\t\t}()\n\t\tseq(yield)\n\t\tvar v0 V\n\t\tv, ok = v0, false\n\t\tseqDone = true\n\t})\n\tnext = func() (v1 V, ok1 bool) {\n\t\trace.Write(unsafe.Pointer(&racer))\n\n\t\tif done {\n\t\t\treturn\n\t\t}\n\t\tif yieldNext {\n\t\t\tpanic(\"iter.Pull: next called again before yield\")\n\t\t}\n\t\tyieldNext = true\n\t\trace.Release(unsafe.Pointer(&racer))\n\t\tcoroswitch(c)\n\t\trace.Acquire(unsafe.Pointer(&racer))\n\n\t\tif panicValue != nil {\n\t\t\tif panicValue == goexitPanicValue {\n\n\t\t\t\truntime.Goexit()\n\t\t\t} else {\n\t\t\t\tpanic(panicValue)\n\t\t\t}\n\t\t}\n\t\treturn v, ok\n\t}\n\tstop = func() {\n\t\trace.Write(unsafe.Pointer(&racer))\n\n\t\tif !done {\n\t\t\tdone = true\n\t\t\trace.Release(unsafe.Pointer(&racer))\n\t\t\tcoroswitch(c)\n\t\t\trace.Acquire(unsafe.Pointer(&racer))\n\n\t\t\tif panicValue != nil {\n\t\t\t\tif panicValue == goexitPanicValue {\n\n\t\t\t\t\truntime.Goexit()\n\t\t\t\t} else {\n\t\t\t\t\tpanic(panicValue)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn next, stop\n}\n\nfunc Pull2[K, V any](seq Seq2[K, V]) (next func() (K, V, bool), stop func()) {\n\tvar (\n\t\tk\t\tK\n\t\tv\t\tV\n\t\tok\t\tbool\n\t\tdone\t\tbool\n\t\tyieldNext\tbool\n\t\tracer\t\tint\n\t\tpanicValue\tany\n\t\tseqDone\t\tbool\n\t)\n\tc := newcoro(func(c *coro) {\n\t\trace.Acquire(unsafe.Pointer(&racer))\n\t\tif done {\n\t\t\trace.Release(unsafe.Pointer(&racer))\n\t\t\treturn\n\t\t}\n\t\tyield := func(k1 K, v1 V) bool {\n\t\t\tif done {\n\t\t\t\treturn false\n\t\t\t}\n\t\t\tif !yieldNext {\n\t\t\t\tpanic(\"iter.Pull2: yield called again before next\")\n\t\t\t}\n\t\t\tyieldNext = false\n\t\t\tk, v, ok = k1, v1, true\n\t\t\trace.Release(unsafe.Pointer(&racer))\n\t\t\tcoroswitch(c)\n\t\t\trace.Acquire(unsafe.Pointer(&racer))\n\t\t\treturn !done\n\t\t}\n\n\t\tdefer func() {\n\t\t\tif p := recover(); p != nil {\n\t\t\t\tpanicValue = p\n\t\t\t} else if !seqDone {\n\t\t\t\tpanicValue = goexitPanicValue\n\t\t\t}\n\t\t\tdone = true\n\t\t\trace.Release(unsafe.Pointer(&racer))\n\t\t}()\n\t\tseq(yield)\n\t\tvar k0 K\n\t\tvar v0 V\n\t\tk, v, ok = k0, v0, false\n\t\tseqDone = true\n\t})\n\tnext = func() (k1 K, v1 V, ok1 bool) {\n\t\trace.Write(unsafe.Pointer(&racer))\n\n\t\tif done {\n\t\t\treturn\n\t\t}\n\t\tif yieldNext {\n\t\t\tpanic(\"iter.Pull2: next called again before yield\")\n\t\t}\n\t\tyieldNext = true\n\t\trace.Release(unsafe.Pointer(&racer))\n\t\tcoroswitch(c)\n\t\trace.Acquire(unsafe.Pointer(&racer))\n\n\t\tif panicValue != nil {\n\t\t\tif panicValue == goexitPanicValue {\n\n\t\t\t\truntime.Goexit()\n\t\t\t} else {\n\t\t\t\tpanic(panicValue)\n\t\t\t}\n\t\t}\n\t\treturn k, v, ok\n\t}\n\tstop = func() {\n\t\trace.Write(unsafe.Pointer(&racer))\n\n\t\tif !done {\n\t\t\tdone = true\n\t\t\trace.Release(unsafe.Pointer(&racer))\n\t\t\tcoroswitch(c)\n\t\t\trace.Acquire(unsafe.Pointer(&racer))\n\n\t\t\tif panicValue != nil {\n\t\t\t\tif panicValue == goexitPanicValue {\n\n\t\t\t\t\truntime.Goexit()\n\t\t\t\t} else {\n\t\t\t\t\tpanic(panicValue)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn next, stop\n}\n\nvar goexitPanicValue any = new(int)\n" diff --git a/pkg/log/go121_export.go b/pkg/log/go121_export.go index 643cbbb1..3c229355 100755 --- a/pkg/log/go121_export.go +++ b/pkg/log/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package log diff --git a/pkg/log/go122_export.go b/pkg/log/go122_export.go new file mode 100755 index 00000000..98e0d051 --- /dev/null +++ b/pkg/log/go122_export.go @@ -0,0 +1,69 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package log + +import ( + q "log" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "log", + Path: "log", + Deps: map[string]string{ + "fmt": "fmt", + "io": "io", + "log/internal": "internal", + "os": "os", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Logger": reflect.TypeOf((*q.Logger)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Default": reflect.ValueOf(q.Default), + "Fatal": reflect.ValueOf(q.Fatal), + "Fatalf": reflect.ValueOf(q.Fatalf), + "Fatalln": reflect.ValueOf(q.Fatalln), + "Flags": reflect.ValueOf(q.Flags), + "New": reflect.ValueOf(q.New), + "Output": reflect.ValueOf(q.Output), + "Panic": reflect.ValueOf(q.Panic), + "Panicf": reflect.ValueOf(q.Panicf), + "Panicln": reflect.ValueOf(q.Panicln), + "Prefix": reflect.ValueOf(q.Prefix), + "Print": reflect.ValueOf(q.Print), + "Printf": reflect.ValueOf(q.Printf), + "Println": reflect.ValueOf(q.Println), + "SetFlags": reflect.ValueOf(q.SetFlags), + "SetOutput": reflect.ValueOf(q.SetOutput), + "SetPrefix": reflect.ValueOf(q.SetPrefix), + "Writer": reflect.ValueOf(q.Writer), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "LUTC": {"untyped int", constant.MakeInt64(int64(q.LUTC))}, + "Ldate": {"untyped int", constant.MakeInt64(int64(q.Ldate))}, + "Llongfile": {"untyped int", constant.MakeInt64(int64(q.Llongfile))}, + "Lmicroseconds": {"untyped int", constant.MakeInt64(int64(q.Lmicroseconds))}, + "Lmsgprefix": {"untyped int", constant.MakeInt64(int64(q.Lmsgprefix))}, + "Lshortfile": {"untyped int", constant.MakeInt64(int64(q.Lshortfile))}, + "LstdFlags": {"untyped int", constant.MakeInt64(int64(q.LstdFlags))}, + "Ltime": {"untyped int", constant.MakeInt64(int64(q.Ltime))}, + }, + }) +} diff --git a/pkg/log/go123_export.go b/pkg/log/go123_export.go new file mode 100755 index 00000000..103db84c --- /dev/null +++ b/pkg/log/go123_export.go @@ -0,0 +1,69 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package log + +import ( + q "log" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "log", + Path: "log", + Deps: map[string]string{ + "fmt": "fmt", + "io": "io", + "log/internal": "internal", + "os": "os", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Logger": reflect.TypeOf((*q.Logger)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Default": reflect.ValueOf(q.Default), + "Fatal": reflect.ValueOf(q.Fatal), + "Fatalf": reflect.ValueOf(q.Fatalf), + "Fatalln": reflect.ValueOf(q.Fatalln), + "Flags": reflect.ValueOf(q.Flags), + "New": reflect.ValueOf(q.New), + "Output": reflect.ValueOf(q.Output), + "Panic": reflect.ValueOf(q.Panic), + "Panicf": reflect.ValueOf(q.Panicf), + "Panicln": reflect.ValueOf(q.Panicln), + "Prefix": reflect.ValueOf(q.Prefix), + "Print": reflect.ValueOf(q.Print), + "Printf": reflect.ValueOf(q.Printf), + "Println": reflect.ValueOf(q.Println), + "SetFlags": reflect.ValueOf(q.SetFlags), + "SetOutput": reflect.ValueOf(q.SetOutput), + "SetPrefix": reflect.ValueOf(q.SetPrefix), + "Writer": reflect.ValueOf(q.Writer), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "LUTC": {"untyped int", constant.MakeInt64(int64(q.LUTC))}, + "Ldate": {"untyped int", constant.MakeInt64(int64(q.Ldate))}, + "Llongfile": {"untyped int", constant.MakeInt64(int64(q.Llongfile))}, + "Lmicroseconds": {"untyped int", constant.MakeInt64(int64(q.Lmicroseconds))}, + "Lmsgprefix": {"untyped int", constant.MakeInt64(int64(q.Lmsgprefix))}, + "Lshortfile": {"untyped int", constant.MakeInt64(int64(q.Lshortfile))}, + "LstdFlags": {"untyped int", constant.MakeInt64(int64(q.LstdFlags))}, + "Ltime": {"untyped int", constant.MakeInt64(int64(q.Ltime))}, + }, + }) +} diff --git a/pkg/log/slog/go121_export.go b/pkg/log/slog/go121_export.go index 980c468d..3df51e90 100755 --- a/pkg/log/slog/go121_export.go +++ b/pkg/log/slog/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package slog diff --git a/pkg/log/slog/go122_export.go b/pkg/log/slog/go122_export.go new file mode 100755 index 00000000..4f55da34 --- /dev/null +++ b/pkg/log/slog/go122_export.go @@ -0,0 +1,130 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package slog + +import ( + q "log/slog" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "slog", + Path: "log/slog", + Deps: map[string]string{ + "bytes": "bytes", + "context": "context", + "encoding": "encoding", + "encoding/json": "json", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "log": "log", + "log/internal": "internal", + "log/slog/internal": "internal", + "log/slog/internal/buffer": "buffer", + "math": "math", + "reflect": "reflect", + "runtime": "runtime", + "slices": "slices", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "sync/atomic": "atomic", + "time": "time", + "unicode": "unicode", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Handler": reflect.TypeOf((*q.Handler)(nil)).Elem(), + "Leveler": reflect.TypeOf((*q.Leveler)(nil)).Elem(), + "LogValuer": reflect.TypeOf((*q.LogValuer)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Attr": reflect.TypeOf((*q.Attr)(nil)).Elem(), + "HandlerOptions": reflect.TypeOf((*q.HandlerOptions)(nil)).Elem(), + "JSONHandler": reflect.TypeOf((*q.JSONHandler)(nil)).Elem(), + "Kind": reflect.TypeOf((*q.Kind)(nil)).Elem(), + "Level": reflect.TypeOf((*q.Level)(nil)).Elem(), + "LevelVar": reflect.TypeOf((*q.LevelVar)(nil)).Elem(), + "Logger": reflect.TypeOf((*q.Logger)(nil)).Elem(), + "Record": reflect.TypeOf((*q.Record)(nil)).Elem(), + "Source": reflect.TypeOf((*q.Source)(nil)).Elem(), + "TextHandler": reflect.TypeOf((*q.TextHandler)(nil)).Elem(), + "Value": reflect.TypeOf((*q.Value)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Any": reflect.ValueOf(q.Any), + "AnyValue": reflect.ValueOf(q.AnyValue), + "Bool": reflect.ValueOf(q.Bool), + "BoolValue": reflect.ValueOf(q.BoolValue), + "Debug": reflect.ValueOf(q.Debug), + "DebugContext": reflect.ValueOf(q.DebugContext), + "Default": reflect.ValueOf(q.Default), + "Duration": reflect.ValueOf(q.Duration), + "DurationValue": reflect.ValueOf(q.DurationValue), + "Error": reflect.ValueOf(q.Error), + "ErrorContext": reflect.ValueOf(q.ErrorContext), + "Float64": reflect.ValueOf(q.Float64), + "Float64Value": reflect.ValueOf(q.Float64Value), + "Group": reflect.ValueOf(q.Group), + "GroupValue": reflect.ValueOf(q.GroupValue), + "Info": reflect.ValueOf(q.Info), + "InfoContext": reflect.ValueOf(q.InfoContext), + "Int": reflect.ValueOf(q.Int), + "Int64": reflect.ValueOf(q.Int64), + "Int64Value": reflect.ValueOf(q.Int64Value), + "IntValue": reflect.ValueOf(q.IntValue), + "Log": reflect.ValueOf(q.Log), + "LogAttrs": reflect.ValueOf(q.LogAttrs), + "New": reflect.ValueOf(q.New), + "NewJSONHandler": reflect.ValueOf(q.NewJSONHandler), + "NewLogLogger": reflect.ValueOf(q.NewLogLogger), + "NewRecord": reflect.ValueOf(q.NewRecord), + "NewTextHandler": reflect.ValueOf(q.NewTextHandler), + "SetDefault": reflect.ValueOf(q.SetDefault), + "SetLogLoggerLevel": reflect.ValueOf(q.SetLogLoggerLevel), + "String": reflect.ValueOf(q.String), + "StringValue": reflect.ValueOf(q.StringValue), + "Time": reflect.ValueOf(q.Time), + "TimeValue": reflect.ValueOf(q.TimeValue), + "Uint64": reflect.ValueOf(q.Uint64), + "Uint64Value": reflect.ValueOf(q.Uint64Value), + "Warn": reflect.ValueOf(q.Warn), + "WarnContext": reflect.ValueOf(q.WarnContext), + "With": reflect.ValueOf(q.With), + }, + TypedConsts: map[string]igop.TypedConst{ + "KindAny": {reflect.TypeOf(q.KindAny), constant.MakeInt64(int64(q.KindAny))}, + "KindBool": {reflect.TypeOf(q.KindBool), constant.MakeInt64(int64(q.KindBool))}, + "KindDuration": {reflect.TypeOf(q.KindDuration), constant.MakeInt64(int64(q.KindDuration))}, + "KindFloat64": {reflect.TypeOf(q.KindFloat64), constant.MakeInt64(int64(q.KindFloat64))}, + "KindGroup": {reflect.TypeOf(q.KindGroup), constant.MakeInt64(int64(q.KindGroup))}, + "KindInt64": {reflect.TypeOf(q.KindInt64), constant.MakeInt64(int64(q.KindInt64))}, + "KindLogValuer": {reflect.TypeOf(q.KindLogValuer), constant.MakeInt64(int64(q.KindLogValuer))}, + "KindString": {reflect.TypeOf(q.KindString), constant.MakeInt64(int64(q.KindString))}, + "KindTime": {reflect.TypeOf(q.KindTime), constant.MakeInt64(int64(q.KindTime))}, + "KindUint64": {reflect.TypeOf(q.KindUint64), constant.MakeInt64(int64(q.KindUint64))}, + "LevelDebug": {reflect.TypeOf(q.LevelDebug), constant.MakeInt64(int64(q.LevelDebug))}, + "LevelError": {reflect.TypeOf(q.LevelError), constant.MakeInt64(int64(q.LevelError))}, + "LevelInfo": {reflect.TypeOf(q.LevelInfo), constant.MakeInt64(int64(q.LevelInfo))}, + "LevelWarn": {reflect.TypeOf(q.LevelWarn), constant.MakeInt64(int64(q.LevelWarn))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "LevelKey": {"untyped string", constant.MakeString(string(q.LevelKey))}, + "MessageKey": {"untyped string", constant.MakeString(string(q.MessageKey))}, + "SourceKey": {"untyped string", constant.MakeString(string(q.SourceKey))}, + "TimeKey": {"untyped string", constant.MakeString(string(q.TimeKey))}, + }, + }) +} diff --git a/pkg/log/slog/go123_export.go b/pkg/log/slog/go123_export.go new file mode 100755 index 00000000..f71a5b4b --- /dev/null +++ b/pkg/log/slog/go123_export.go @@ -0,0 +1,130 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package slog + +import ( + q "log/slog" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "slog", + Path: "log/slog", + Deps: map[string]string{ + "bytes": "bytes", + "context": "context", + "encoding": "encoding", + "encoding/json": "json", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "log": "log", + "log/internal": "internal", + "log/slog/internal": "internal", + "log/slog/internal/buffer": "buffer", + "math": "math", + "reflect": "reflect", + "runtime": "runtime", + "slices": "slices", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "sync/atomic": "atomic", + "time": "time", + "unicode": "unicode", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Handler": reflect.TypeOf((*q.Handler)(nil)).Elem(), + "Leveler": reflect.TypeOf((*q.Leveler)(nil)).Elem(), + "LogValuer": reflect.TypeOf((*q.LogValuer)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Attr": reflect.TypeOf((*q.Attr)(nil)).Elem(), + "HandlerOptions": reflect.TypeOf((*q.HandlerOptions)(nil)).Elem(), + "JSONHandler": reflect.TypeOf((*q.JSONHandler)(nil)).Elem(), + "Kind": reflect.TypeOf((*q.Kind)(nil)).Elem(), + "Level": reflect.TypeOf((*q.Level)(nil)).Elem(), + "LevelVar": reflect.TypeOf((*q.LevelVar)(nil)).Elem(), + "Logger": reflect.TypeOf((*q.Logger)(nil)).Elem(), + "Record": reflect.TypeOf((*q.Record)(nil)).Elem(), + "Source": reflect.TypeOf((*q.Source)(nil)).Elem(), + "TextHandler": reflect.TypeOf((*q.TextHandler)(nil)).Elem(), + "Value": reflect.TypeOf((*q.Value)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Any": reflect.ValueOf(q.Any), + "AnyValue": reflect.ValueOf(q.AnyValue), + "Bool": reflect.ValueOf(q.Bool), + "BoolValue": reflect.ValueOf(q.BoolValue), + "Debug": reflect.ValueOf(q.Debug), + "DebugContext": reflect.ValueOf(q.DebugContext), + "Default": reflect.ValueOf(q.Default), + "Duration": reflect.ValueOf(q.Duration), + "DurationValue": reflect.ValueOf(q.DurationValue), + "Error": reflect.ValueOf(q.Error), + "ErrorContext": reflect.ValueOf(q.ErrorContext), + "Float64": reflect.ValueOf(q.Float64), + "Float64Value": reflect.ValueOf(q.Float64Value), + "Group": reflect.ValueOf(q.Group), + "GroupValue": reflect.ValueOf(q.GroupValue), + "Info": reflect.ValueOf(q.Info), + "InfoContext": reflect.ValueOf(q.InfoContext), + "Int": reflect.ValueOf(q.Int), + "Int64": reflect.ValueOf(q.Int64), + "Int64Value": reflect.ValueOf(q.Int64Value), + "IntValue": reflect.ValueOf(q.IntValue), + "Log": reflect.ValueOf(q.Log), + "LogAttrs": reflect.ValueOf(q.LogAttrs), + "New": reflect.ValueOf(q.New), + "NewJSONHandler": reflect.ValueOf(q.NewJSONHandler), + "NewLogLogger": reflect.ValueOf(q.NewLogLogger), + "NewRecord": reflect.ValueOf(q.NewRecord), + "NewTextHandler": reflect.ValueOf(q.NewTextHandler), + "SetDefault": reflect.ValueOf(q.SetDefault), + "SetLogLoggerLevel": reflect.ValueOf(q.SetLogLoggerLevel), + "String": reflect.ValueOf(q.String), + "StringValue": reflect.ValueOf(q.StringValue), + "Time": reflect.ValueOf(q.Time), + "TimeValue": reflect.ValueOf(q.TimeValue), + "Uint64": reflect.ValueOf(q.Uint64), + "Uint64Value": reflect.ValueOf(q.Uint64Value), + "Warn": reflect.ValueOf(q.Warn), + "WarnContext": reflect.ValueOf(q.WarnContext), + "With": reflect.ValueOf(q.With), + }, + TypedConsts: map[string]igop.TypedConst{ + "KindAny": {reflect.TypeOf(q.KindAny), constant.MakeInt64(int64(q.KindAny))}, + "KindBool": {reflect.TypeOf(q.KindBool), constant.MakeInt64(int64(q.KindBool))}, + "KindDuration": {reflect.TypeOf(q.KindDuration), constant.MakeInt64(int64(q.KindDuration))}, + "KindFloat64": {reflect.TypeOf(q.KindFloat64), constant.MakeInt64(int64(q.KindFloat64))}, + "KindGroup": {reflect.TypeOf(q.KindGroup), constant.MakeInt64(int64(q.KindGroup))}, + "KindInt64": {reflect.TypeOf(q.KindInt64), constant.MakeInt64(int64(q.KindInt64))}, + "KindLogValuer": {reflect.TypeOf(q.KindLogValuer), constant.MakeInt64(int64(q.KindLogValuer))}, + "KindString": {reflect.TypeOf(q.KindString), constant.MakeInt64(int64(q.KindString))}, + "KindTime": {reflect.TypeOf(q.KindTime), constant.MakeInt64(int64(q.KindTime))}, + "KindUint64": {reflect.TypeOf(q.KindUint64), constant.MakeInt64(int64(q.KindUint64))}, + "LevelDebug": {reflect.TypeOf(q.LevelDebug), constant.MakeInt64(int64(q.LevelDebug))}, + "LevelError": {reflect.TypeOf(q.LevelError), constant.MakeInt64(int64(q.LevelError))}, + "LevelInfo": {reflect.TypeOf(q.LevelInfo), constant.MakeInt64(int64(q.LevelInfo))}, + "LevelWarn": {reflect.TypeOf(q.LevelWarn), constant.MakeInt64(int64(q.LevelWarn))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "LevelKey": {"untyped string", constant.MakeString(string(q.LevelKey))}, + "MessageKey": {"untyped string", constant.MakeString(string(q.MessageKey))}, + "SourceKey": {"untyped string", constant.MakeString(string(q.SourceKey))}, + "TimeKey": {"untyped string", constant.MakeString(string(q.TimeKey))}, + }, + }) +} diff --git a/pkg/log/syslog/go121_export.go b/pkg/log/syslog/go121_export.go index fd980538..5060c1d5 100755 --- a/pkg/log/syslog/go121_export.go +++ b/pkg/log/syslog/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syslog diff --git a/pkg/log/syslog/go122_export.go b/pkg/log/syslog/go122_export.go new file mode 100755 index 00000000..4f5f2d61 --- /dev/null +++ b/pkg/log/syslog/go122_export.go @@ -0,0 +1,75 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syslog + +import ( + q "log/syslog" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syslog", + Path: "log/syslog", + Deps: map[string]string{ + "errors": "errors", + "fmt": "fmt", + "log": "log", + "net": "net", + "os": "os", + "strings": "strings", + "sync": "sync", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Priority": reflect.TypeOf((*q.Priority)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Dial": reflect.ValueOf(q.Dial), + "New": reflect.ValueOf(q.New), + "NewLogger": reflect.ValueOf(q.NewLogger), + }, + TypedConsts: map[string]igop.TypedConst{ + "LOG_ALERT": {reflect.TypeOf(q.LOG_ALERT), constant.MakeInt64(int64(q.LOG_ALERT))}, + "LOG_AUTH": {reflect.TypeOf(q.LOG_AUTH), constant.MakeInt64(int64(q.LOG_AUTH))}, + "LOG_AUTHPRIV": {reflect.TypeOf(q.LOG_AUTHPRIV), constant.MakeInt64(int64(q.LOG_AUTHPRIV))}, + "LOG_CRIT": {reflect.TypeOf(q.LOG_CRIT), constant.MakeInt64(int64(q.LOG_CRIT))}, + "LOG_CRON": {reflect.TypeOf(q.LOG_CRON), constant.MakeInt64(int64(q.LOG_CRON))}, + "LOG_DAEMON": {reflect.TypeOf(q.LOG_DAEMON), constant.MakeInt64(int64(q.LOG_DAEMON))}, + "LOG_DEBUG": {reflect.TypeOf(q.LOG_DEBUG), constant.MakeInt64(int64(q.LOG_DEBUG))}, + "LOG_EMERG": {reflect.TypeOf(q.LOG_EMERG), constant.MakeInt64(int64(q.LOG_EMERG))}, + "LOG_ERR": {reflect.TypeOf(q.LOG_ERR), constant.MakeInt64(int64(q.LOG_ERR))}, + "LOG_FTP": {reflect.TypeOf(q.LOG_FTP), constant.MakeInt64(int64(q.LOG_FTP))}, + "LOG_INFO": {reflect.TypeOf(q.LOG_INFO), constant.MakeInt64(int64(q.LOG_INFO))}, + "LOG_KERN": {reflect.TypeOf(q.LOG_KERN), constant.MakeInt64(int64(q.LOG_KERN))}, + "LOG_LOCAL0": {reflect.TypeOf(q.LOG_LOCAL0), constant.MakeInt64(int64(q.LOG_LOCAL0))}, + "LOG_LOCAL1": {reflect.TypeOf(q.LOG_LOCAL1), constant.MakeInt64(int64(q.LOG_LOCAL1))}, + "LOG_LOCAL2": {reflect.TypeOf(q.LOG_LOCAL2), constant.MakeInt64(int64(q.LOG_LOCAL2))}, + "LOG_LOCAL3": {reflect.TypeOf(q.LOG_LOCAL3), constant.MakeInt64(int64(q.LOG_LOCAL3))}, + "LOG_LOCAL4": {reflect.TypeOf(q.LOG_LOCAL4), constant.MakeInt64(int64(q.LOG_LOCAL4))}, + "LOG_LOCAL5": {reflect.TypeOf(q.LOG_LOCAL5), constant.MakeInt64(int64(q.LOG_LOCAL5))}, + "LOG_LOCAL6": {reflect.TypeOf(q.LOG_LOCAL6), constant.MakeInt64(int64(q.LOG_LOCAL6))}, + "LOG_LOCAL7": {reflect.TypeOf(q.LOG_LOCAL7), constant.MakeInt64(int64(q.LOG_LOCAL7))}, + "LOG_LPR": {reflect.TypeOf(q.LOG_LPR), constant.MakeInt64(int64(q.LOG_LPR))}, + "LOG_MAIL": {reflect.TypeOf(q.LOG_MAIL), constant.MakeInt64(int64(q.LOG_MAIL))}, + "LOG_NEWS": {reflect.TypeOf(q.LOG_NEWS), constant.MakeInt64(int64(q.LOG_NEWS))}, + "LOG_NOTICE": {reflect.TypeOf(q.LOG_NOTICE), constant.MakeInt64(int64(q.LOG_NOTICE))}, + "LOG_SYSLOG": {reflect.TypeOf(q.LOG_SYSLOG), constant.MakeInt64(int64(q.LOG_SYSLOG))}, + "LOG_USER": {reflect.TypeOf(q.LOG_USER), constant.MakeInt64(int64(q.LOG_USER))}, + "LOG_UUCP": {reflect.TypeOf(q.LOG_UUCP), constant.MakeInt64(int64(q.LOG_UUCP))}, + "LOG_WARNING": {reflect.TypeOf(q.LOG_WARNING), constant.MakeInt64(int64(q.LOG_WARNING))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/log/syslog/go123_export.go b/pkg/log/syslog/go123_export.go new file mode 100755 index 00000000..cd2f94fa --- /dev/null +++ b/pkg/log/syslog/go123_export.go @@ -0,0 +1,75 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syslog + +import ( + q "log/syslog" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syslog", + Path: "log/syslog", + Deps: map[string]string{ + "errors": "errors", + "fmt": "fmt", + "log": "log", + "net": "net", + "os": "os", + "strings": "strings", + "sync": "sync", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Priority": reflect.TypeOf((*q.Priority)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Dial": reflect.ValueOf(q.Dial), + "New": reflect.ValueOf(q.New), + "NewLogger": reflect.ValueOf(q.NewLogger), + }, + TypedConsts: map[string]igop.TypedConst{ + "LOG_ALERT": {reflect.TypeOf(q.LOG_ALERT), constant.MakeInt64(int64(q.LOG_ALERT))}, + "LOG_AUTH": {reflect.TypeOf(q.LOG_AUTH), constant.MakeInt64(int64(q.LOG_AUTH))}, + "LOG_AUTHPRIV": {reflect.TypeOf(q.LOG_AUTHPRIV), constant.MakeInt64(int64(q.LOG_AUTHPRIV))}, + "LOG_CRIT": {reflect.TypeOf(q.LOG_CRIT), constant.MakeInt64(int64(q.LOG_CRIT))}, + "LOG_CRON": {reflect.TypeOf(q.LOG_CRON), constant.MakeInt64(int64(q.LOG_CRON))}, + "LOG_DAEMON": {reflect.TypeOf(q.LOG_DAEMON), constant.MakeInt64(int64(q.LOG_DAEMON))}, + "LOG_DEBUG": {reflect.TypeOf(q.LOG_DEBUG), constant.MakeInt64(int64(q.LOG_DEBUG))}, + "LOG_EMERG": {reflect.TypeOf(q.LOG_EMERG), constant.MakeInt64(int64(q.LOG_EMERG))}, + "LOG_ERR": {reflect.TypeOf(q.LOG_ERR), constant.MakeInt64(int64(q.LOG_ERR))}, + "LOG_FTP": {reflect.TypeOf(q.LOG_FTP), constant.MakeInt64(int64(q.LOG_FTP))}, + "LOG_INFO": {reflect.TypeOf(q.LOG_INFO), constant.MakeInt64(int64(q.LOG_INFO))}, + "LOG_KERN": {reflect.TypeOf(q.LOG_KERN), constant.MakeInt64(int64(q.LOG_KERN))}, + "LOG_LOCAL0": {reflect.TypeOf(q.LOG_LOCAL0), constant.MakeInt64(int64(q.LOG_LOCAL0))}, + "LOG_LOCAL1": {reflect.TypeOf(q.LOG_LOCAL1), constant.MakeInt64(int64(q.LOG_LOCAL1))}, + "LOG_LOCAL2": {reflect.TypeOf(q.LOG_LOCAL2), constant.MakeInt64(int64(q.LOG_LOCAL2))}, + "LOG_LOCAL3": {reflect.TypeOf(q.LOG_LOCAL3), constant.MakeInt64(int64(q.LOG_LOCAL3))}, + "LOG_LOCAL4": {reflect.TypeOf(q.LOG_LOCAL4), constant.MakeInt64(int64(q.LOG_LOCAL4))}, + "LOG_LOCAL5": {reflect.TypeOf(q.LOG_LOCAL5), constant.MakeInt64(int64(q.LOG_LOCAL5))}, + "LOG_LOCAL6": {reflect.TypeOf(q.LOG_LOCAL6), constant.MakeInt64(int64(q.LOG_LOCAL6))}, + "LOG_LOCAL7": {reflect.TypeOf(q.LOG_LOCAL7), constant.MakeInt64(int64(q.LOG_LOCAL7))}, + "LOG_LPR": {reflect.TypeOf(q.LOG_LPR), constant.MakeInt64(int64(q.LOG_LPR))}, + "LOG_MAIL": {reflect.TypeOf(q.LOG_MAIL), constant.MakeInt64(int64(q.LOG_MAIL))}, + "LOG_NEWS": {reflect.TypeOf(q.LOG_NEWS), constant.MakeInt64(int64(q.LOG_NEWS))}, + "LOG_NOTICE": {reflect.TypeOf(q.LOG_NOTICE), constant.MakeInt64(int64(q.LOG_NOTICE))}, + "LOG_SYSLOG": {reflect.TypeOf(q.LOG_SYSLOG), constant.MakeInt64(int64(q.LOG_SYSLOG))}, + "LOG_USER": {reflect.TypeOf(q.LOG_USER), constant.MakeInt64(int64(q.LOG_USER))}, + "LOG_UUCP": {reflect.TypeOf(q.LOG_UUCP), constant.MakeInt64(int64(q.LOG_UUCP))}, + "LOG_WARNING": {reflect.TypeOf(q.LOG_WARNING), constant.MakeInt64(int64(q.LOG_WARNING))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/maps/go121_export.go b/pkg/maps/go121_export.go index 735736f3..7f533850 100755 --- a/pkg/maps/go121_export.go +++ b/pkg/maps/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package maps diff --git a/pkg/maps/go122_export.go b/pkg/maps/go122_export.go new file mode 100755 index 00000000..e806abd6 --- /dev/null +++ b/pkg/maps/go122_export.go @@ -0,0 +1,37 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package maps + +import ( + _ "maps" + "reflect" + _ "unsafe" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "maps", + Path: "maps", + Deps: map[string]string{}, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "clone": reflect.ValueOf(_clone), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + Source: source, + }) +} + +//go:linkname _clone maps.clone +func _clone(m any) any + +var source = "package maps\n\nfunc Equal[M1, M2 ~map[K]V, K, V comparable](m1 M1, m2 M2) bool {\n\tif len(m1) != len(m2) {\n\t\treturn false\n\t}\n\tfor k, v1 := range m1 {\n\t\tif v2, ok := m2[k]; !ok || v1 != v2 {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nfunc EqualFunc[M1 ~map[K]V1, M2 ~map[K]V2, K comparable, V1, V2 any](m1 M1, m2 M2, eq func(V1, V2) bool) bool {\n\tif len(m1) != len(m2) {\n\t\treturn false\n\t}\n\tfor k, v1 := range m1 {\n\t\tif v2, ok := m2[k]; !ok || !eq(v1, v2) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nfunc clone(m any) any\n\nfunc Clone[M ~map[K]V, K comparable, V any](m M) M {\n\n\tif m == nil {\n\t\treturn nil\n\t}\n\treturn clone(m).(M)\n}\n\nfunc Copy[M1 ~map[K]V, M2 ~map[K]V, K comparable, V any](dst M1, src M2) {\n\tfor k, v := range src {\n\t\tdst[k] = v\n\t}\n}\n\nfunc DeleteFunc[M ~map[K]V, K comparable, V any](m M, del func(K, V) bool) {\n\tfor k, v := range m {\n\t\tif del(k, v) {\n\t\t\tdelete(m, k)\n\t\t}\n\t}\n}\n" diff --git a/pkg/maps/go123_export.go b/pkg/maps/go123_export.go new file mode 100755 index 00000000..b684cdcb --- /dev/null +++ b/pkg/maps/go123_export.go @@ -0,0 +1,40 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package maps + +import ( + _ "maps" + "reflect" + _ "unsafe" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "maps", + Path: "maps", + Deps: map[string]string{ + "iter": "iter", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "clone": reflect.ValueOf(_clone), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + Source: source, + }) +} + +//go:linkname _clone maps.clone +func _clone(m any) any + +var source = "package maps\n\nimport (\n\t\"iter\"\n\t_ \"unsafe\"\n)\n\nfunc All[Map ~map[K]V, K comparable, V any](m Map) iter.Seq2[K, V] {\n\treturn func(yield func(K, V) bool) {\n\t\tfor k, v := range m {\n\t\t\tif !yield(k, v) {\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc Keys[Map ~map[K]V, K comparable, V any](m Map) iter.Seq[K] {\n\treturn func(yield func(K) bool) {\n\t\tfor k := range m {\n\t\t\tif !yield(k) {\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc Values[Map ~map[K]V, K comparable, V any](m Map) iter.Seq[V] {\n\treturn func(yield func(V) bool) {\n\t\tfor _, v := range m {\n\t\t\tif !yield(v) {\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc Insert[Map ~map[K]V, K comparable, V any](m Map, seq iter.Seq2[K, V]) {\n\tfor k, v := range seq {\n\t\tm[k] = v\n\t}\n}\n\nfunc Collect[K comparable, V any](seq iter.Seq2[K, V]) map[K]V {\n\tm := make(map[K]V)\n\tInsert(m, seq)\n\treturn m\n}\nfunc Equal[M1, M2 ~map[K]V, K, V comparable](m1 M1, m2 M2) bool {\n\tif len(m1) != len(m2) {\n\t\treturn false\n\t}\n\tfor k, v1 := range m1 {\n\t\tif v2, ok := m2[k]; !ok || v1 != v2 {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nfunc EqualFunc[M1 ~map[K]V1, M2 ~map[K]V2, K comparable, V1, V2 any](m1 M1, m2 M2, eq func(V1, V2) bool) bool {\n\tif len(m1) != len(m2) {\n\t\treturn false\n\t}\n\tfor k, v1 := range m1 {\n\t\tif v2, ok := m2[k]; !ok || !eq(v1, v2) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nfunc clone(m any) any\n\nfunc Clone[M ~map[K]V, K comparable, V any](m M) M {\n\n\tif m == nil {\n\t\treturn nil\n\t}\n\treturn clone(m).(M)\n}\n\nfunc Copy[M1 ~map[K]V, M2 ~map[K]V, K comparable, V any](dst M1, src M2) {\n\tfor k, v := range src {\n\t\tdst[k] = v\n\t}\n}\n\nfunc DeleteFunc[M ~map[K]V, K comparable, V any](m M, del func(K, V) bool) {\n\tfor k, v := range m {\n\t\tif del(k, v) {\n\t\t\tdelete(m, k)\n\t\t}\n\t}\n}\n" diff --git a/pkg/math/big/go121_export.go b/pkg/math/big/go121_export.go index 30bdc2bb..fc7540f9 100755 --- a/pkg/math/big/go121_export.go +++ b/pkg/math/big/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package big diff --git a/pkg/math/big/go122_export.go b/pkg/math/big/go122_export.go new file mode 100755 index 00000000..b198432f --- /dev/null +++ b/pkg/math/big/go122_export.go @@ -0,0 +1,72 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package big + +import ( + q "math/big" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "big", + Path: "math/big", + Deps: map[string]string{ + "bytes": "bytes", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "internal/cpu": "cpu", + "io": "io", + "math": "math", + "math/bits": "bits", + "math/rand": "rand", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Accuracy": reflect.TypeOf((*q.Accuracy)(nil)).Elem(), + "ErrNaN": reflect.TypeOf((*q.ErrNaN)(nil)).Elem(), + "Float": reflect.TypeOf((*q.Float)(nil)).Elem(), + "Int": reflect.TypeOf((*q.Int)(nil)).Elem(), + "Rat": reflect.TypeOf((*q.Rat)(nil)).Elem(), + "RoundingMode": reflect.TypeOf((*q.RoundingMode)(nil)).Elem(), + "Word": reflect.TypeOf((*q.Word)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Jacobi": reflect.ValueOf(q.Jacobi), + "NewFloat": reflect.ValueOf(q.NewFloat), + "NewInt": reflect.ValueOf(q.NewInt), + "NewRat": reflect.ValueOf(q.NewRat), + "ParseFloat": reflect.ValueOf(q.ParseFloat), + }, + TypedConsts: map[string]igop.TypedConst{ + "Above": {reflect.TypeOf(q.Above), constant.MakeInt64(int64(q.Above))}, + "AwayFromZero": {reflect.TypeOf(q.AwayFromZero), constant.MakeInt64(int64(q.AwayFromZero))}, + "Below": {reflect.TypeOf(q.Below), constant.MakeInt64(int64(q.Below))}, + "Exact": {reflect.TypeOf(q.Exact), constant.MakeInt64(int64(q.Exact))}, + "ToNearestAway": {reflect.TypeOf(q.ToNearestAway), constant.MakeInt64(int64(q.ToNearestAway))}, + "ToNearestEven": {reflect.TypeOf(q.ToNearestEven), constant.MakeInt64(int64(q.ToNearestEven))}, + "ToNegativeInf": {reflect.TypeOf(q.ToNegativeInf), constant.MakeInt64(int64(q.ToNegativeInf))}, + "ToPositiveInf": {reflect.TypeOf(q.ToPositiveInf), constant.MakeInt64(int64(q.ToPositiveInf))}, + "ToZero": {reflect.TypeOf(q.ToZero), constant.MakeInt64(int64(q.ToZero))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "MaxBase": {"untyped rune", constant.MakeInt64(int64(q.MaxBase))}, + "MaxExp": {"untyped int", constant.MakeInt64(int64(q.MaxExp))}, + "MaxPrec": {"untyped int", constant.MakeInt64(int64(q.MaxPrec))}, + "MinExp": {"untyped int", constant.MakeInt64(int64(q.MinExp))}, + }, + }) +} diff --git a/pkg/math/big/go123_export.go b/pkg/math/big/go123_export.go new file mode 100755 index 00000000..bf49e0f3 --- /dev/null +++ b/pkg/math/big/go123_export.go @@ -0,0 +1,73 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package big + +import ( + q "math/big" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "big", + Path: "math/big", + Deps: map[string]string{ + "bytes": "bytes", + "errors": "errors", + "fmt": "fmt", + "internal/byteorder": "byteorder", + "internal/cpu": "cpu", + "io": "io", + "math": "math", + "math/bits": "bits", + "math/rand": "rand", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Accuracy": reflect.TypeOf((*q.Accuracy)(nil)).Elem(), + "ErrNaN": reflect.TypeOf((*q.ErrNaN)(nil)).Elem(), + "Float": reflect.TypeOf((*q.Float)(nil)).Elem(), + "Int": reflect.TypeOf((*q.Int)(nil)).Elem(), + "Rat": reflect.TypeOf((*q.Rat)(nil)).Elem(), + "RoundingMode": reflect.TypeOf((*q.RoundingMode)(nil)).Elem(), + "Word": reflect.TypeOf((*q.Word)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Jacobi": reflect.ValueOf(q.Jacobi), + "NewFloat": reflect.ValueOf(q.NewFloat), + "NewInt": reflect.ValueOf(q.NewInt), + "NewRat": reflect.ValueOf(q.NewRat), + "ParseFloat": reflect.ValueOf(q.ParseFloat), + }, + TypedConsts: map[string]igop.TypedConst{ + "Above": {reflect.TypeOf(q.Above), constant.MakeInt64(int64(q.Above))}, + "AwayFromZero": {reflect.TypeOf(q.AwayFromZero), constant.MakeInt64(int64(q.AwayFromZero))}, + "Below": {reflect.TypeOf(q.Below), constant.MakeInt64(int64(q.Below))}, + "Exact": {reflect.TypeOf(q.Exact), constant.MakeInt64(int64(q.Exact))}, + "ToNearestAway": {reflect.TypeOf(q.ToNearestAway), constant.MakeInt64(int64(q.ToNearestAway))}, + "ToNearestEven": {reflect.TypeOf(q.ToNearestEven), constant.MakeInt64(int64(q.ToNearestEven))}, + "ToNegativeInf": {reflect.TypeOf(q.ToNegativeInf), constant.MakeInt64(int64(q.ToNegativeInf))}, + "ToPositiveInf": {reflect.TypeOf(q.ToPositiveInf), constant.MakeInt64(int64(q.ToPositiveInf))}, + "ToZero": {reflect.TypeOf(q.ToZero), constant.MakeInt64(int64(q.ToZero))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "MaxBase": {"untyped rune", constant.MakeInt64(int64(q.MaxBase))}, + "MaxExp": {"untyped int", constant.MakeInt64(int64(q.MaxExp))}, + "MaxPrec": {"untyped int", constant.MakeInt64(int64(q.MaxPrec))}, + "MinExp": {"untyped int", constant.MakeInt64(int64(q.MinExp))}, + }, + }) +} diff --git a/pkg/math/bits/go121_export.go b/pkg/math/bits/go121_export.go index 0d2de0a3..eac0679c 100755 --- a/pkg/math/bits/go121_export.go +++ b/pkg/math/bits/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package bits diff --git a/pkg/math/bits/go122_export.go b/pkg/math/bits/go122_export.go new file mode 100755 index 00000000..baaa5d90 --- /dev/null +++ b/pkg/math/bits/go122_export.go @@ -0,0 +1,84 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package bits + +import ( + q "math/bits" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "bits", + Path: "math/bits", + Deps: map[string]string{ + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Add": reflect.ValueOf(q.Add), + "Add32": reflect.ValueOf(q.Add32), + "Add64": reflect.ValueOf(q.Add64), + "Div": reflect.ValueOf(q.Div), + "Div32": reflect.ValueOf(q.Div32), + "Div64": reflect.ValueOf(q.Div64), + "LeadingZeros": reflect.ValueOf(q.LeadingZeros), + "LeadingZeros16": reflect.ValueOf(q.LeadingZeros16), + "LeadingZeros32": reflect.ValueOf(q.LeadingZeros32), + "LeadingZeros64": reflect.ValueOf(q.LeadingZeros64), + "LeadingZeros8": reflect.ValueOf(q.LeadingZeros8), + "Len": reflect.ValueOf(q.Len), + "Len16": reflect.ValueOf(q.Len16), + "Len32": reflect.ValueOf(q.Len32), + "Len64": reflect.ValueOf(q.Len64), + "Len8": reflect.ValueOf(q.Len8), + "Mul": reflect.ValueOf(q.Mul), + "Mul32": reflect.ValueOf(q.Mul32), + "Mul64": reflect.ValueOf(q.Mul64), + "OnesCount": reflect.ValueOf(q.OnesCount), + "OnesCount16": reflect.ValueOf(q.OnesCount16), + "OnesCount32": reflect.ValueOf(q.OnesCount32), + "OnesCount64": reflect.ValueOf(q.OnesCount64), + "OnesCount8": reflect.ValueOf(q.OnesCount8), + "Rem": reflect.ValueOf(q.Rem), + "Rem32": reflect.ValueOf(q.Rem32), + "Rem64": reflect.ValueOf(q.Rem64), + "Reverse": reflect.ValueOf(q.Reverse), + "Reverse16": reflect.ValueOf(q.Reverse16), + "Reverse32": reflect.ValueOf(q.Reverse32), + "Reverse64": reflect.ValueOf(q.Reverse64), + "Reverse8": reflect.ValueOf(q.Reverse8), + "ReverseBytes": reflect.ValueOf(q.ReverseBytes), + "ReverseBytes16": reflect.ValueOf(q.ReverseBytes16), + "ReverseBytes32": reflect.ValueOf(q.ReverseBytes32), + "ReverseBytes64": reflect.ValueOf(q.ReverseBytes64), + "RotateLeft": reflect.ValueOf(q.RotateLeft), + "RotateLeft16": reflect.ValueOf(q.RotateLeft16), + "RotateLeft32": reflect.ValueOf(q.RotateLeft32), + "RotateLeft64": reflect.ValueOf(q.RotateLeft64), + "RotateLeft8": reflect.ValueOf(q.RotateLeft8), + "Sub": reflect.ValueOf(q.Sub), + "Sub32": reflect.ValueOf(q.Sub32), + "Sub64": reflect.ValueOf(q.Sub64), + "TrailingZeros": reflect.ValueOf(q.TrailingZeros), + "TrailingZeros16": reflect.ValueOf(q.TrailingZeros16), + "TrailingZeros32": reflect.ValueOf(q.TrailingZeros32), + "TrailingZeros64": reflect.ValueOf(q.TrailingZeros64), + "TrailingZeros8": reflect.ValueOf(q.TrailingZeros8), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "UintSize": {"untyped int", constant.MakeInt64(int64(q.UintSize))}, + }, + }) +} diff --git a/pkg/math/bits/go123_export.go b/pkg/math/bits/go123_export.go new file mode 100755 index 00000000..2c9ecb1b --- /dev/null +++ b/pkg/math/bits/go123_export.go @@ -0,0 +1,84 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package bits + +import ( + q "math/bits" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "bits", + Path: "math/bits", + Deps: map[string]string{ + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Add": reflect.ValueOf(q.Add), + "Add32": reflect.ValueOf(q.Add32), + "Add64": reflect.ValueOf(q.Add64), + "Div": reflect.ValueOf(q.Div), + "Div32": reflect.ValueOf(q.Div32), + "Div64": reflect.ValueOf(q.Div64), + "LeadingZeros": reflect.ValueOf(q.LeadingZeros), + "LeadingZeros16": reflect.ValueOf(q.LeadingZeros16), + "LeadingZeros32": reflect.ValueOf(q.LeadingZeros32), + "LeadingZeros64": reflect.ValueOf(q.LeadingZeros64), + "LeadingZeros8": reflect.ValueOf(q.LeadingZeros8), + "Len": reflect.ValueOf(q.Len), + "Len16": reflect.ValueOf(q.Len16), + "Len32": reflect.ValueOf(q.Len32), + "Len64": reflect.ValueOf(q.Len64), + "Len8": reflect.ValueOf(q.Len8), + "Mul": reflect.ValueOf(q.Mul), + "Mul32": reflect.ValueOf(q.Mul32), + "Mul64": reflect.ValueOf(q.Mul64), + "OnesCount": reflect.ValueOf(q.OnesCount), + "OnesCount16": reflect.ValueOf(q.OnesCount16), + "OnesCount32": reflect.ValueOf(q.OnesCount32), + "OnesCount64": reflect.ValueOf(q.OnesCount64), + "OnesCount8": reflect.ValueOf(q.OnesCount8), + "Rem": reflect.ValueOf(q.Rem), + "Rem32": reflect.ValueOf(q.Rem32), + "Rem64": reflect.ValueOf(q.Rem64), + "Reverse": reflect.ValueOf(q.Reverse), + "Reverse16": reflect.ValueOf(q.Reverse16), + "Reverse32": reflect.ValueOf(q.Reverse32), + "Reverse64": reflect.ValueOf(q.Reverse64), + "Reverse8": reflect.ValueOf(q.Reverse8), + "ReverseBytes": reflect.ValueOf(q.ReverseBytes), + "ReverseBytes16": reflect.ValueOf(q.ReverseBytes16), + "ReverseBytes32": reflect.ValueOf(q.ReverseBytes32), + "ReverseBytes64": reflect.ValueOf(q.ReverseBytes64), + "RotateLeft": reflect.ValueOf(q.RotateLeft), + "RotateLeft16": reflect.ValueOf(q.RotateLeft16), + "RotateLeft32": reflect.ValueOf(q.RotateLeft32), + "RotateLeft64": reflect.ValueOf(q.RotateLeft64), + "RotateLeft8": reflect.ValueOf(q.RotateLeft8), + "Sub": reflect.ValueOf(q.Sub), + "Sub32": reflect.ValueOf(q.Sub32), + "Sub64": reflect.ValueOf(q.Sub64), + "TrailingZeros": reflect.ValueOf(q.TrailingZeros), + "TrailingZeros16": reflect.ValueOf(q.TrailingZeros16), + "TrailingZeros32": reflect.ValueOf(q.TrailingZeros32), + "TrailingZeros64": reflect.ValueOf(q.TrailingZeros64), + "TrailingZeros8": reflect.ValueOf(q.TrailingZeros8), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "UintSize": {"untyped int", constant.MakeInt64(int64(q.UintSize))}, + }, + }) +} diff --git a/pkg/math/cmplx/go121_export.go b/pkg/math/cmplx/go121_export.go index c9070a86..9384f1ad 100755 --- a/pkg/math/cmplx/go121_export.go +++ b/pkg/math/cmplx/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package cmplx diff --git a/pkg/math/cmplx/go122_export.go b/pkg/math/cmplx/go122_export.go new file mode 100755 index 00000000..dc39f293 --- /dev/null +++ b/pkg/math/cmplx/go122_export.go @@ -0,0 +1,60 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package cmplx + +import ( + q "math/cmplx" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "cmplx", + Path: "math/cmplx", + Deps: map[string]string{ + "math": "math", + "math/bits": "bits", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Abs": reflect.ValueOf(q.Abs), + "Acos": reflect.ValueOf(q.Acos), + "Acosh": reflect.ValueOf(q.Acosh), + "Asin": reflect.ValueOf(q.Asin), + "Asinh": reflect.ValueOf(q.Asinh), + "Atan": reflect.ValueOf(q.Atan), + "Atanh": reflect.ValueOf(q.Atanh), + "Conj": reflect.ValueOf(q.Conj), + "Cos": reflect.ValueOf(q.Cos), + "Cosh": reflect.ValueOf(q.Cosh), + "Cot": reflect.ValueOf(q.Cot), + "Exp": reflect.ValueOf(q.Exp), + "Inf": reflect.ValueOf(q.Inf), + "IsInf": reflect.ValueOf(q.IsInf), + "IsNaN": reflect.ValueOf(q.IsNaN), + "Log": reflect.ValueOf(q.Log), + "Log10": reflect.ValueOf(q.Log10), + "NaN": reflect.ValueOf(q.NaN), + "Phase": reflect.ValueOf(q.Phase), + "Polar": reflect.ValueOf(q.Polar), + "Pow": reflect.ValueOf(q.Pow), + "Rect": reflect.ValueOf(q.Rect), + "Sin": reflect.ValueOf(q.Sin), + "Sinh": reflect.ValueOf(q.Sinh), + "Sqrt": reflect.ValueOf(q.Sqrt), + "Tan": reflect.ValueOf(q.Tan), + "Tanh": reflect.ValueOf(q.Tanh), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/math/cmplx/go123_export.go b/pkg/math/cmplx/go123_export.go new file mode 100755 index 00000000..91e61b26 --- /dev/null +++ b/pkg/math/cmplx/go123_export.go @@ -0,0 +1,60 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package cmplx + +import ( + q "math/cmplx" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "cmplx", + Path: "math/cmplx", + Deps: map[string]string{ + "math": "math", + "math/bits": "bits", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Abs": reflect.ValueOf(q.Abs), + "Acos": reflect.ValueOf(q.Acos), + "Acosh": reflect.ValueOf(q.Acosh), + "Asin": reflect.ValueOf(q.Asin), + "Asinh": reflect.ValueOf(q.Asinh), + "Atan": reflect.ValueOf(q.Atan), + "Atanh": reflect.ValueOf(q.Atanh), + "Conj": reflect.ValueOf(q.Conj), + "Cos": reflect.ValueOf(q.Cos), + "Cosh": reflect.ValueOf(q.Cosh), + "Cot": reflect.ValueOf(q.Cot), + "Exp": reflect.ValueOf(q.Exp), + "Inf": reflect.ValueOf(q.Inf), + "IsInf": reflect.ValueOf(q.IsInf), + "IsNaN": reflect.ValueOf(q.IsNaN), + "Log": reflect.ValueOf(q.Log), + "Log10": reflect.ValueOf(q.Log10), + "NaN": reflect.ValueOf(q.NaN), + "Phase": reflect.ValueOf(q.Phase), + "Polar": reflect.ValueOf(q.Polar), + "Pow": reflect.ValueOf(q.Pow), + "Rect": reflect.ValueOf(q.Rect), + "Sin": reflect.ValueOf(q.Sin), + "Sinh": reflect.ValueOf(q.Sinh), + "Sqrt": reflect.ValueOf(q.Sqrt), + "Tan": reflect.ValueOf(q.Tan), + "Tanh": reflect.ValueOf(q.Tanh), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/math/go121_export.go b/pkg/math/go121_export.go index 46eab39f..1aa6a4b4 100755 --- a/pkg/math/go121_export.go +++ b/pkg/math/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package math diff --git a/pkg/math/go122_export.go b/pkg/math/go122_export.go new file mode 100755 index 00000000..ed85f0b6 --- /dev/null +++ b/pkg/math/go122_export.go @@ -0,0 +1,134 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package math + +import ( + q "math" + + "go/constant" + "go/token" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "math", + Path: "math", + Deps: map[string]string{ + "internal/cpu": "cpu", + "math/bits": "bits", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Abs": reflect.ValueOf(q.Abs), + "Acos": reflect.ValueOf(q.Acos), + "Acosh": reflect.ValueOf(q.Acosh), + "Asin": reflect.ValueOf(q.Asin), + "Asinh": reflect.ValueOf(q.Asinh), + "Atan": reflect.ValueOf(q.Atan), + "Atan2": reflect.ValueOf(q.Atan2), + "Atanh": reflect.ValueOf(q.Atanh), + "Cbrt": reflect.ValueOf(q.Cbrt), + "Ceil": reflect.ValueOf(q.Ceil), + "Copysign": reflect.ValueOf(q.Copysign), + "Cos": reflect.ValueOf(q.Cos), + "Cosh": reflect.ValueOf(q.Cosh), + "Dim": reflect.ValueOf(q.Dim), + "Erf": reflect.ValueOf(q.Erf), + "Erfc": reflect.ValueOf(q.Erfc), + "Erfcinv": reflect.ValueOf(q.Erfcinv), + "Erfinv": reflect.ValueOf(q.Erfinv), + "Exp": reflect.ValueOf(q.Exp), + "Exp2": reflect.ValueOf(q.Exp2), + "Expm1": reflect.ValueOf(q.Expm1), + "FMA": reflect.ValueOf(q.FMA), + "Float32bits": reflect.ValueOf(q.Float32bits), + "Float32frombits": reflect.ValueOf(q.Float32frombits), + "Float64bits": reflect.ValueOf(q.Float64bits), + "Float64frombits": reflect.ValueOf(q.Float64frombits), + "Floor": reflect.ValueOf(q.Floor), + "Frexp": reflect.ValueOf(q.Frexp), + "Gamma": reflect.ValueOf(q.Gamma), + "Hypot": reflect.ValueOf(q.Hypot), + "Ilogb": reflect.ValueOf(q.Ilogb), + "Inf": reflect.ValueOf(q.Inf), + "IsInf": reflect.ValueOf(q.IsInf), + "IsNaN": reflect.ValueOf(q.IsNaN), + "J0": reflect.ValueOf(q.J0), + "J1": reflect.ValueOf(q.J1), + "Jn": reflect.ValueOf(q.Jn), + "Ldexp": reflect.ValueOf(q.Ldexp), + "Lgamma": reflect.ValueOf(q.Lgamma), + "Log": reflect.ValueOf(q.Log), + "Log10": reflect.ValueOf(q.Log10), + "Log1p": reflect.ValueOf(q.Log1p), + "Log2": reflect.ValueOf(q.Log2), + "Logb": reflect.ValueOf(q.Logb), + "Max": reflect.ValueOf(q.Max), + "Min": reflect.ValueOf(q.Min), + "Mod": reflect.ValueOf(q.Mod), + "Modf": reflect.ValueOf(q.Modf), + "NaN": reflect.ValueOf(q.NaN), + "Nextafter": reflect.ValueOf(q.Nextafter), + "Nextafter32": reflect.ValueOf(q.Nextafter32), + "Pow": reflect.ValueOf(q.Pow), + "Pow10": reflect.ValueOf(q.Pow10), + "Remainder": reflect.ValueOf(q.Remainder), + "Round": reflect.ValueOf(q.Round), + "RoundToEven": reflect.ValueOf(q.RoundToEven), + "Signbit": reflect.ValueOf(q.Signbit), + "Sin": reflect.ValueOf(q.Sin), + "Sincos": reflect.ValueOf(q.Sincos), + "Sinh": reflect.ValueOf(q.Sinh), + "Sqrt": reflect.ValueOf(q.Sqrt), + "Tan": reflect.ValueOf(q.Tan), + "Tanh": reflect.ValueOf(q.Tanh), + "Trunc": reflect.ValueOf(q.Trunc), + "Y0": reflect.ValueOf(q.Y0), + "Y1": reflect.ValueOf(q.Y1), + "Yn": reflect.ValueOf(q.Yn), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "E": {"untyped float", constant.MakeFromLiteral("2.71828182845904523536028747135266249775724709369995957496696763", token.FLOAT, 0)}, + "Ln10": {"untyped float", constant.MakeFromLiteral("2.3025850929940456840179914546843642076011014886287729760333279", token.FLOAT, 0)}, + "Ln2": {"untyped float", constant.MakeFromLiteral("0.693147180559945309417232121458176568075500134360255254120680009", token.FLOAT, 0)}, + "Log10E": {"untyped float", constant.BinaryOp(constant.MakeFromLiteral("10000000000000000000000000000000000000000000000000000000000000", token.INT, 0), token.QUO, constant.MakeFromLiteral("23025850929940456840179914546843642076011014886287729760333279", token.INT, 0))}, + "Log2E": {"untyped float", constant.BinaryOp(constant.MakeFromLiteral("1000000000000000000000000000000000000000000000000000000000000000", token.INT, 0), token.QUO, constant.MakeFromLiteral("693147180559945309417232121458176568075500134360255254120680009", token.INT, 0))}, + "MaxFloat32": {"untyped float", constant.MakeFromLiteral("3.4028234663852885981170418348451692544e+38", token.FLOAT, 0)}, + "MaxFloat64": {"untyped float", constant.MakeFromLiteral("1.79769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368e+308", token.FLOAT, 0)}, + "MaxInt": {"untyped int", constant.MakeInt64(int64(q.MaxInt))}, + "MaxInt16": {"untyped int", constant.MakeInt64(int64(q.MaxInt16))}, + "MaxInt32": {"untyped int", constant.MakeInt64(int64(q.MaxInt32))}, + "MaxInt64": {"untyped int", constant.MakeInt64(int64(q.MaxInt64))}, + "MaxInt8": {"untyped int", constant.MakeInt64(int64(q.MaxInt8))}, + "MaxUint": {"untyped int", constant.MakeUint64(uint64(q.MaxUint))}, + "MaxUint16": {"untyped int", constant.MakeInt64(int64(q.MaxUint16))}, + "MaxUint32": {"untyped int", constant.MakeInt64(int64(q.MaxUint32))}, + "MaxUint64": {"untyped int", constant.MakeUint64(uint64(q.MaxUint64))}, + "MaxUint8": {"untyped int", constant.MakeInt64(int64(q.MaxUint8))}, + "MinInt": {"untyped int", constant.MakeInt64(int64(q.MinInt))}, + "MinInt16": {"untyped int", constant.MakeInt64(int64(q.MinInt16))}, + "MinInt32": {"untyped int", constant.MakeInt64(int64(q.MinInt32))}, + "MinInt64": {"untyped int", constant.MakeInt64(int64(q.MinInt64))}, + "MinInt8": {"untyped int", constant.MakeInt64(int64(q.MinInt8))}, + "Phi": {"untyped float", constant.MakeFromLiteral("1.61803398874989484820458683436563811772030917980576286213544862", token.FLOAT, 0)}, + "Pi": {"untyped float", constant.MakeFromLiteral("3.14159265358979323846264338327950288419716939937510582097494459", token.FLOAT, 0)}, + "SmallestNonzeroFloat32": {"untyped float", constant.BinaryOp(constant.MakeFromLiteral("1", token.INT, 0), token.QUO, constant.MakeFromLiteral("713623846352979940529142984724747568191373312", token.INT, 0))}, + "SmallestNonzeroFloat64": {"untyped float", constant.BinaryOp(constant.MakeFromLiteral("1", token.INT, 0), token.QUO, constant.MakeFromLiteral("202402253307310618352495346718917307049556649764142118356901358027430339567995346891960383701437124495187077864316811911389808737385793476867013399940738509921517424276566361364466907742093216341239767678472745068562007483424692698618103355649159556340810056512358769552333414615230502532186327508646006263307707741093494784", token.INT, 0))}, + "Sqrt2": {"untyped float", constant.MakeFromLiteral("1.41421356237309504880168872420969807856967187537694807317667974", token.FLOAT, 0)}, + "SqrtE": {"untyped float", constant.MakeFromLiteral("1.64872127070012814684865078781416357165377610071014801157507931", token.FLOAT, 0)}, + "SqrtPhi": {"untyped float", constant.MakeFromLiteral("1.27201964951406896425242246173749149171560804184009624861664038", token.FLOAT, 0)}, + "SqrtPi": {"untyped float", constant.MakeFromLiteral("1.77245385090551602729816748334114518279754945612238712821380779", token.FLOAT, 0)}, + }, + }) +} diff --git a/pkg/math/go123_export.go b/pkg/math/go123_export.go new file mode 100755 index 00000000..67bf0d26 --- /dev/null +++ b/pkg/math/go123_export.go @@ -0,0 +1,134 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package math + +import ( + q "math" + + "go/constant" + "go/token" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "math", + Path: "math", + Deps: map[string]string{ + "internal/cpu": "cpu", + "math/bits": "bits", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Abs": reflect.ValueOf(q.Abs), + "Acos": reflect.ValueOf(q.Acos), + "Acosh": reflect.ValueOf(q.Acosh), + "Asin": reflect.ValueOf(q.Asin), + "Asinh": reflect.ValueOf(q.Asinh), + "Atan": reflect.ValueOf(q.Atan), + "Atan2": reflect.ValueOf(q.Atan2), + "Atanh": reflect.ValueOf(q.Atanh), + "Cbrt": reflect.ValueOf(q.Cbrt), + "Ceil": reflect.ValueOf(q.Ceil), + "Copysign": reflect.ValueOf(q.Copysign), + "Cos": reflect.ValueOf(q.Cos), + "Cosh": reflect.ValueOf(q.Cosh), + "Dim": reflect.ValueOf(q.Dim), + "Erf": reflect.ValueOf(q.Erf), + "Erfc": reflect.ValueOf(q.Erfc), + "Erfcinv": reflect.ValueOf(q.Erfcinv), + "Erfinv": reflect.ValueOf(q.Erfinv), + "Exp": reflect.ValueOf(q.Exp), + "Exp2": reflect.ValueOf(q.Exp2), + "Expm1": reflect.ValueOf(q.Expm1), + "FMA": reflect.ValueOf(q.FMA), + "Float32bits": reflect.ValueOf(q.Float32bits), + "Float32frombits": reflect.ValueOf(q.Float32frombits), + "Float64bits": reflect.ValueOf(q.Float64bits), + "Float64frombits": reflect.ValueOf(q.Float64frombits), + "Floor": reflect.ValueOf(q.Floor), + "Frexp": reflect.ValueOf(q.Frexp), + "Gamma": reflect.ValueOf(q.Gamma), + "Hypot": reflect.ValueOf(q.Hypot), + "Ilogb": reflect.ValueOf(q.Ilogb), + "Inf": reflect.ValueOf(q.Inf), + "IsInf": reflect.ValueOf(q.IsInf), + "IsNaN": reflect.ValueOf(q.IsNaN), + "J0": reflect.ValueOf(q.J0), + "J1": reflect.ValueOf(q.J1), + "Jn": reflect.ValueOf(q.Jn), + "Ldexp": reflect.ValueOf(q.Ldexp), + "Lgamma": reflect.ValueOf(q.Lgamma), + "Log": reflect.ValueOf(q.Log), + "Log10": reflect.ValueOf(q.Log10), + "Log1p": reflect.ValueOf(q.Log1p), + "Log2": reflect.ValueOf(q.Log2), + "Logb": reflect.ValueOf(q.Logb), + "Max": reflect.ValueOf(q.Max), + "Min": reflect.ValueOf(q.Min), + "Mod": reflect.ValueOf(q.Mod), + "Modf": reflect.ValueOf(q.Modf), + "NaN": reflect.ValueOf(q.NaN), + "Nextafter": reflect.ValueOf(q.Nextafter), + "Nextafter32": reflect.ValueOf(q.Nextafter32), + "Pow": reflect.ValueOf(q.Pow), + "Pow10": reflect.ValueOf(q.Pow10), + "Remainder": reflect.ValueOf(q.Remainder), + "Round": reflect.ValueOf(q.Round), + "RoundToEven": reflect.ValueOf(q.RoundToEven), + "Signbit": reflect.ValueOf(q.Signbit), + "Sin": reflect.ValueOf(q.Sin), + "Sincos": reflect.ValueOf(q.Sincos), + "Sinh": reflect.ValueOf(q.Sinh), + "Sqrt": reflect.ValueOf(q.Sqrt), + "Tan": reflect.ValueOf(q.Tan), + "Tanh": reflect.ValueOf(q.Tanh), + "Trunc": reflect.ValueOf(q.Trunc), + "Y0": reflect.ValueOf(q.Y0), + "Y1": reflect.ValueOf(q.Y1), + "Yn": reflect.ValueOf(q.Yn), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "E": {"untyped float", constant.MakeFromLiteral("2.71828182845904523536028747135266249775724709369995957496696763", token.FLOAT, 0)}, + "Ln10": {"untyped float", constant.MakeFromLiteral("2.3025850929940456840179914546843642076011014886287729760333279", token.FLOAT, 0)}, + "Ln2": {"untyped float", constant.MakeFromLiteral("0.693147180559945309417232121458176568075500134360255254120680009", token.FLOAT, 0)}, + "Log10E": {"untyped float", constant.BinaryOp(constant.MakeFromLiteral("10000000000000000000000000000000000000000000000000000000000000", token.INT, 0), token.QUO, constant.MakeFromLiteral("23025850929940456840179914546843642076011014886287729760333279", token.INT, 0))}, + "Log2E": {"untyped float", constant.BinaryOp(constant.MakeFromLiteral("1000000000000000000000000000000000000000000000000000000000000000", token.INT, 0), token.QUO, constant.MakeFromLiteral("693147180559945309417232121458176568075500134360255254120680009", token.INT, 0))}, + "MaxFloat32": {"untyped float", constant.MakeFromLiteral("3.4028234663852885981170418348451692544e+38", token.FLOAT, 0)}, + "MaxFloat64": {"untyped float", constant.MakeFromLiteral("1.79769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368e+308", token.FLOAT, 0)}, + "MaxInt": {"untyped int", constant.MakeInt64(int64(q.MaxInt))}, + "MaxInt16": {"untyped int", constant.MakeInt64(int64(q.MaxInt16))}, + "MaxInt32": {"untyped int", constant.MakeInt64(int64(q.MaxInt32))}, + "MaxInt64": {"untyped int", constant.MakeInt64(int64(q.MaxInt64))}, + "MaxInt8": {"untyped int", constant.MakeInt64(int64(q.MaxInt8))}, + "MaxUint": {"untyped int", constant.MakeUint64(uint64(q.MaxUint))}, + "MaxUint16": {"untyped int", constant.MakeInt64(int64(q.MaxUint16))}, + "MaxUint32": {"untyped int", constant.MakeInt64(int64(q.MaxUint32))}, + "MaxUint64": {"untyped int", constant.MakeUint64(uint64(q.MaxUint64))}, + "MaxUint8": {"untyped int", constant.MakeInt64(int64(q.MaxUint8))}, + "MinInt": {"untyped int", constant.MakeInt64(int64(q.MinInt))}, + "MinInt16": {"untyped int", constant.MakeInt64(int64(q.MinInt16))}, + "MinInt32": {"untyped int", constant.MakeInt64(int64(q.MinInt32))}, + "MinInt64": {"untyped int", constant.MakeInt64(int64(q.MinInt64))}, + "MinInt8": {"untyped int", constant.MakeInt64(int64(q.MinInt8))}, + "Phi": {"untyped float", constant.MakeFromLiteral("1.61803398874989484820458683436563811772030917980576286213544862", token.FLOAT, 0)}, + "Pi": {"untyped float", constant.MakeFromLiteral("3.14159265358979323846264338327950288419716939937510582097494459", token.FLOAT, 0)}, + "SmallestNonzeroFloat32": {"untyped float", constant.BinaryOp(constant.MakeFromLiteral("1", token.INT, 0), token.QUO, constant.MakeFromLiteral("713623846352979940529142984724747568191373312", token.INT, 0))}, + "SmallestNonzeroFloat64": {"untyped float", constant.BinaryOp(constant.MakeFromLiteral("1", token.INT, 0), token.QUO, constant.MakeFromLiteral("202402253307310618352495346718917307049556649764142118356901358027430339567995346891960383701437124495187077864316811911389808737385793476867013399940738509921517424276566361364466907742093216341239767678472745068562007483424692698618103355649159556340810056512358769552333414615230502532186327508646006263307707741093494784", token.INT, 0))}, + "Sqrt2": {"untyped float", constant.MakeFromLiteral("1.41421356237309504880168872420969807856967187537694807317667974", token.FLOAT, 0)}, + "SqrtE": {"untyped float", constant.MakeFromLiteral("1.64872127070012814684865078781416357165377610071014801157507931", token.FLOAT, 0)}, + "SqrtPhi": {"untyped float", constant.MakeFromLiteral("1.27201964951406896425242246173749149171560804184009624861664038", token.FLOAT, 0)}, + "SqrtPi": {"untyped float", constant.MakeFromLiteral("1.77245385090551602729816748334114518279754945612238712821380779", token.FLOAT, 0)}, + }, + }) +} diff --git a/pkg/math/rand/go121_export.go b/pkg/math/rand/go121_export.go index 85fe331c..05a1f64d 100755 --- a/pkg/math/rand/go121_export.go +++ b/pkg/math/rand/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package rand diff --git a/pkg/math/rand/go122_export.go b/pkg/math/rand/go122_export.go new file mode 100755 index 00000000..36de390a --- /dev/null +++ b/pkg/math/rand/go122_export.go @@ -0,0 +1,61 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package rand + +import ( + q "math/rand" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "rand", + Path: "math/rand", + Deps: map[string]string{ + "internal/godebug": "godebug", + "math": "math", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Source": reflect.TypeOf((*q.Source)(nil)).Elem(), + "Source64": reflect.TypeOf((*q.Source64)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Rand": reflect.TypeOf((*q.Rand)(nil)).Elem(), + "Zipf": reflect.TypeOf((*q.Zipf)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "ExpFloat64": reflect.ValueOf(q.ExpFloat64), + "Float32": reflect.ValueOf(q.Float32), + "Float64": reflect.ValueOf(q.Float64), + "Int": reflect.ValueOf(q.Int), + "Int31": reflect.ValueOf(q.Int31), + "Int31n": reflect.ValueOf(q.Int31n), + "Int63": reflect.ValueOf(q.Int63), + "Int63n": reflect.ValueOf(q.Int63n), + "Intn": reflect.ValueOf(q.Intn), + "New": reflect.ValueOf(q.New), + "NewSource": reflect.ValueOf(q.NewSource), + "NewZipf": reflect.ValueOf(q.NewZipf), + "NormFloat64": reflect.ValueOf(q.NormFloat64), + "Perm": reflect.ValueOf(q.Perm), + "Read": reflect.ValueOf(q.Read), + "Seed": reflect.ValueOf(q.Seed), + "Shuffle": reflect.ValueOf(q.Shuffle), + "Uint32": reflect.ValueOf(q.Uint32), + "Uint64": reflect.ValueOf(q.Uint64), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/math/rand/go123_export.go b/pkg/math/rand/go123_export.go new file mode 100755 index 00000000..5021d511 --- /dev/null +++ b/pkg/math/rand/go123_export.go @@ -0,0 +1,61 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package rand + +import ( + q "math/rand" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "rand", + Path: "math/rand", + Deps: map[string]string{ + "internal/godebug": "godebug", + "math": "math", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Source": reflect.TypeOf((*q.Source)(nil)).Elem(), + "Source64": reflect.TypeOf((*q.Source64)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Rand": reflect.TypeOf((*q.Rand)(nil)).Elem(), + "Zipf": reflect.TypeOf((*q.Zipf)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "ExpFloat64": reflect.ValueOf(q.ExpFloat64), + "Float32": reflect.ValueOf(q.Float32), + "Float64": reflect.ValueOf(q.Float64), + "Int": reflect.ValueOf(q.Int), + "Int31": reflect.ValueOf(q.Int31), + "Int31n": reflect.ValueOf(q.Int31n), + "Int63": reflect.ValueOf(q.Int63), + "Int63n": reflect.ValueOf(q.Int63n), + "Intn": reflect.ValueOf(q.Intn), + "New": reflect.ValueOf(q.New), + "NewSource": reflect.ValueOf(q.NewSource), + "NewZipf": reflect.ValueOf(q.NewZipf), + "NormFloat64": reflect.ValueOf(q.NormFloat64), + "Perm": reflect.ValueOf(q.Perm), + "Read": reflect.ValueOf(q.Read), + "Seed": reflect.ValueOf(q.Seed), + "Shuffle": reflect.ValueOf(q.Shuffle), + "Uint32": reflect.ValueOf(q.Uint32), + "Uint64": reflect.ValueOf(q.Uint64), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/math/rand/v2/go122_export.go b/pkg/math/rand/v2/go122_export.go new file mode 100755 index 00000000..796492d3 --- /dev/null +++ b/pkg/math/rand/v2/go122_export.go @@ -0,0 +1,64 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package rand + +import ( + q "math/rand/v2" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "rand", + Path: "math/rand/v2", + Deps: map[string]string{ + "errors": "errors", + "internal/chacha8rand": "chacha8rand", + "math": "math", + "math/bits": "bits", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Source": reflect.TypeOf((*q.Source)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "ChaCha8": reflect.TypeOf((*q.ChaCha8)(nil)).Elem(), + "PCG": reflect.TypeOf((*q.PCG)(nil)).Elem(), + "Rand": reflect.TypeOf((*q.Rand)(nil)).Elem(), + "Zipf": reflect.TypeOf((*q.Zipf)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "ExpFloat64": reflect.ValueOf(q.ExpFloat64), + "Float32": reflect.ValueOf(q.Float32), + "Float64": reflect.ValueOf(q.Float64), + "Int": reflect.ValueOf(q.Int), + "Int32": reflect.ValueOf(q.Int32), + "Int32N": reflect.ValueOf(q.Int32N), + "Int64": reflect.ValueOf(q.Int64), + "Int64N": reflect.ValueOf(q.Int64N), + "IntN": reflect.ValueOf(q.IntN), + "New": reflect.ValueOf(q.New), + "NewChaCha8": reflect.ValueOf(q.NewChaCha8), + "NewPCG": reflect.ValueOf(q.NewPCG), + "NewZipf": reflect.ValueOf(q.NewZipf), + "NormFloat64": reflect.ValueOf(q.NormFloat64), + "Perm": reflect.ValueOf(q.Perm), + "Shuffle": reflect.ValueOf(q.Shuffle), + "Uint32": reflect.ValueOf(q.Uint32), + "Uint32N": reflect.ValueOf(q.Uint32N), + "Uint64": reflect.ValueOf(q.Uint64), + "Uint64N": reflect.ValueOf(q.Uint64N), + "UintN": reflect.ValueOf(q.UintN), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/math/rand/v2/go123_export.go b/pkg/math/rand/v2/go123_export.go new file mode 100755 index 00000000..2ea045c4 --- /dev/null +++ b/pkg/math/rand/v2/go123_export.go @@ -0,0 +1,66 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package rand + +import ( + q "math/rand/v2" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "rand", + Path: "math/rand/v2", + Deps: map[string]string{ + "errors": "errors", + "internal/byteorder": "byteorder", + "internal/chacha8rand": "chacha8rand", + "math": "math", + "math/bits": "bits", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Source": reflect.TypeOf((*q.Source)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "ChaCha8": reflect.TypeOf((*q.ChaCha8)(nil)).Elem(), + "PCG": reflect.TypeOf((*q.PCG)(nil)).Elem(), + "Rand": reflect.TypeOf((*q.Rand)(nil)).Elem(), + "Zipf": reflect.TypeOf((*q.Zipf)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "ExpFloat64": reflect.ValueOf(q.ExpFloat64), + "Float32": reflect.ValueOf(q.Float32), + "Float64": reflect.ValueOf(q.Float64), + "Int": reflect.ValueOf(q.Int), + "Int32": reflect.ValueOf(q.Int32), + "Int32N": reflect.ValueOf(q.Int32N), + "Int64": reflect.ValueOf(q.Int64), + "Int64N": reflect.ValueOf(q.Int64N), + "IntN": reflect.ValueOf(q.IntN), + "New": reflect.ValueOf(q.New), + "NewChaCha8": reflect.ValueOf(q.NewChaCha8), + "NewPCG": reflect.ValueOf(q.NewPCG), + "NewZipf": reflect.ValueOf(q.NewZipf), + "NormFloat64": reflect.ValueOf(q.NormFloat64), + "Perm": reflect.ValueOf(q.Perm), + "Shuffle": reflect.ValueOf(q.Shuffle), + "Uint": reflect.ValueOf(q.Uint), + "Uint32": reflect.ValueOf(q.Uint32), + "Uint32N": reflect.ValueOf(q.Uint32N), + "Uint64": reflect.ValueOf(q.Uint64), + "Uint64N": reflect.ValueOf(q.Uint64N), + "UintN": reflect.ValueOf(q.UintN), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/mime/go121_export.go b/pkg/mime/go121_export.go index c58ae951..22e0b15d 100755 --- a/pkg/mime/go121_export.go +++ b/pkg/mime/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package mime diff --git a/pkg/mime/go122_export.go b/pkg/mime/go122_export.go new file mode 100755 index 00000000..9d3ab4b2 --- /dev/null +++ b/pkg/mime/go122_export.go @@ -0,0 +1,57 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package mime + +import ( + q "mime" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "mime", + Path: "mime", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "encoding/base64": "base64", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "os": "os", + "sort": "sort", + "strings": "strings", + "sync": "sync", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "WordDecoder": reflect.TypeOf((*q.WordDecoder)(nil)).Elem(), + "WordEncoder": reflect.TypeOf((*q.WordEncoder)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrInvalidMediaParameter": reflect.ValueOf(&q.ErrInvalidMediaParameter), + }, + Funcs: map[string]reflect.Value{ + "AddExtensionType": reflect.ValueOf(q.AddExtensionType), + "ExtensionsByType": reflect.ValueOf(q.ExtensionsByType), + "FormatMediaType": reflect.ValueOf(q.FormatMediaType), + "ParseMediaType": reflect.ValueOf(q.ParseMediaType), + "TypeByExtension": reflect.ValueOf(q.TypeByExtension), + }, + TypedConsts: map[string]igop.TypedConst{ + "BEncoding": {reflect.TypeOf(q.BEncoding), constant.MakeInt64(int64(q.BEncoding))}, + "QEncoding": {reflect.TypeOf(q.QEncoding), constant.MakeInt64(int64(q.QEncoding))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/mime/go123_export.go b/pkg/mime/go123_export.go new file mode 100755 index 00000000..d50b7ac9 --- /dev/null +++ b/pkg/mime/go123_export.go @@ -0,0 +1,57 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package mime + +import ( + q "mime" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "mime", + Path: "mime", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "encoding/base64": "base64", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "os": "os", + "slices": "slices", + "strings": "strings", + "sync": "sync", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "WordDecoder": reflect.TypeOf((*q.WordDecoder)(nil)).Elem(), + "WordEncoder": reflect.TypeOf((*q.WordEncoder)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrInvalidMediaParameter": reflect.ValueOf(&q.ErrInvalidMediaParameter), + }, + Funcs: map[string]reflect.Value{ + "AddExtensionType": reflect.ValueOf(q.AddExtensionType), + "ExtensionsByType": reflect.ValueOf(q.ExtensionsByType), + "FormatMediaType": reflect.ValueOf(q.FormatMediaType), + "ParseMediaType": reflect.ValueOf(q.ParseMediaType), + "TypeByExtension": reflect.ValueOf(q.TypeByExtension), + }, + TypedConsts: map[string]igop.TypedConst{ + "BEncoding": {reflect.TypeOf(q.BEncoding), constant.MakeInt64(int64(q.BEncoding))}, + "QEncoding": {reflect.TypeOf(q.QEncoding), constant.MakeInt64(int64(q.QEncoding))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/mime/multipart/go121_export.go b/pkg/mime/multipart/go121_export.go index 73d3c7aa..e9288dbd 100755 --- a/pkg/mime/multipart/go121_export.go +++ b/pkg/mime/multipart/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package multipart diff --git a/pkg/mime/multipart/go122_export.go b/pkg/mime/multipart/go122_export.go new file mode 100755 index 00000000..dbd92fb2 --- /dev/null +++ b/pkg/mime/multipart/go122_export.go @@ -0,0 +1,60 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package multipart + +import ( + q "mime/multipart" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "multipart", + Path: "mime/multipart", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "crypto/rand": "rand", + "errors": "errors", + "fmt": "fmt", + "internal/godebug": "godebug", + "io": "io", + "math": "math", + "mime": "mime", + "mime/quotedprintable": "quotedprintable", + "net/textproto": "textproto", + "os": "os", + "path/filepath": "filepath", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "FileHeader": reflect.TypeOf((*q.FileHeader)(nil)).Elem(), + "Form": reflect.TypeOf((*q.Form)(nil)).Elem(), + "Part": reflect.TypeOf((*q.Part)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrMessageTooLarge": reflect.ValueOf(&q.ErrMessageTooLarge), + }, + Funcs: map[string]reflect.Value{ + "NewReader": reflect.ValueOf(q.NewReader), + "NewWriter": reflect.ValueOf(q.NewWriter), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/mime/multipart/go123_export.go b/pkg/mime/multipart/go123_export.go new file mode 100755 index 00000000..0e0f3c19 --- /dev/null +++ b/pkg/mime/multipart/go123_export.go @@ -0,0 +1,60 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package multipart + +import ( + q "mime/multipart" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "multipart", + Path: "mime/multipart", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "crypto/rand": "rand", + "errors": "errors", + "fmt": "fmt", + "internal/godebug": "godebug", + "io": "io", + "math": "math", + "mime": "mime", + "mime/quotedprintable": "quotedprintable", + "net/textproto": "textproto", + "os": "os", + "path/filepath": "filepath", + "slices": "slices", + "strconv": "strconv", + "strings": "strings", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "FileHeader": reflect.TypeOf((*q.FileHeader)(nil)).Elem(), + "Form": reflect.TypeOf((*q.Form)(nil)).Elem(), + "Part": reflect.TypeOf((*q.Part)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrMessageTooLarge": reflect.ValueOf(&q.ErrMessageTooLarge), + }, + Funcs: map[string]reflect.Value{ + "NewReader": reflect.ValueOf(q.NewReader), + "NewWriter": reflect.ValueOf(q.NewWriter), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/mime/quotedprintable/go121_export.go b/pkg/mime/quotedprintable/go121_export.go index 1800a8d4..c0fe62d7 100755 --- a/pkg/mime/quotedprintable/go121_export.go +++ b/pkg/mime/quotedprintable/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package quotedprintable diff --git a/pkg/mime/quotedprintable/go122_export.go b/pkg/mime/quotedprintable/go122_export.go new file mode 100755 index 00000000..dbe52700 --- /dev/null +++ b/pkg/mime/quotedprintable/go122_export.go @@ -0,0 +1,40 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package quotedprintable + +import ( + q "mime/quotedprintable" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "quotedprintable", + Path: "mime/quotedprintable", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "fmt": "fmt", + "io": "io", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewReader": reflect.ValueOf(q.NewReader), + "NewWriter": reflect.ValueOf(q.NewWriter), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/mime/quotedprintable/go123_export.go b/pkg/mime/quotedprintable/go123_export.go new file mode 100755 index 00000000..f758fe9e --- /dev/null +++ b/pkg/mime/quotedprintable/go123_export.go @@ -0,0 +1,40 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package quotedprintable + +import ( + q "mime/quotedprintable" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "quotedprintable", + Path: "mime/quotedprintable", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "fmt": "fmt", + "io": "io", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewReader": reflect.ValueOf(q.NewReader), + "NewWriter": reflect.ValueOf(q.NewWriter), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/go121_export.go b/pkg/net/go121_export.go index 2f9803d2..b72a2e8f 100755 --- a/pkg/net/go121_export.go +++ b/pkg/net/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package net diff --git a/pkg/net/go122_export.go b/pkg/net/go122_export.go new file mode 100755 index 00000000..c147720d --- /dev/null +++ b/pkg/net/go122_export.go @@ -0,0 +1,161 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package net + +import ( + q "net" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "net", + Path: "net", + Deps: map[string]string{ + "context": "context", + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/godebug": "godebug", + "internal/itoa": "itoa", + "internal/nettrace": "nettrace", + "internal/poll": "poll", + "internal/singleflight": "singleflight", + "internal/syscall/unix": "unix", + "io": "io", + "io/fs": "fs", + "net/netip": "netip", + "os": "os", + "runtime": "runtime", + "runtime/cgo": "cgo", + "sort": "sort", + "sync": "sync", + "sync/atomic": "atomic", + "syscall": "syscall", + "time": "time", + "unsafe": "unsafe", + "vendor/golang.org/x/net/dns/dnsmessage": "dnsmessage", + "vendor/golang.org/x/net/route": "route", + }, + Interfaces: map[string]reflect.Type{ + "Addr": reflect.TypeOf((*q.Addr)(nil)).Elem(), + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), + "Listener": reflect.TypeOf((*q.Listener)(nil)).Elem(), + "PacketConn": reflect.TypeOf((*q.PacketConn)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "AddrError": reflect.TypeOf((*q.AddrError)(nil)).Elem(), + "Buffers": reflect.TypeOf((*q.Buffers)(nil)).Elem(), + "DNSConfigError": reflect.TypeOf((*q.DNSConfigError)(nil)).Elem(), + "DNSError": reflect.TypeOf((*q.DNSError)(nil)).Elem(), + "Dialer": reflect.TypeOf((*q.Dialer)(nil)).Elem(), + "Flags": reflect.TypeOf((*q.Flags)(nil)).Elem(), + "HardwareAddr": reflect.TypeOf((*q.HardwareAddr)(nil)).Elem(), + "IP": reflect.TypeOf((*q.IP)(nil)).Elem(), + "IPAddr": reflect.TypeOf((*q.IPAddr)(nil)).Elem(), + "IPConn": reflect.TypeOf((*q.IPConn)(nil)).Elem(), + "IPMask": reflect.TypeOf((*q.IPMask)(nil)).Elem(), + "IPNet": reflect.TypeOf((*q.IPNet)(nil)).Elem(), + "Interface": reflect.TypeOf((*q.Interface)(nil)).Elem(), + "InvalidAddrError": reflect.TypeOf((*q.InvalidAddrError)(nil)).Elem(), + "ListenConfig": reflect.TypeOf((*q.ListenConfig)(nil)).Elem(), + "MX": reflect.TypeOf((*q.MX)(nil)).Elem(), + "NS": reflect.TypeOf((*q.NS)(nil)).Elem(), + "OpError": reflect.TypeOf((*q.OpError)(nil)).Elem(), + "ParseError": reflect.TypeOf((*q.ParseError)(nil)).Elem(), + "Resolver": reflect.TypeOf((*q.Resolver)(nil)).Elem(), + "SRV": reflect.TypeOf((*q.SRV)(nil)).Elem(), + "TCPAddr": reflect.TypeOf((*q.TCPAddr)(nil)).Elem(), + "TCPConn": reflect.TypeOf((*q.TCPConn)(nil)).Elem(), + "TCPListener": reflect.TypeOf((*q.TCPListener)(nil)).Elem(), + "UDPAddr": reflect.TypeOf((*q.UDPAddr)(nil)).Elem(), + "UDPConn": reflect.TypeOf((*q.UDPConn)(nil)).Elem(), + "UnixAddr": reflect.TypeOf((*q.UnixAddr)(nil)).Elem(), + "UnixConn": reflect.TypeOf((*q.UnixConn)(nil)).Elem(), + "UnixListener": reflect.TypeOf((*q.UnixListener)(nil)).Elem(), + "UnknownNetworkError": reflect.TypeOf((*q.UnknownNetworkError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "DefaultResolver": reflect.ValueOf(&q.DefaultResolver), + "ErrClosed": reflect.ValueOf(&q.ErrClosed), + "ErrWriteToConnected": reflect.ValueOf(&q.ErrWriteToConnected), + "IPv4allrouter": reflect.ValueOf(&q.IPv4allrouter), + "IPv4allsys": reflect.ValueOf(&q.IPv4allsys), + "IPv4bcast": reflect.ValueOf(&q.IPv4bcast), + "IPv4zero": reflect.ValueOf(&q.IPv4zero), + "IPv6interfacelocalallnodes": reflect.ValueOf(&q.IPv6interfacelocalallnodes), + "IPv6linklocalallnodes": reflect.ValueOf(&q.IPv6linklocalallnodes), + "IPv6linklocalallrouters": reflect.ValueOf(&q.IPv6linklocalallrouters), + "IPv6loopback": reflect.ValueOf(&q.IPv6loopback), + "IPv6unspecified": reflect.ValueOf(&q.IPv6unspecified), + "IPv6zero": reflect.ValueOf(&q.IPv6zero), + }, + Funcs: map[string]reflect.Value{ + "CIDRMask": reflect.ValueOf(q.CIDRMask), + "Dial": reflect.ValueOf(q.Dial), + "DialIP": reflect.ValueOf(q.DialIP), + "DialTCP": reflect.ValueOf(q.DialTCP), + "DialTimeout": reflect.ValueOf(q.DialTimeout), + "DialUDP": reflect.ValueOf(q.DialUDP), + "DialUnix": reflect.ValueOf(q.DialUnix), + "FileConn": reflect.ValueOf(q.FileConn), + "FileListener": reflect.ValueOf(q.FileListener), + "FilePacketConn": reflect.ValueOf(q.FilePacketConn), + "IPv4": reflect.ValueOf(q.IPv4), + "IPv4Mask": reflect.ValueOf(q.IPv4Mask), + "InterfaceAddrs": reflect.ValueOf(q.InterfaceAddrs), + "InterfaceByIndex": reflect.ValueOf(q.InterfaceByIndex), + "InterfaceByName": reflect.ValueOf(q.InterfaceByName), + "Interfaces": reflect.ValueOf(q.Interfaces), + "JoinHostPort": reflect.ValueOf(q.JoinHostPort), + "Listen": reflect.ValueOf(q.Listen), + "ListenIP": reflect.ValueOf(q.ListenIP), + "ListenMulticastUDP": reflect.ValueOf(q.ListenMulticastUDP), + "ListenPacket": reflect.ValueOf(q.ListenPacket), + "ListenTCP": reflect.ValueOf(q.ListenTCP), + "ListenUDP": reflect.ValueOf(q.ListenUDP), + "ListenUnix": reflect.ValueOf(q.ListenUnix), + "ListenUnixgram": reflect.ValueOf(q.ListenUnixgram), + "LookupAddr": reflect.ValueOf(q.LookupAddr), + "LookupCNAME": reflect.ValueOf(q.LookupCNAME), + "LookupHost": reflect.ValueOf(q.LookupHost), + "LookupIP": reflect.ValueOf(q.LookupIP), + "LookupMX": reflect.ValueOf(q.LookupMX), + "LookupNS": reflect.ValueOf(q.LookupNS), + "LookupPort": reflect.ValueOf(q.LookupPort), + "LookupSRV": reflect.ValueOf(q.LookupSRV), + "LookupTXT": reflect.ValueOf(q.LookupTXT), + "ParseCIDR": reflect.ValueOf(q.ParseCIDR), + "ParseIP": reflect.ValueOf(q.ParseIP), + "ParseMAC": reflect.ValueOf(q.ParseMAC), + "Pipe": reflect.ValueOf(q.Pipe), + "ResolveIPAddr": reflect.ValueOf(q.ResolveIPAddr), + "ResolveTCPAddr": reflect.ValueOf(q.ResolveTCPAddr), + "ResolveUDPAddr": reflect.ValueOf(q.ResolveUDPAddr), + "ResolveUnixAddr": reflect.ValueOf(q.ResolveUnixAddr), + "SplitHostPort": reflect.ValueOf(q.SplitHostPort), + "TCPAddrFromAddrPort": reflect.ValueOf(q.TCPAddrFromAddrPort), + "UDPAddrFromAddrPort": reflect.ValueOf(q.UDPAddrFromAddrPort), + }, + TypedConsts: map[string]igop.TypedConst{ + "FlagBroadcast": {reflect.TypeOf(q.FlagBroadcast), constant.MakeInt64(int64(q.FlagBroadcast))}, + "FlagLoopback": {reflect.TypeOf(q.FlagLoopback), constant.MakeInt64(int64(q.FlagLoopback))}, + "FlagMulticast": {reflect.TypeOf(q.FlagMulticast), constant.MakeInt64(int64(q.FlagMulticast))}, + "FlagPointToPoint": {reflect.TypeOf(q.FlagPointToPoint), constant.MakeInt64(int64(q.FlagPointToPoint))}, + "FlagRunning": {reflect.TypeOf(q.FlagRunning), constant.MakeInt64(int64(q.FlagRunning))}, + "FlagUp": {reflect.TypeOf(q.FlagUp), constant.MakeInt64(int64(q.FlagUp))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "IPv4len": {"untyped int", constant.MakeInt64(int64(q.IPv4len))}, + "IPv6len": {"untyped int", constant.MakeInt64(int64(q.IPv6len))}, + }, + }) +} diff --git a/pkg/net/go123_export.go b/pkg/net/go123_export.go new file mode 100755 index 00000000..ce8a735a --- /dev/null +++ b/pkg/net/go123_export.go @@ -0,0 +1,164 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package net + +import ( + q "net" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "net", + Path: "net", + Deps: map[string]string{ + "cmp": "cmp", + "context": "context", + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/godebug": "godebug", + "internal/itoa": "itoa", + "internal/nettrace": "nettrace", + "internal/poll": "poll", + "internal/singleflight": "singleflight", + "internal/stringslite": "stringslite", + "internal/syscall/unix": "unix", + "io": "io", + "io/fs": "fs", + "net/netip": "netip", + "os": "os", + "runtime": "runtime", + "slices": "slices", + "sort": "sort", + "sync": "sync", + "sync/atomic": "atomic", + "syscall": "syscall", + "time": "time", + "unsafe": "unsafe", + "vendor/golang.org/x/net/dns/dnsmessage": "dnsmessage", + "vendor/golang.org/x/net/route": "route", + }, + Interfaces: map[string]reflect.Type{ + "Addr": reflect.TypeOf((*q.Addr)(nil)).Elem(), + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), + "Listener": reflect.TypeOf((*q.Listener)(nil)).Elem(), + "PacketConn": reflect.TypeOf((*q.PacketConn)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "AddrError": reflect.TypeOf((*q.AddrError)(nil)).Elem(), + "Buffers": reflect.TypeOf((*q.Buffers)(nil)).Elem(), + "DNSConfigError": reflect.TypeOf((*q.DNSConfigError)(nil)).Elem(), + "DNSError": reflect.TypeOf((*q.DNSError)(nil)).Elem(), + "Dialer": reflect.TypeOf((*q.Dialer)(nil)).Elem(), + "Flags": reflect.TypeOf((*q.Flags)(nil)).Elem(), + "HardwareAddr": reflect.TypeOf((*q.HardwareAddr)(nil)).Elem(), + "IP": reflect.TypeOf((*q.IP)(nil)).Elem(), + "IPAddr": reflect.TypeOf((*q.IPAddr)(nil)).Elem(), + "IPConn": reflect.TypeOf((*q.IPConn)(nil)).Elem(), + "IPMask": reflect.TypeOf((*q.IPMask)(nil)).Elem(), + "IPNet": reflect.TypeOf((*q.IPNet)(nil)).Elem(), + "Interface": reflect.TypeOf((*q.Interface)(nil)).Elem(), + "InvalidAddrError": reflect.TypeOf((*q.InvalidAddrError)(nil)).Elem(), + "KeepAliveConfig": reflect.TypeOf((*q.KeepAliveConfig)(nil)).Elem(), + "ListenConfig": reflect.TypeOf((*q.ListenConfig)(nil)).Elem(), + "MX": reflect.TypeOf((*q.MX)(nil)).Elem(), + "NS": reflect.TypeOf((*q.NS)(nil)).Elem(), + "OpError": reflect.TypeOf((*q.OpError)(nil)).Elem(), + "ParseError": reflect.TypeOf((*q.ParseError)(nil)).Elem(), + "Resolver": reflect.TypeOf((*q.Resolver)(nil)).Elem(), + "SRV": reflect.TypeOf((*q.SRV)(nil)).Elem(), + "TCPAddr": reflect.TypeOf((*q.TCPAddr)(nil)).Elem(), + "TCPConn": reflect.TypeOf((*q.TCPConn)(nil)).Elem(), + "TCPListener": reflect.TypeOf((*q.TCPListener)(nil)).Elem(), + "UDPAddr": reflect.TypeOf((*q.UDPAddr)(nil)).Elem(), + "UDPConn": reflect.TypeOf((*q.UDPConn)(nil)).Elem(), + "UnixAddr": reflect.TypeOf((*q.UnixAddr)(nil)).Elem(), + "UnixConn": reflect.TypeOf((*q.UnixConn)(nil)).Elem(), + "UnixListener": reflect.TypeOf((*q.UnixListener)(nil)).Elem(), + "UnknownNetworkError": reflect.TypeOf((*q.UnknownNetworkError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "DefaultResolver": reflect.ValueOf(&q.DefaultResolver), + "ErrClosed": reflect.ValueOf(&q.ErrClosed), + "ErrWriteToConnected": reflect.ValueOf(&q.ErrWriteToConnected), + "IPv4allrouter": reflect.ValueOf(&q.IPv4allrouter), + "IPv4allsys": reflect.ValueOf(&q.IPv4allsys), + "IPv4bcast": reflect.ValueOf(&q.IPv4bcast), + "IPv4zero": reflect.ValueOf(&q.IPv4zero), + "IPv6interfacelocalallnodes": reflect.ValueOf(&q.IPv6interfacelocalallnodes), + "IPv6linklocalallnodes": reflect.ValueOf(&q.IPv6linklocalallnodes), + "IPv6linklocalallrouters": reflect.ValueOf(&q.IPv6linklocalallrouters), + "IPv6loopback": reflect.ValueOf(&q.IPv6loopback), + "IPv6unspecified": reflect.ValueOf(&q.IPv6unspecified), + "IPv6zero": reflect.ValueOf(&q.IPv6zero), + }, + Funcs: map[string]reflect.Value{ + "CIDRMask": reflect.ValueOf(q.CIDRMask), + "Dial": reflect.ValueOf(q.Dial), + "DialIP": reflect.ValueOf(q.DialIP), + "DialTCP": reflect.ValueOf(q.DialTCP), + "DialTimeout": reflect.ValueOf(q.DialTimeout), + "DialUDP": reflect.ValueOf(q.DialUDP), + "DialUnix": reflect.ValueOf(q.DialUnix), + "FileConn": reflect.ValueOf(q.FileConn), + "FileListener": reflect.ValueOf(q.FileListener), + "FilePacketConn": reflect.ValueOf(q.FilePacketConn), + "IPv4": reflect.ValueOf(q.IPv4), + "IPv4Mask": reflect.ValueOf(q.IPv4Mask), + "InterfaceAddrs": reflect.ValueOf(q.InterfaceAddrs), + "InterfaceByIndex": reflect.ValueOf(q.InterfaceByIndex), + "InterfaceByName": reflect.ValueOf(q.InterfaceByName), + "Interfaces": reflect.ValueOf(q.Interfaces), + "JoinHostPort": reflect.ValueOf(q.JoinHostPort), + "Listen": reflect.ValueOf(q.Listen), + "ListenIP": reflect.ValueOf(q.ListenIP), + "ListenMulticastUDP": reflect.ValueOf(q.ListenMulticastUDP), + "ListenPacket": reflect.ValueOf(q.ListenPacket), + "ListenTCP": reflect.ValueOf(q.ListenTCP), + "ListenUDP": reflect.ValueOf(q.ListenUDP), + "ListenUnix": reflect.ValueOf(q.ListenUnix), + "ListenUnixgram": reflect.ValueOf(q.ListenUnixgram), + "LookupAddr": reflect.ValueOf(q.LookupAddr), + "LookupCNAME": reflect.ValueOf(q.LookupCNAME), + "LookupHost": reflect.ValueOf(q.LookupHost), + "LookupIP": reflect.ValueOf(q.LookupIP), + "LookupMX": reflect.ValueOf(q.LookupMX), + "LookupNS": reflect.ValueOf(q.LookupNS), + "LookupPort": reflect.ValueOf(q.LookupPort), + "LookupSRV": reflect.ValueOf(q.LookupSRV), + "LookupTXT": reflect.ValueOf(q.LookupTXT), + "ParseCIDR": reflect.ValueOf(q.ParseCIDR), + "ParseIP": reflect.ValueOf(q.ParseIP), + "ParseMAC": reflect.ValueOf(q.ParseMAC), + "Pipe": reflect.ValueOf(q.Pipe), + "ResolveIPAddr": reflect.ValueOf(q.ResolveIPAddr), + "ResolveTCPAddr": reflect.ValueOf(q.ResolveTCPAddr), + "ResolveUDPAddr": reflect.ValueOf(q.ResolveUDPAddr), + "ResolveUnixAddr": reflect.ValueOf(q.ResolveUnixAddr), + "SplitHostPort": reflect.ValueOf(q.SplitHostPort), + "TCPAddrFromAddrPort": reflect.ValueOf(q.TCPAddrFromAddrPort), + "UDPAddrFromAddrPort": reflect.ValueOf(q.UDPAddrFromAddrPort), + }, + TypedConsts: map[string]igop.TypedConst{ + "FlagBroadcast": {reflect.TypeOf(q.FlagBroadcast), constant.MakeInt64(int64(q.FlagBroadcast))}, + "FlagLoopback": {reflect.TypeOf(q.FlagLoopback), constant.MakeInt64(int64(q.FlagLoopback))}, + "FlagMulticast": {reflect.TypeOf(q.FlagMulticast), constant.MakeInt64(int64(q.FlagMulticast))}, + "FlagPointToPoint": {reflect.TypeOf(q.FlagPointToPoint), constant.MakeInt64(int64(q.FlagPointToPoint))}, + "FlagRunning": {reflect.TypeOf(q.FlagRunning), constant.MakeInt64(int64(q.FlagRunning))}, + "FlagUp": {reflect.TypeOf(q.FlagUp), constant.MakeInt64(int64(q.FlagUp))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "IPv4len": {"untyped int", constant.MakeInt64(int64(q.IPv4len))}, + "IPv6len": {"untyped int", constant.MakeInt64(int64(q.IPv6len))}, + }, + }) +} diff --git a/pkg/net/http/cgi/go121_export.go b/pkg/net/http/cgi/go121_export.go index 4afd286d..63217904 100755 --- a/pkg/net/http/cgi/go121_export.go +++ b/pkg/net/http/cgi/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package cgi diff --git a/pkg/net/http/cgi/go122_export.go b/pkg/net/http/cgi/go122_export.go new file mode 100755 index 00000000..22cd7cd6 --- /dev/null +++ b/pkg/net/http/cgi/go122_export.go @@ -0,0 +1,57 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package cgi + +import ( + q "net/http/cgi" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "cgi", + Path: "net/http/cgi", + Deps: map[string]string{ + "bufio": "bufio", + "crypto/tls": "tls", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "log": "log", + "net": "net", + "net/http": "http", + "net/textproto": "textproto", + "net/url": "url", + "os": "os", + "os/exec": "exec", + "path": "path", + "path/filepath": "filepath", + "regexp": "regexp", + "runtime": "runtime", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "time": "time", + "vendor/golang.org/x/net/http/httpguts": "httpguts", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Handler": reflect.TypeOf((*q.Handler)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Request": reflect.ValueOf(q.Request), + "RequestFromMap": reflect.ValueOf(q.RequestFromMap), + "Serve": reflect.ValueOf(q.Serve), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/http/cgi/go123_export.go b/pkg/net/http/cgi/go123_export.go new file mode 100755 index 00000000..8eaad693 --- /dev/null +++ b/pkg/net/http/cgi/go123_export.go @@ -0,0 +1,57 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package cgi + +import ( + q "net/http/cgi" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "cgi", + Path: "net/http/cgi", + Deps: map[string]string{ + "bufio": "bufio", + "crypto/tls": "tls", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "log": "log", + "net": "net", + "net/http": "http", + "net/textproto": "textproto", + "net/url": "url", + "os": "os", + "os/exec": "exec", + "path": "path", + "path/filepath": "filepath", + "regexp": "regexp", + "runtime": "runtime", + "slices": "slices", + "strconv": "strconv", + "strings": "strings", + "time": "time", + "vendor/golang.org/x/net/http/httpguts": "httpguts", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Handler": reflect.TypeOf((*q.Handler)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Request": reflect.ValueOf(q.Request), + "RequestFromMap": reflect.ValueOf(q.RequestFromMap), + "Serve": reflect.ValueOf(q.Serve), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/http/cookiejar/go121_export.go b/pkg/net/http/cookiejar/go121_export.go index b3e22fdf..4850c413 100755 --- a/pkg/net/http/cookiejar/go121_export.go +++ b/pkg/net/http/cookiejar/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package cookiejar diff --git a/pkg/net/http/cookiejar/go122_export.go b/pkg/net/http/cookiejar/go122_export.go new file mode 100755 index 00000000..d26cb57b --- /dev/null +++ b/pkg/net/http/cookiejar/go122_export.go @@ -0,0 +1,48 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package cookiejar + +import ( + q "net/http/cookiejar" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "cookiejar", + Path: "net/http/cookiejar", + Deps: map[string]string{ + "errors": "errors", + "fmt": "fmt", + "net": "net", + "net/http": "http", + "net/http/internal/ascii": "ascii", + "net/url": "url", + "sort": "sort", + "strings": "strings", + "sync": "sync", + "time": "time", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "PublicSuffixList": reflect.TypeOf((*q.PublicSuffixList)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Jar": reflect.TypeOf((*q.Jar)(nil)).Elem(), + "Options": reflect.TypeOf((*q.Options)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "New": reflect.ValueOf(q.New), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/http/cookiejar/go123_export.go b/pkg/net/http/cookiejar/go123_export.go new file mode 100755 index 00000000..bab5bac8 --- /dev/null +++ b/pkg/net/http/cookiejar/go123_export.go @@ -0,0 +1,49 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package cookiejar + +import ( + q "net/http/cookiejar" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "cookiejar", + Path: "net/http/cookiejar", + Deps: map[string]string{ + "cmp": "cmp", + "errors": "errors", + "fmt": "fmt", + "net": "net", + "net/http": "http", + "net/http/internal/ascii": "ascii", + "net/url": "url", + "slices": "slices", + "strings": "strings", + "sync": "sync", + "time": "time", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "PublicSuffixList": reflect.TypeOf((*q.PublicSuffixList)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Jar": reflect.TypeOf((*q.Jar)(nil)).Elem(), + "Options": reflect.TypeOf((*q.Options)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "New": reflect.ValueOf(q.New), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/http/fcgi/go121_export.go b/pkg/net/http/fcgi/go121_export.go index 0c440f7d..fe7c7bda 100755 --- a/pkg/net/http/fcgi/go121_export.go +++ b/pkg/net/http/fcgi/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package fcgi diff --git a/pkg/net/http/fcgi/go122_export.go b/pkg/net/http/fcgi/go122_export.go new file mode 100755 index 00000000..30b74f27 --- /dev/null +++ b/pkg/net/http/fcgi/go122_export.go @@ -0,0 +1,50 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package fcgi + +import ( + q "net/http/fcgi" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "fcgi", + Path: "net/http/fcgi", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "context": "context", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "net": "net", + "net/http": "http", + "net/http/cgi": "cgi", + "os": "os", + "strings": "strings", + "sync": "sync", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrConnClosed": reflect.ValueOf(&q.ErrConnClosed), + "ErrRequestAborted": reflect.ValueOf(&q.ErrRequestAborted), + }, + Funcs: map[string]reflect.Value{ + "ProcessEnv": reflect.ValueOf(q.ProcessEnv), + "Serve": reflect.ValueOf(q.Serve), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/http/fcgi/go123_export.go b/pkg/net/http/fcgi/go123_export.go new file mode 100755 index 00000000..bf9b3c87 --- /dev/null +++ b/pkg/net/http/fcgi/go123_export.go @@ -0,0 +1,50 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package fcgi + +import ( + q "net/http/fcgi" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "fcgi", + Path: "net/http/fcgi", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "context": "context", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "net": "net", + "net/http": "http", + "net/http/cgi": "cgi", + "os": "os", + "strings": "strings", + "sync": "sync", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrConnClosed": reflect.ValueOf(&q.ErrConnClosed), + "ErrRequestAborted": reflect.ValueOf(&q.ErrRequestAborted), + }, + Funcs: map[string]reflect.Value{ + "ProcessEnv": reflect.ValueOf(q.ProcessEnv), + "Serve": reflect.ValueOf(q.Serve), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/http/go121_export.go b/pkg/net/http/go121_export.go index b27fef7f..7ffb7424 100755 --- a/pkg/net/http/go121_export.go +++ b/pkg/net/http/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package http diff --git a/pkg/net/http/go122_export.go b/pkg/net/http/go122_export.go new file mode 100755 index 00000000..11e34f1b --- /dev/null +++ b/pkg/net/http/go122_export.go @@ -0,0 +1,261 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package http + +import ( + q "net/http" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "http", + Path: "net/http", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "compress/gzip": "gzip", + "container/list": "list", + "context": "context", + "crypto/rand": "rand", + "crypto/tls": "tls", + "encoding/base64": "base64", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "internal/godebug": "godebug", + "internal/safefilepath": "safefilepath", + "io": "io", + "io/fs": "fs", + "log": "log", + "math": "math", + "math/bits": "bits", + "math/rand": "rand", + "mime": "mime", + "mime/multipart": "multipart", + "net": "net", + "net/http/httptrace": "httptrace", + "net/http/internal": "internal", + "net/http/internal/ascii": "ascii", + "net/textproto": "textproto", + "net/url": "url", + "os": "os", + "path": "path", + "path/filepath": "filepath", + "reflect": "reflect", + "runtime": "runtime", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "sync/atomic": "atomic", + "time": "time", + "unicode": "unicode", + "unicode/utf8": "utf8", + "vendor/golang.org/x/net/http/httpguts": "httpguts", + "vendor/golang.org/x/net/http/httpproxy": "httpproxy", + "vendor/golang.org/x/net/http2/hpack": "hpack", + "vendor/golang.org/x/net/idna": "idna", + }, + Interfaces: map[string]reflect.Type{ + "CloseNotifier": reflect.TypeOf((*q.CloseNotifier)(nil)).Elem(), + "CookieJar": reflect.TypeOf((*q.CookieJar)(nil)).Elem(), + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "FileSystem": reflect.TypeOf((*q.FileSystem)(nil)).Elem(), + "Flusher": reflect.TypeOf((*q.Flusher)(nil)).Elem(), + "Handler": reflect.TypeOf((*q.Handler)(nil)).Elem(), + "Hijacker": reflect.TypeOf((*q.Hijacker)(nil)).Elem(), + "Pusher": reflect.TypeOf((*q.Pusher)(nil)).Elem(), + "ResponseWriter": reflect.TypeOf((*q.ResponseWriter)(nil)).Elem(), + "RoundTripper": reflect.TypeOf((*q.RoundTripper)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Client": reflect.TypeOf((*q.Client)(nil)).Elem(), + "ConnState": reflect.TypeOf((*q.ConnState)(nil)).Elem(), + "Cookie": reflect.TypeOf((*q.Cookie)(nil)).Elem(), + "Dir": reflect.TypeOf((*q.Dir)(nil)).Elem(), + "HandlerFunc": reflect.TypeOf((*q.HandlerFunc)(nil)).Elem(), + "Header": reflect.TypeOf((*q.Header)(nil)).Elem(), + "MaxBytesError": reflect.TypeOf((*q.MaxBytesError)(nil)).Elem(), + "ProtocolError": reflect.TypeOf((*q.ProtocolError)(nil)).Elem(), + "PushOptions": reflect.TypeOf((*q.PushOptions)(nil)).Elem(), + "Request": reflect.TypeOf((*q.Request)(nil)).Elem(), + "Response": reflect.TypeOf((*q.Response)(nil)).Elem(), + "ResponseController": reflect.TypeOf((*q.ResponseController)(nil)).Elem(), + "SameSite": reflect.TypeOf((*q.SameSite)(nil)).Elem(), + "ServeMux": reflect.TypeOf((*q.ServeMux)(nil)).Elem(), + "Server": reflect.TypeOf((*q.Server)(nil)).Elem(), + "Transport": reflect.TypeOf((*q.Transport)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "DefaultClient": reflect.ValueOf(&q.DefaultClient), + "DefaultServeMux": reflect.ValueOf(&q.DefaultServeMux), + "DefaultTransport": reflect.ValueOf(&q.DefaultTransport), + "ErrAbortHandler": reflect.ValueOf(&q.ErrAbortHandler), + "ErrBodyNotAllowed": reflect.ValueOf(&q.ErrBodyNotAllowed), + "ErrBodyReadAfterClose": reflect.ValueOf(&q.ErrBodyReadAfterClose), + "ErrContentLength": reflect.ValueOf(&q.ErrContentLength), + "ErrHandlerTimeout": reflect.ValueOf(&q.ErrHandlerTimeout), + "ErrHeaderTooLong": reflect.ValueOf(&q.ErrHeaderTooLong), + "ErrHijacked": reflect.ValueOf(&q.ErrHijacked), + "ErrLineTooLong": reflect.ValueOf(&q.ErrLineTooLong), + "ErrMissingBoundary": reflect.ValueOf(&q.ErrMissingBoundary), + "ErrMissingContentLength": reflect.ValueOf(&q.ErrMissingContentLength), + "ErrMissingFile": reflect.ValueOf(&q.ErrMissingFile), + "ErrNoCookie": reflect.ValueOf(&q.ErrNoCookie), + "ErrNoLocation": reflect.ValueOf(&q.ErrNoLocation), + "ErrNotMultipart": reflect.ValueOf(&q.ErrNotMultipart), + "ErrNotSupported": reflect.ValueOf(&q.ErrNotSupported), + "ErrSchemeMismatch": reflect.ValueOf(&q.ErrSchemeMismatch), + "ErrServerClosed": reflect.ValueOf(&q.ErrServerClosed), + "ErrShortBody": reflect.ValueOf(&q.ErrShortBody), + "ErrSkipAltProtocol": reflect.ValueOf(&q.ErrSkipAltProtocol), + "ErrUnexpectedTrailer": reflect.ValueOf(&q.ErrUnexpectedTrailer), + "ErrUseLastResponse": reflect.ValueOf(&q.ErrUseLastResponse), + "ErrWriteAfterFlush": reflect.ValueOf(&q.ErrWriteAfterFlush), + "LocalAddrContextKey": reflect.ValueOf(&q.LocalAddrContextKey), + "NoBody": reflect.ValueOf(&q.NoBody), + "ServerContextKey": reflect.ValueOf(&q.ServerContextKey), + }, + Funcs: map[string]reflect.Value{ + "AllowQuerySemicolons": reflect.ValueOf(q.AllowQuerySemicolons), + "CanonicalHeaderKey": reflect.ValueOf(q.CanonicalHeaderKey), + "DetectContentType": reflect.ValueOf(q.DetectContentType), + "Error": reflect.ValueOf(q.Error), + "FS": reflect.ValueOf(q.FS), + "FileServer": reflect.ValueOf(q.FileServer), + "FileServerFS": reflect.ValueOf(q.FileServerFS), + "Get": reflect.ValueOf(q.Get), + "Handle": reflect.ValueOf(q.Handle), + "HandleFunc": reflect.ValueOf(q.HandleFunc), + "Head": reflect.ValueOf(q.Head), + "ListenAndServe": reflect.ValueOf(q.ListenAndServe), + "ListenAndServeTLS": reflect.ValueOf(q.ListenAndServeTLS), + "MaxBytesHandler": reflect.ValueOf(q.MaxBytesHandler), + "MaxBytesReader": reflect.ValueOf(q.MaxBytesReader), + "NewFileTransport": reflect.ValueOf(q.NewFileTransport), + "NewFileTransportFS": reflect.ValueOf(q.NewFileTransportFS), + "NewRequest": reflect.ValueOf(q.NewRequest), + "NewRequestWithContext": reflect.ValueOf(q.NewRequestWithContext), + "NewResponseController": reflect.ValueOf(q.NewResponseController), + "NewServeMux": reflect.ValueOf(q.NewServeMux), + "NotFound": reflect.ValueOf(q.NotFound), + "NotFoundHandler": reflect.ValueOf(q.NotFoundHandler), + "ParseHTTPVersion": reflect.ValueOf(q.ParseHTTPVersion), + "ParseTime": reflect.ValueOf(q.ParseTime), + "Post": reflect.ValueOf(q.Post), + "PostForm": reflect.ValueOf(q.PostForm), + "ProxyFromEnvironment": reflect.ValueOf(q.ProxyFromEnvironment), + "ProxyURL": reflect.ValueOf(q.ProxyURL), + "ReadRequest": reflect.ValueOf(q.ReadRequest), + "ReadResponse": reflect.ValueOf(q.ReadResponse), + "Redirect": reflect.ValueOf(q.Redirect), + "RedirectHandler": reflect.ValueOf(q.RedirectHandler), + "Serve": reflect.ValueOf(q.Serve), + "ServeContent": reflect.ValueOf(q.ServeContent), + "ServeFile": reflect.ValueOf(q.ServeFile), + "ServeFileFS": reflect.ValueOf(q.ServeFileFS), + "ServeTLS": reflect.ValueOf(q.ServeTLS), + "SetCookie": reflect.ValueOf(q.SetCookie), + "StatusText": reflect.ValueOf(q.StatusText), + "StripPrefix": reflect.ValueOf(q.StripPrefix), + "TimeoutHandler": reflect.ValueOf(q.TimeoutHandler), + }, + TypedConsts: map[string]igop.TypedConst{ + "SameSiteDefaultMode": {reflect.TypeOf(q.SameSiteDefaultMode), constant.MakeInt64(int64(q.SameSiteDefaultMode))}, + "SameSiteLaxMode": {reflect.TypeOf(q.SameSiteLaxMode), constant.MakeInt64(int64(q.SameSiteLaxMode))}, + "SameSiteNoneMode": {reflect.TypeOf(q.SameSiteNoneMode), constant.MakeInt64(int64(q.SameSiteNoneMode))}, + "SameSiteStrictMode": {reflect.TypeOf(q.SameSiteStrictMode), constant.MakeInt64(int64(q.SameSiteStrictMode))}, + "StateActive": {reflect.TypeOf(q.StateActive), constant.MakeInt64(int64(q.StateActive))}, + "StateClosed": {reflect.TypeOf(q.StateClosed), constant.MakeInt64(int64(q.StateClosed))}, + "StateHijacked": {reflect.TypeOf(q.StateHijacked), constant.MakeInt64(int64(q.StateHijacked))}, + "StateIdle": {reflect.TypeOf(q.StateIdle), constant.MakeInt64(int64(q.StateIdle))}, + "StateNew": {reflect.TypeOf(q.StateNew), constant.MakeInt64(int64(q.StateNew))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "DefaultMaxHeaderBytes": {"untyped int", constant.MakeInt64(int64(q.DefaultMaxHeaderBytes))}, + "DefaultMaxIdleConnsPerHost": {"untyped int", constant.MakeInt64(int64(q.DefaultMaxIdleConnsPerHost))}, + "MethodConnect": {"untyped string", constant.MakeString(string(q.MethodConnect))}, + "MethodDelete": {"untyped string", constant.MakeString(string(q.MethodDelete))}, + "MethodGet": {"untyped string", constant.MakeString(string(q.MethodGet))}, + "MethodHead": {"untyped string", constant.MakeString(string(q.MethodHead))}, + "MethodOptions": {"untyped string", constant.MakeString(string(q.MethodOptions))}, + "MethodPatch": {"untyped string", constant.MakeString(string(q.MethodPatch))}, + "MethodPost": {"untyped string", constant.MakeString(string(q.MethodPost))}, + "MethodPut": {"untyped string", constant.MakeString(string(q.MethodPut))}, + "MethodTrace": {"untyped string", constant.MakeString(string(q.MethodTrace))}, + "StatusAccepted": {"untyped int", constant.MakeInt64(int64(q.StatusAccepted))}, + "StatusAlreadyReported": {"untyped int", constant.MakeInt64(int64(q.StatusAlreadyReported))}, + "StatusBadGateway": {"untyped int", constant.MakeInt64(int64(q.StatusBadGateway))}, + "StatusBadRequest": {"untyped int", constant.MakeInt64(int64(q.StatusBadRequest))}, + "StatusConflict": {"untyped int", constant.MakeInt64(int64(q.StatusConflict))}, + "StatusContinue": {"untyped int", constant.MakeInt64(int64(q.StatusContinue))}, + "StatusCreated": {"untyped int", constant.MakeInt64(int64(q.StatusCreated))}, + "StatusEarlyHints": {"untyped int", constant.MakeInt64(int64(q.StatusEarlyHints))}, + "StatusExpectationFailed": {"untyped int", constant.MakeInt64(int64(q.StatusExpectationFailed))}, + "StatusFailedDependency": {"untyped int", constant.MakeInt64(int64(q.StatusFailedDependency))}, + "StatusForbidden": {"untyped int", constant.MakeInt64(int64(q.StatusForbidden))}, + "StatusFound": {"untyped int", constant.MakeInt64(int64(q.StatusFound))}, + "StatusGatewayTimeout": {"untyped int", constant.MakeInt64(int64(q.StatusGatewayTimeout))}, + "StatusGone": {"untyped int", constant.MakeInt64(int64(q.StatusGone))}, + "StatusHTTPVersionNotSupported": {"untyped int", constant.MakeInt64(int64(q.StatusHTTPVersionNotSupported))}, + "StatusIMUsed": {"untyped int", constant.MakeInt64(int64(q.StatusIMUsed))}, + "StatusInsufficientStorage": {"untyped int", constant.MakeInt64(int64(q.StatusInsufficientStorage))}, + "StatusInternalServerError": {"untyped int", constant.MakeInt64(int64(q.StatusInternalServerError))}, + "StatusLengthRequired": {"untyped int", constant.MakeInt64(int64(q.StatusLengthRequired))}, + "StatusLocked": {"untyped int", constant.MakeInt64(int64(q.StatusLocked))}, + "StatusLoopDetected": {"untyped int", constant.MakeInt64(int64(q.StatusLoopDetected))}, + "StatusMethodNotAllowed": {"untyped int", constant.MakeInt64(int64(q.StatusMethodNotAllowed))}, + "StatusMisdirectedRequest": {"untyped int", constant.MakeInt64(int64(q.StatusMisdirectedRequest))}, + "StatusMovedPermanently": {"untyped int", constant.MakeInt64(int64(q.StatusMovedPermanently))}, + "StatusMultiStatus": {"untyped int", constant.MakeInt64(int64(q.StatusMultiStatus))}, + "StatusMultipleChoices": {"untyped int", constant.MakeInt64(int64(q.StatusMultipleChoices))}, + "StatusNetworkAuthenticationRequired": {"untyped int", constant.MakeInt64(int64(q.StatusNetworkAuthenticationRequired))}, + "StatusNoContent": {"untyped int", constant.MakeInt64(int64(q.StatusNoContent))}, + "StatusNonAuthoritativeInfo": {"untyped int", constant.MakeInt64(int64(q.StatusNonAuthoritativeInfo))}, + "StatusNotAcceptable": {"untyped int", constant.MakeInt64(int64(q.StatusNotAcceptable))}, + "StatusNotExtended": {"untyped int", constant.MakeInt64(int64(q.StatusNotExtended))}, + "StatusNotFound": {"untyped int", constant.MakeInt64(int64(q.StatusNotFound))}, + "StatusNotImplemented": {"untyped int", constant.MakeInt64(int64(q.StatusNotImplemented))}, + "StatusNotModified": {"untyped int", constant.MakeInt64(int64(q.StatusNotModified))}, + "StatusOK": {"untyped int", constant.MakeInt64(int64(q.StatusOK))}, + "StatusPartialContent": {"untyped int", constant.MakeInt64(int64(q.StatusPartialContent))}, + "StatusPaymentRequired": {"untyped int", constant.MakeInt64(int64(q.StatusPaymentRequired))}, + "StatusPermanentRedirect": {"untyped int", constant.MakeInt64(int64(q.StatusPermanentRedirect))}, + "StatusPreconditionFailed": {"untyped int", constant.MakeInt64(int64(q.StatusPreconditionFailed))}, + "StatusPreconditionRequired": {"untyped int", constant.MakeInt64(int64(q.StatusPreconditionRequired))}, + "StatusProcessing": {"untyped int", constant.MakeInt64(int64(q.StatusProcessing))}, + "StatusProxyAuthRequired": {"untyped int", constant.MakeInt64(int64(q.StatusProxyAuthRequired))}, + "StatusRequestEntityTooLarge": {"untyped int", constant.MakeInt64(int64(q.StatusRequestEntityTooLarge))}, + "StatusRequestHeaderFieldsTooLarge": {"untyped int", constant.MakeInt64(int64(q.StatusRequestHeaderFieldsTooLarge))}, + "StatusRequestTimeout": {"untyped int", constant.MakeInt64(int64(q.StatusRequestTimeout))}, + "StatusRequestURITooLong": {"untyped int", constant.MakeInt64(int64(q.StatusRequestURITooLong))}, + "StatusRequestedRangeNotSatisfiable": {"untyped int", constant.MakeInt64(int64(q.StatusRequestedRangeNotSatisfiable))}, + "StatusResetContent": {"untyped int", constant.MakeInt64(int64(q.StatusResetContent))}, + "StatusSeeOther": {"untyped int", constant.MakeInt64(int64(q.StatusSeeOther))}, + "StatusServiceUnavailable": {"untyped int", constant.MakeInt64(int64(q.StatusServiceUnavailable))}, + "StatusSwitchingProtocols": {"untyped int", constant.MakeInt64(int64(q.StatusSwitchingProtocols))}, + "StatusTeapot": {"untyped int", constant.MakeInt64(int64(q.StatusTeapot))}, + "StatusTemporaryRedirect": {"untyped int", constant.MakeInt64(int64(q.StatusTemporaryRedirect))}, + "StatusTooEarly": {"untyped int", constant.MakeInt64(int64(q.StatusTooEarly))}, + "StatusTooManyRequests": {"untyped int", constant.MakeInt64(int64(q.StatusTooManyRequests))}, + "StatusUnauthorized": {"untyped int", constant.MakeInt64(int64(q.StatusUnauthorized))}, + "StatusUnavailableForLegalReasons": {"untyped int", constant.MakeInt64(int64(q.StatusUnavailableForLegalReasons))}, + "StatusUnprocessableEntity": {"untyped int", constant.MakeInt64(int64(q.StatusUnprocessableEntity))}, + "StatusUnsupportedMediaType": {"untyped int", constant.MakeInt64(int64(q.StatusUnsupportedMediaType))}, + "StatusUpgradeRequired": {"untyped int", constant.MakeInt64(int64(q.StatusUpgradeRequired))}, + "StatusUseProxy": {"untyped int", constant.MakeInt64(int64(q.StatusUseProxy))}, + "StatusVariantAlsoNegotiates": {"untyped int", constant.MakeInt64(int64(q.StatusVariantAlsoNegotiates))}, + "TimeFormat": {"untyped string", constant.MakeString(string(q.TimeFormat))}, + "TrailerPrefix": {"untyped string", constant.MakeString(string(q.TrailerPrefix))}, + }, + }) +} diff --git a/pkg/net/http/go123_export.go b/pkg/net/http/go123_export.go new file mode 100755 index 00000000..2ce7c4be --- /dev/null +++ b/pkg/net/http/go123_export.go @@ -0,0 +1,265 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package http + +import ( + q "net/http" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "http", + Path: "net/http", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "compress/gzip": "gzip", + "container/list": "list", + "context": "context", + "crypto/rand": "rand", + "crypto/tls": "tls", + "encoding/base64": "base64", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "internal/godebug": "godebug", + "io": "io", + "io/fs": "fs", + "log": "log", + "maps": "maps", + "math": "math", + "math/bits": "bits", + "math/rand": "rand", + "mime": "mime", + "mime/multipart": "multipart", + "net": "net", + "net/http/httptrace": "httptrace", + "net/http/internal": "internal", + "net/http/internal/ascii": "ascii", + "net/textproto": "textproto", + "net/url": "url", + "os": "os", + "path": "path", + "path/filepath": "filepath", + "reflect": "reflect", + "runtime": "runtime", + "slices": "slices", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "sync/atomic": "atomic", + "time": "time", + "unicode": "unicode", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + "vendor/golang.org/x/net/http/httpguts": "httpguts", + "vendor/golang.org/x/net/http/httpproxy": "httpproxy", + "vendor/golang.org/x/net/http2/hpack": "hpack", + "vendor/golang.org/x/net/idna": "idna", + }, + Interfaces: map[string]reflect.Type{ + "CloseNotifier": reflect.TypeOf((*q.CloseNotifier)(nil)).Elem(), + "CookieJar": reflect.TypeOf((*q.CookieJar)(nil)).Elem(), + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "FileSystem": reflect.TypeOf((*q.FileSystem)(nil)).Elem(), + "Flusher": reflect.TypeOf((*q.Flusher)(nil)).Elem(), + "Handler": reflect.TypeOf((*q.Handler)(nil)).Elem(), + "Hijacker": reflect.TypeOf((*q.Hijacker)(nil)).Elem(), + "Pusher": reflect.TypeOf((*q.Pusher)(nil)).Elem(), + "ResponseWriter": reflect.TypeOf((*q.ResponseWriter)(nil)).Elem(), + "RoundTripper": reflect.TypeOf((*q.RoundTripper)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Client": reflect.TypeOf((*q.Client)(nil)).Elem(), + "ConnState": reflect.TypeOf((*q.ConnState)(nil)).Elem(), + "Cookie": reflect.TypeOf((*q.Cookie)(nil)).Elem(), + "Dir": reflect.TypeOf((*q.Dir)(nil)).Elem(), + "HandlerFunc": reflect.TypeOf((*q.HandlerFunc)(nil)).Elem(), + "Header": reflect.TypeOf((*q.Header)(nil)).Elem(), + "MaxBytesError": reflect.TypeOf((*q.MaxBytesError)(nil)).Elem(), + "ProtocolError": reflect.TypeOf((*q.ProtocolError)(nil)).Elem(), + "PushOptions": reflect.TypeOf((*q.PushOptions)(nil)).Elem(), + "Request": reflect.TypeOf((*q.Request)(nil)).Elem(), + "Response": reflect.TypeOf((*q.Response)(nil)).Elem(), + "ResponseController": reflect.TypeOf((*q.ResponseController)(nil)).Elem(), + "SameSite": reflect.TypeOf((*q.SameSite)(nil)).Elem(), + "ServeMux": reflect.TypeOf((*q.ServeMux)(nil)).Elem(), + "Server": reflect.TypeOf((*q.Server)(nil)).Elem(), + "Transport": reflect.TypeOf((*q.Transport)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "DefaultClient": reflect.ValueOf(&q.DefaultClient), + "DefaultServeMux": reflect.ValueOf(&q.DefaultServeMux), + "DefaultTransport": reflect.ValueOf(&q.DefaultTransport), + "ErrAbortHandler": reflect.ValueOf(&q.ErrAbortHandler), + "ErrBodyNotAllowed": reflect.ValueOf(&q.ErrBodyNotAllowed), + "ErrBodyReadAfterClose": reflect.ValueOf(&q.ErrBodyReadAfterClose), + "ErrContentLength": reflect.ValueOf(&q.ErrContentLength), + "ErrHandlerTimeout": reflect.ValueOf(&q.ErrHandlerTimeout), + "ErrHeaderTooLong": reflect.ValueOf(&q.ErrHeaderTooLong), + "ErrHijacked": reflect.ValueOf(&q.ErrHijacked), + "ErrLineTooLong": reflect.ValueOf(&q.ErrLineTooLong), + "ErrMissingBoundary": reflect.ValueOf(&q.ErrMissingBoundary), + "ErrMissingContentLength": reflect.ValueOf(&q.ErrMissingContentLength), + "ErrMissingFile": reflect.ValueOf(&q.ErrMissingFile), + "ErrNoCookie": reflect.ValueOf(&q.ErrNoCookie), + "ErrNoLocation": reflect.ValueOf(&q.ErrNoLocation), + "ErrNotMultipart": reflect.ValueOf(&q.ErrNotMultipart), + "ErrNotSupported": reflect.ValueOf(&q.ErrNotSupported), + "ErrSchemeMismatch": reflect.ValueOf(&q.ErrSchemeMismatch), + "ErrServerClosed": reflect.ValueOf(&q.ErrServerClosed), + "ErrShortBody": reflect.ValueOf(&q.ErrShortBody), + "ErrSkipAltProtocol": reflect.ValueOf(&q.ErrSkipAltProtocol), + "ErrUnexpectedTrailer": reflect.ValueOf(&q.ErrUnexpectedTrailer), + "ErrUseLastResponse": reflect.ValueOf(&q.ErrUseLastResponse), + "ErrWriteAfterFlush": reflect.ValueOf(&q.ErrWriteAfterFlush), + "LocalAddrContextKey": reflect.ValueOf(&q.LocalAddrContextKey), + "NoBody": reflect.ValueOf(&q.NoBody), + "ServerContextKey": reflect.ValueOf(&q.ServerContextKey), + }, + Funcs: map[string]reflect.Value{ + "AllowQuerySemicolons": reflect.ValueOf(q.AllowQuerySemicolons), + "CanonicalHeaderKey": reflect.ValueOf(q.CanonicalHeaderKey), + "DetectContentType": reflect.ValueOf(q.DetectContentType), + "Error": reflect.ValueOf(q.Error), + "FS": reflect.ValueOf(q.FS), + "FileServer": reflect.ValueOf(q.FileServer), + "FileServerFS": reflect.ValueOf(q.FileServerFS), + "Get": reflect.ValueOf(q.Get), + "Handle": reflect.ValueOf(q.Handle), + "HandleFunc": reflect.ValueOf(q.HandleFunc), + "Head": reflect.ValueOf(q.Head), + "ListenAndServe": reflect.ValueOf(q.ListenAndServe), + "ListenAndServeTLS": reflect.ValueOf(q.ListenAndServeTLS), + "MaxBytesHandler": reflect.ValueOf(q.MaxBytesHandler), + "MaxBytesReader": reflect.ValueOf(q.MaxBytesReader), + "NewFileTransport": reflect.ValueOf(q.NewFileTransport), + "NewFileTransportFS": reflect.ValueOf(q.NewFileTransportFS), + "NewRequest": reflect.ValueOf(q.NewRequest), + "NewRequestWithContext": reflect.ValueOf(q.NewRequestWithContext), + "NewResponseController": reflect.ValueOf(q.NewResponseController), + "NewServeMux": reflect.ValueOf(q.NewServeMux), + "NotFound": reflect.ValueOf(q.NotFound), + "NotFoundHandler": reflect.ValueOf(q.NotFoundHandler), + "ParseCookie": reflect.ValueOf(q.ParseCookie), + "ParseHTTPVersion": reflect.ValueOf(q.ParseHTTPVersion), + "ParseSetCookie": reflect.ValueOf(q.ParseSetCookie), + "ParseTime": reflect.ValueOf(q.ParseTime), + "Post": reflect.ValueOf(q.Post), + "PostForm": reflect.ValueOf(q.PostForm), + "ProxyFromEnvironment": reflect.ValueOf(q.ProxyFromEnvironment), + "ProxyURL": reflect.ValueOf(q.ProxyURL), + "ReadRequest": reflect.ValueOf(q.ReadRequest), + "ReadResponse": reflect.ValueOf(q.ReadResponse), + "Redirect": reflect.ValueOf(q.Redirect), + "RedirectHandler": reflect.ValueOf(q.RedirectHandler), + "Serve": reflect.ValueOf(q.Serve), + "ServeContent": reflect.ValueOf(q.ServeContent), + "ServeFile": reflect.ValueOf(q.ServeFile), + "ServeFileFS": reflect.ValueOf(q.ServeFileFS), + "ServeTLS": reflect.ValueOf(q.ServeTLS), + "SetCookie": reflect.ValueOf(q.SetCookie), + "StatusText": reflect.ValueOf(q.StatusText), + "StripPrefix": reflect.ValueOf(q.StripPrefix), + "TimeoutHandler": reflect.ValueOf(q.TimeoutHandler), + }, + TypedConsts: map[string]igop.TypedConst{ + "SameSiteDefaultMode": {reflect.TypeOf(q.SameSiteDefaultMode), constant.MakeInt64(int64(q.SameSiteDefaultMode))}, + "SameSiteLaxMode": {reflect.TypeOf(q.SameSiteLaxMode), constant.MakeInt64(int64(q.SameSiteLaxMode))}, + "SameSiteNoneMode": {reflect.TypeOf(q.SameSiteNoneMode), constant.MakeInt64(int64(q.SameSiteNoneMode))}, + "SameSiteStrictMode": {reflect.TypeOf(q.SameSiteStrictMode), constant.MakeInt64(int64(q.SameSiteStrictMode))}, + "StateActive": {reflect.TypeOf(q.StateActive), constant.MakeInt64(int64(q.StateActive))}, + "StateClosed": {reflect.TypeOf(q.StateClosed), constant.MakeInt64(int64(q.StateClosed))}, + "StateHijacked": {reflect.TypeOf(q.StateHijacked), constant.MakeInt64(int64(q.StateHijacked))}, + "StateIdle": {reflect.TypeOf(q.StateIdle), constant.MakeInt64(int64(q.StateIdle))}, + "StateNew": {reflect.TypeOf(q.StateNew), constant.MakeInt64(int64(q.StateNew))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "DefaultMaxHeaderBytes": {"untyped int", constant.MakeInt64(int64(q.DefaultMaxHeaderBytes))}, + "DefaultMaxIdleConnsPerHost": {"untyped int", constant.MakeInt64(int64(q.DefaultMaxIdleConnsPerHost))}, + "MethodConnect": {"untyped string", constant.MakeString(string(q.MethodConnect))}, + "MethodDelete": {"untyped string", constant.MakeString(string(q.MethodDelete))}, + "MethodGet": {"untyped string", constant.MakeString(string(q.MethodGet))}, + "MethodHead": {"untyped string", constant.MakeString(string(q.MethodHead))}, + "MethodOptions": {"untyped string", constant.MakeString(string(q.MethodOptions))}, + "MethodPatch": {"untyped string", constant.MakeString(string(q.MethodPatch))}, + "MethodPost": {"untyped string", constant.MakeString(string(q.MethodPost))}, + "MethodPut": {"untyped string", constant.MakeString(string(q.MethodPut))}, + "MethodTrace": {"untyped string", constant.MakeString(string(q.MethodTrace))}, + "StatusAccepted": {"untyped int", constant.MakeInt64(int64(q.StatusAccepted))}, + "StatusAlreadyReported": {"untyped int", constant.MakeInt64(int64(q.StatusAlreadyReported))}, + "StatusBadGateway": {"untyped int", constant.MakeInt64(int64(q.StatusBadGateway))}, + "StatusBadRequest": {"untyped int", constant.MakeInt64(int64(q.StatusBadRequest))}, + "StatusConflict": {"untyped int", constant.MakeInt64(int64(q.StatusConflict))}, + "StatusContinue": {"untyped int", constant.MakeInt64(int64(q.StatusContinue))}, + "StatusCreated": {"untyped int", constant.MakeInt64(int64(q.StatusCreated))}, + "StatusEarlyHints": {"untyped int", constant.MakeInt64(int64(q.StatusEarlyHints))}, + "StatusExpectationFailed": {"untyped int", constant.MakeInt64(int64(q.StatusExpectationFailed))}, + "StatusFailedDependency": {"untyped int", constant.MakeInt64(int64(q.StatusFailedDependency))}, + "StatusForbidden": {"untyped int", constant.MakeInt64(int64(q.StatusForbidden))}, + "StatusFound": {"untyped int", constant.MakeInt64(int64(q.StatusFound))}, + "StatusGatewayTimeout": {"untyped int", constant.MakeInt64(int64(q.StatusGatewayTimeout))}, + "StatusGone": {"untyped int", constant.MakeInt64(int64(q.StatusGone))}, + "StatusHTTPVersionNotSupported": {"untyped int", constant.MakeInt64(int64(q.StatusHTTPVersionNotSupported))}, + "StatusIMUsed": {"untyped int", constant.MakeInt64(int64(q.StatusIMUsed))}, + "StatusInsufficientStorage": {"untyped int", constant.MakeInt64(int64(q.StatusInsufficientStorage))}, + "StatusInternalServerError": {"untyped int", constant.MakeInt64(int64(q.StatusInternalServerError))}, + "StatusLengthRequired": {"untyped int", constant.MakeInt64(int64(q.StatusLengthRequired))}, + "StatusLocked": {"untyped int", constant.MakeInt64(int64(q.StatusLocked))}, + "StatusLoopDetected": {"untyped int", constant.MakeInt64(int64(q.StatusLoopDetected))}, + "StatusMethodNotAllowed": {"untyped int", constant.MakeInt64(int64(q.StatusMethodNotAllowed))}, + "StatusMisdirectedRequest": {"untyped int", constant.MakeInt64(int64(q.StatusMisdirectedRequest))}, + "StatusMovedPermanently": {"untyped int", constant.MakeInt64(int64(q.StatusMovedPermanently))}, + "StatusMultiStatus": {"untyped int", constant.MakeInt64(int64(q.StatusMultiStatus))}, + "StatusMultipleChoices": {"untyped int", constant.MakeInt64(int64(q.StatusMultipleChoices))}, + "StatusNetworkAuthenticationRequired": {"untyped int", constant.MakeInt64(int64(q.StatusNetworkAuthenticationRequired))}, + "StatusNoContent": {"untyped int", constant.MakeInt64(int64(q.StatusNoContent))}, + "StatusNonAuthoritativeInfo": {"untyped int", constant.MakeInt64(int64(q.StatusNonAuthoritativeInfo))}, + "StatusNotAcceptable": {"untyped int", constant.MakeInt64(int64(q.StatusNotAcceptable))}, + "StatusNotExtended": {"untyped int", constant.MakeInt64(int64(q.StatusNotExtended))}, + "StatusNotFound": {"untyped int", constant.MakeInt64(int64(q.StatusNotFound))}, + "StatusNotImplemented": {"untyped int", constant.MakeInt64(int64(q.StatusNotImplemented))}, + "StatusNotModified": {"untyped int", constant.MakeInt64(int64(q.StatusNotModified))}, + "StatusOK": {"untyped int", constant.MakeInt64(int64(q.StatusOK))}, + "StatusPartialContent": {"untyped int", constant.MakeInt64(int64(q.StatusPartialContent))}, + "StatusPaymentRequired": {"untyped int", constant.MakeInt64(int64(q.StatusPaymentRequired))}, + "StatusPermanentRedirect": {"untyped int", constant.MakeInt64(int64(q.StatusPermanentRedirect))}, + "StatusPreconditionFailed": {"untyped int", constant.MakeInt64(int64(q.StatusPreconditionFailed))}, + "StatusPreconditionRequired": {"untyped int", constant.MakeInt64(int64(q.StatusPreconditionRequired))}, + "StatusProcessing": {"untyped int", constant.MakeInt64(int64(q.StatusProcessing))}, + "StatusProxyAuthRequired": {"untyped int", constant.MakeInt64(int64(q.StatusProxyAuthRequired))}, + "StatusRequestEntityTooLarge": {"untyped int", constant.MakeInt64(int64(q.StatusRequestEntityTooLarge))}, + "StatusRequestHeaderFieldsTooLarge": {"untyped int", constant.MakeInt64(int64(q.StatusRequestHeaderFieldsTooLarge))}, + "StatusRequestTimeout": {"untyped int", constant.MakeInt64(int64(q.StatusRequestTimeout))}, + "StatusRequestURITooLong": {"untyped int", constant.MakeInt64(int64(q.StatusRequestURITooLong))}, + "StatusRequestedRangeNotSatisfiable": {"untyped int", constant.MakeInt64(int64(q.StatusRequestedRangeNotSatisfiable))}, + "StatusResetContent": {"untyped int", constant.MakeInt64(int64(q.StatusResetContent))}, + "StatusSeeOther": {"untyped int", constant.MakeInt64(int64(q.StatusSeeOther))}, + "StatusServiceUnavailable": {"untyped int", constant.MakeInt64(int64(q.StatusServiceUnavailable))}, + "StatusSwitchingProtocols": {"untyped int", constant.MakeInt64(int64(q.StatusSwitchingProtocols))}, + "StatusTeapot": {"untyped int", constant.MakeInt64(int64(q.StatusTeapot))}, + "StatusTemporaryRedirect": {"untyped int", constant.MakeInt64(int64(q.StatusTemporaryRedirect))}, + "StatusTooEarly": {"untyped int", constant.MakeInt64(int64(q.StatusTooEarly))}, + "StatusTooManyRequests": {"untyped int", constant.MakeInt64(int64(q.StatusTooManyRequests))}, + "StatusUnauthorized": {"untyped int", constant.MakeInt64(int64(q.StatusUnauthorized))}, + "StatusUnavailableForLegalReasons": {"untyped int", constant.MakeInt64(int64(q.StatusUnavailableForLegalReasons))}, + "StatusUnprocessableEntity": {"untyped int", constant.MakeInt64(int64(q.StatusUnprocessableEntity))}, + "StatusUnsupportedMediaType": {"untyped int", constant.MakeInt64(int64(q.StatusUnsupportedMediaType))}, + "StatusUpgradeRequired": {"untyped int", constant.MakeInt64(int64(q.StatusUpgradeRequired))}, + "StatusUseProxy": {"untyped int", constant.MakeInt64(int64(q.StatusUseProxy))}, + "StatusVariantAlsoNegotiates": {"untyped int", constant.MakeInt64(int64(q.StatusVariantAlsoNegotiates))}, + "TimeFormat": {"untyped string", constant.MakeString(string(q.TimeFormat))}, + "TrailerPrefix": {"untyped string", constant.MakeString(string(q.TrailerPrefix))}, + }, + }) +} diff --git a/pkg/net/http/httptest/go121_export.go b/pkg/net/http/httptest/go121_export.go index db071b53..b2e45b05 100755 --- a/pkg/net/http/httptest/go121_export.go +++ b/pkg/net/http/httptest/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package httptest diff --git a/pkg/net/http/httptest/go122_export.go b/pkg/net/http/httptest/go122_export.go new file mode 100755 index 00000000..d8b4222b --- /dev/null +++ b/pkg/net/http/httptest/go122_export.go @@ -0,0 +1,60 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package httptest + +import ( + q "net/http/httptest" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "httptest", + Path: "net/http/httptest", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "crypto/tls": "tls", + "crypto/x509": "x509", + "flag": "flag", + "fmt": "fmt", + "io": "io", + "log": "log", + "net": "net", + "net/http": "http", + "net/http/internal/testcert": "testcert", + "net/textproto": "textproto", + "os": "os", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "time": "time", + "vendor/golang.org/x/net/http/httpguts": "httpguts", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "ResponseRecorder": reflect.TypeOf((*q.ResponseRecorder)(nil)).Elem(), + "Server": reflect.TypeOf((*q.Server)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewRecorder": reflect.ValueOf(q.NewRecorder), + "NewRequest": reflect.ValueOf(q.NewRequest), + "NewServer": reflect.ValueOf(q.NewServer), + "NewTLSServer": reflect.ValueOf(q.NewTLSServer), + "NewUnstartedServer": reflect.ValueOf(q.NewUnstartedServer), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "DefaultRemoteAddr": {"untyped string", constant.MakeString(string(q.DefaultRemoteAddr))}, + }, + }) +} diff --git a/pkg/net/http/httptest/go123_export.go b/pkg/net/http/httptest/go123_export.go new file mode 100755 index 00000000..8ec36269 --- /dev/null +++ b/pkg/net/http/httptest/go123_export.go @@ -0,0 +1,62 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package httptest + +import ( + q "net/http/httptest" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "httptest", + Path: "net/http/httptest", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "context": "context", + "crypto/tls": "tls", + "crypto/x509": "x509", + "flag": "flag", + "fmt": "fmt", + "io": "io", + "log": "log", + "net": "net", + "net/http": "http", + "net/http/internal/testcert": "testcert", + "net/textproto": "textproto", + "os": "os", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "time": "time", + "vendor/golang.org/x/net/http/httpguts": "httpguts", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "ResponseRecorder": reflect.TypeOf((*q.ResponseRecorder)(nil)).Elem(), + "Server": reflect.TypeOf((*q.Server)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewRecorder": reflect.ValueOf(q.NewRecorder), + "NewRequest": reflect.ValueOf(q.NewRequest), + "NewRequestWithContext": reflect.ValueOf(q.NewRequestWithContext), + "NewServer": reflect.ValueOf(q.NewServer), + "NewTLSServer": reflect.ValueOf(q.NewTLSServer), + "NewUnstartedServer": reflect.ValueOf(q.NewUnstartedServer), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "DefaultRemoteAddr": {"untyped string", constant.MakeString(string(q.DefaultRemoteAddr))}, + }, + }) +} diff --git a/pkg/net/http/httptrace/go121_export.go b/pkg/net/http/httptrace/go121_export.go index ec6e197a..0e9317ad 100755 --- a/pkg/net/http/httptrace/go121_export.go +++ b/pkg/net/http/httptrace/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package httptrace diff --git a/pkg/net/http/httptrace/go122_export.go b/pkg/net/http/httptrace/go122_export.go new file mode 100755 index 00000000..558368f5 --- /dev/null +++ b/pkg/net/http/httptrace/go122_export.go @@ -0,0 +1,46 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package httptrace + +import ( + q "net/http/httptrace" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "httptrace", + Path: "net/http/httptrace", + Deps: map[string]string{ + "context": "context", + "crypto/tls": "tls", + "internal/nettrace": "nettrace", + "net": "net", + "net/textproto": "textproto", + "reflect": "reflect", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "ClientTrace": reflect.TypeOf((*q.ClientTrace)(nil)).Elem(), + "DNSDoneInfo": reflect.TypeOf((*q.DNSDoneInfo)(nil)).Elem(), + "DNSStartInfo": reflect.TypeOf((*q.DNSStartInfo)(nil)).Elem(), + "GotConnInfo": reflect.TypeOf((*q.GotConnInfo)(nil)).Elem(), + "WroteRequestInfo": reflect.TypeOf((*q.WroteRequestInfo)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "ContextClientTrace": reflect.ValueOf(q.ContextClientTrace), + "WithClientTrace": reflect.ValueOf(q.WithClientTrace), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/http/httptrace/go123_export.go b/pkg/net/http/httptrace/go123_export.go new file mode 100755 index 00000000..ddeb225f --- /dev/null +++ b/pkg/net/http/httptrace/go123_export.go @@ -0,0 +1,46 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package httptrace + +import ( + q "net/http/httptrace" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "httptrace", + Path: "net/http/httptrace", + Deps: map[string]string{ + "context": "context", + "crypto/tls": "tls", + "internal/nettrace": "nettrace", + "net": "net", + "net/textproto": "textproto", + "reflect": "reflect", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "ClientTrace": reflect.TypeOf((*q.ClientTrace)(nil)).Elem(), + "DNSDoneInfo": reflect.TypeOf((*q.DNSDoneInfo)(nil)).Elem(), + "DNSStartInfo": reflect.TypeOf((*q.DNSStartInfo)(nil)).Elem(), + "GotConnInfo": reflect.TypeOf((*q.GotConnInfo)(nil)).Elem(), + "WroteRequestInfo": reflect.TypeOf((*q.WroteRequestInfo)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "ContextClientTrace": reflect.ValueOf(q.ContextClientTrace), + "WithClientTrace": reflect.ValueOf(q.WithClientTrace), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/http/httputil/go121_export.go b/pkg/net/http/httputil/go121_export.go index f382451b..26395b0b 100755 --- a/pkg/net/http/httputil/go121_export.go +++ b/pkg/net/http/httputil/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package httputil diff --git a/pkg/net/http/httputil/go122_export.go b/pkg/net/http/httputil/go122_export.go new file mode 100755 index 00000000..a136daa5 --- /dev/null +++ b/pkg/net/http/httputil/go122_export.go @@ -0,0 +1,71 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package httputil + +import ( + q "net/http/httputil" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "httputil", + Path: "net/http/httputil", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "context": "context", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "log": "log", + "mime": "mime", + "net": "net", + "net/http": "http", + "net/http/httptrace": "httptrace", + "net/http/internal": "internal", + "net/http/internal/ascii": "ascii", + "net/textproto": "textproto", + "net/url": "url", + "strings": "strings", + "sync": "sync", + "time": "time", + "vendor/golang.org/x/net/http/httpguts": "httpguts", + }, + Interfaces: map[string]reflect.Type{ + "BufferPool": reflect.TypeOf((*q.BufferPool)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "ClientConn": reflect.TypeOf((*q.ClientConn)(nil)).Elem(), + "ProxyRequest": reflect.TypeOf((*q.ProxyRequest)(nil)).Elem(), + "ReverseProxy": reflect.TypeOf((*q.ReverseProxy)(nil)).Elem(), + "ServerConn": reflect.TypeOf((*q.ServerConn)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrClosed": reflect.ValueOf(&q.ErrClosed), + "ErrLineTooLong": reflect.ValueOf(&q.ErrLineTooLong), + "ErrPersistEOF": reflect.ValueOf(&q.ErrPersistEOF), + "ErrPipeline": reflect.ValueOf(&q.ErrPipeline), + }, + Funcs: map[string]reflect.Value{ + "DumpRequest": reflect.ValueOf(q.DumpRequest), + "DumpRequestOut": reflect.ValueOf(q.DumpRequestOut), + "DumpResponse": reflect.ValueOf(q.DumpResponse), + "NewChunkedReader": reflect.ValueOf(q.NewChunkedReader), + "NewChunkedWriter": reflect.ValueOf(q.NewChunkedWriter), + "NewClientConn": reflect.ValueOf(q.NewClientConn), + "NewProxyClientConn": reflect.ValueOf(q.NewProxyClientConn), + "NewServerConn": reflect.ValueOf(q.NewServerConn), + "NewSingleHostReverseProxy": reflect.ValueOf(q.NewSingleHostReverseProxy), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/http/httputil/go123_export.go b/pkg/net/http/httputil/go123_export.go new file mode 100755 index 00000000..59074e30 --- /dev/null +++ b/pkg/net/http/httputil/go123_export.go @@ -0,0 +1,71 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package httputil + +import ( + q "net/http/httputil" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "httputil", + Path: "net/http/httputil", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "context": "context", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "log": "log", + "mime": "mime", + "net": "net", + "net/http": "http", + "net/http/httptrace": "httptrace", + "net/http/internal": "internal", + "net/http/internal/ascii": "ascii", + "net/textproto": "textproto", + "net/url": "url", + "strings": "strings", + "sync": "sync", + "time": "time", + "vendor/golang.org/x/net/http/httpguts": "httpguts", + }, + Interfaces: map[string]reflect.Type{ + "BufferPool": reflect.TypeOf((*q.BufferPool)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "ClientConn": reflect.TypeOf((*q.ClientConn)(nil)).Elem(), + "ProxyRequest": reflect.TypeOf((*q.ProxyRequest)(nil)).Elem(), + "ReverseProxy": reflect.TypeOf((*q.ReverseProxy)(nil)).Elem(), + "ServerConn": reflect.TypeOf((*q.ServerConn)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrClosed": reflect.ValueOf(&q.ErrClosed), + "ErrLineTooLong": reflect.ValueOf(&q.ErrLineTooLong), + "ErrPersistEOF": reflect.ValueOf(&q.ErrPersistEOF), + "ErrPipeline": reflect.ValueOf(&q.ErrPipeline), + }, + Funcs: map[string]reflect.Value{ + "DumpRequest": reflect.ValueOf(q.DumpRequest), + "DumpRequestOut": reflect.ValueOf(q.DumpRequestOut), + "DumpResponse": reflect.ValueOf(q.DumpResponse), + "NewChunkedReader": reflect.ValueOf(q.NewChunkedReader), + "NewChunkedWriter": reflect.ValueOf(q.NewChunkedWriter), + "NewClientConn": reflect.ValueOf(q.NewClientConn), + "NewProxyClientConn": reflect.ValueOf(q.NewProxyClientConn), + "NewServerConn": reflect.ValueOf(q.NewServerConn), + "NewSingleHostReverseProxy": reflect.ValueOf(q.NewSingleHostReverseProxy), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/http/pprof/go121_export.go b/pkg/net/http/pprof/go121_export.go index ce1bfca5..dc222a6f 100755 --- a/pkg/net/http/pprof/go121_export.go +++ b/pkg/net/http/pprof/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package pprof diff --git a/pkg/net/http/pprof/go122_export.go b/pkg/net/http/pprof/go122_export.go new file mode 100755 index 00000000..14dfe65d --- /dev/null +++ b/pkg/net/http/pprof/go122_export.go @@ -0,0 +1,55 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package pprof + +import ( + q "net/http/pprof" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "pprof", + Path: "net/http/pprof", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "context": "context", + "fmt": "fmt", + "html": "html", + "internal/profile": "profile", + "io": "io", + "log": "log", + "net/http": "http", + "net/url": "url", + "os": "os", + "runtime": "runtime", + "runtime/pprof": "pprof", + "runtime/trace": "trace", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Cmdline": reflect.ValueOf(q.Cmdline), + "Handler": reflect.ValueOf(q.Handler), + "Index": reflect.ValueOf(q.Index), + "Profile": reflect.ValueOf(q.Profile), + "Symbol": reflect.ValueOf(q.Symbol), + "Trace": reflect.ValueOf(q.Trace), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/http/pprof/go123_export.go b/pkg/net/http/pprof/go123_export.go new file mode 100755 index 00000000..8d99f1e7 --- /dev/null +++ b/pkg/net/http/pprof/go123_export.go @@ -0,0 +1,56 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package pprof + +import ( + q "net/http/pprof" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "pprof", + Path: "net/http/pprof", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "context": "context", + "fmt": "fmt", + "html": "html", + "internal/godebug": "godebug", + "internal/profile": "profile", + "io": "io", + "log": "log", + "net/http": "http", + "net/url": "url", + "os": "os", + "runtime": "runtime", + "runtime/pprof": "pprof", + "runtime/trace": "trace", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Cmdline": reflect.ValueOf(q.Cmdline), + "Handler": reflect.ValueOf(q.Handler), + "Index": reflect.ValueOf(q.Index), + "Profile": reflect.ValueOf(q.Profile), + "Symbol": reflect.ValueOf(q.Symbol), + "Trace": reflect.ValueOf(q.Trace), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/mail/go121_export.go b/pkg/net/mail/go121_export.go index 2f78fb2a..645d7d49 100755 --- a/pkg/net/mail/go121_export.go +++ b/pkg/net/mail/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package mail diff --git a/pkg/net/mail/go122_export.go b/pkg/net/mail/go122_export.go new file mode 100755 index 00000000..342963b2 --- /dev/null +++ b/pkg/net/mail/go122_export.go @@ -0,0 +1,53 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package mail + +import ( + q "net/mail" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "mail", + Path: "net/mail", + Deps: map[string]string{ + "bufio": "bufio", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "log": "log", + "mime": "mime", + "net/textproto": "textproto", + "strings": "strings", + "sync": "sync", + "time": "time", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Address": reflect.TypeOf((*q.Address)(nil)).Elem(), + "AddressParser": reflect.TypeOf((*q.AddressParser)(nil)).Elem(), + "Header": reflect.TypeOf((*q.Header)(nil)).Elem(), + "Message": reflect.TypeOf((*q.Message)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrHeaderNotPresent": reflect.ValueOf(&q.ErrHeaderNotPresent), + }, + Funcs: map[string]reflect.Value{ + "ParseAddress": reflect.ValueOf(q.ParseAddress), + "ParseAddressList": reflect.ValueOf(q.ParseAddressList), + "ParseDate": reflect.ValueOf(q.ParseDate), + "ReadMessage": reflect.ValueOf(q.ReadMessage), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/mail/go123_export.go b/pkg/net/mail/go123_export.go new file mode 100755 index 00000000..c97636d3 --- /dev/null +++ b/pkg/net/mail/go123_export.go @@ -0,0 +1,54 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package mail + +import ( + q "net/mail" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "mail", + Path: "net/mail", + Deps: map[string]string{ + "bufio": "bufio", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "log": "log", + "mime": "mime", + "net": "net", + "net/textproto": "textproto", + "strings": "strings", + "sync": "sync", + "time": "time", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Address": reflect.TypeOf((*q.Address)(nil)).Elem(), + "AddressParser": reflect.TypeOf((*q.AddressParser)(nil)).Elem(), + "Header": reflect.TypeOf((*q.Header)(nil)).Elem(), + "Message": reflect.TypeOf((*q.Message)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrHeaderNotPresent": reflect.ValueOf(&q.ErrHeaderNotPresent), + }, + Funcs: map[string]reflect.Value{ + "ParseAddress": reflect.ValueOf(q.ParseAddress), + "ParseAddressList": reflect.ValueOf(q.ParseAddressList), + "ParseDate": reflect.ValueOf(q.ParseDate), + "ReadMessage": reflect.ValueOf(q.ReadMessage), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/netip/go121_export.go b/pkg/net/netip/go121_export.go index 427e7618..464d6cbb 100755 --- a/pkg/net/netip/go121_export.go +++ b/pkg/net/netip/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package netip diff --git a/pkg/net/netip/go122_export.go b/pkg/net/netip/go122_export.go new file mode 100755 index 00000000..3fccf892 --- /dev/null +++ b/pkg/net/netip/go122_export.go @@ -0,0 +1,59 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package netip + +import ( + q "net/netip" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "netip", + Path: "net/netip", + Deps: map[string]string{ + "cmp": "cmp", + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/intern": "intern", + "internal/itoa": "itoa", + "math": "math", + "math/bits": "bits", + "strconv": "strconv", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Addr": reflect.TypeOf((*q.Addr)(nil)).Elem(), + "AddrPort": reflect.TypeOf((*q.AddrPort)(nil)).Elem(), + "Prefix": reflect.TypeOf((*q.Prefix)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "AddrFrom16": reflect.ValueOf(q.AddrFrom16), + "AddrFrom4": reflect.ValueOf(q.AddrFrom4), + "AddrFromSlice": reflect.ValueOf(q.AddrFromSlice), + "AddrPortFrom": reflect.ValueOf(q.AddrPortFrom), + "IPv4Unspecified": reflect.ValueOf(q.IPv4Unspecified), + "IPv6LinkLocalAllNodes": reflect.ValueOf(q.IPv6LinkLocalAllNodes), + "IPv6LinkLocalAllRouters": reflect.ValueOf(q.IPv6LinkLocalAllRouters), + "IPv6Loopback": reflect.ValueOf(q.IPv6Loopback), + "IPv6Unspecified": reflect.ValueOf(q.IPv6Unspecified), + "MustParseAddr": reflect.ValueOf(q.MustParseAddr), + "MustParseAddrPort": reflect.ValueOf(q.MustParseAddrPort), + "MustParsePrefix": reflect.ValueOf(q.MustParsePrefix), + "ParseAddr": reflect.ValueOf(q.ParseAddr), + "ParseAddrPort": reflect.ValueOf(q.ParseAddrPort), + "ParsePrefix": reflect.ValueOf(q.ParsePrefix), + "PrefixFrom": reflect.ValueOf(q.PrefixFrom), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/netip/go123_export.go b/pkg/net/netip/go123_export.go new file mode 100755 index 00000000..be2ddf5b --- /dev/null +++ b/pkg/net/netip/go123_export.go @@ -0,0 +1,60 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package netip + +import ( + q "net/netip" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "netip", + Path: "net/netip", + Deps: map[string]string{ + "cmp": "cmp", + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/itoa": "itoa", + "math": "math", + "math/bits": "bits", + "strconv": "strconv", + "unique": "unique", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Addr": reflect.TypeOf((*q.Addr)(nil)).Elem(), + "AddrPort": reflect.TypeOf((*q.AddrPort)(nil)).Elem(), + "Prefix": reflect.TypeOf((*q.Prefix)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "AddrFrom16": reflect.ValueOf(q.AddrFrom16), + "AddrFrom4": reflect.ValueOf(q.AddrFrom4), + "AddrFromSlice": reflect.ValueOf(q.AddrFromSlice), + "AddrPortFrom": reflect.ValueOf(q.AddrPortFrom), + "IPv4Unspecified": reflect.ValueOf(q.IPv4Unspecified), + "IPv6LinkLocalAllNodes": reflect.ValueOf(q.IPv6LinkLocalAllNodes), + "IPv6LinkLocalAllRouters": reflect.ValueOf(q.IPv6LinkLocalAllRouters), + "IPv6Loopback": reflect.ValueOf(q.IPv6Loopback), + "IPv6Unspecified": reflect.ValueOf(q.IPv6Unspecified), + "MustParseAddr": reflect.ValueOf(q.MustParseAddr), + "MustParseAddrPort": reflect.ValueOf(q.MustParseAddrPort), + "MustParsePrefix": reflect.ValueOf(q.MustParsePrefix), + "ParseAddr": reflect.ValueOf(q.ParseAddr), + "ParseAddrPort": reflect.ValueOf(q.ParseAddrPort), + "ParsePrefix": reflect.ValueOf(q.ParsePrefix), + "PrefixFrom": reflect.ValueOf(q.PrefixFrom), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/rpc/go121_export.go b/pkg/net/rpc/go121_export.go index 49831040..7ca9828d 100755 --- a/pkg/net/rpc/go121_export.go +++ b/pkg/net/rpc/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package rpc diff --git a/pkg/net/rpc/go122_export.go b/pkg/net/rpc/go122_export.go new file mode 100755 index 00000000..f43b96c1 --- /dev/null +++ b/pkg/net/rpc/go122_export.go @@ -0,0 +1,75 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package rpc + +import ( + q "net/rpc" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "rpc", + Path: "net/rpc", + Deps: map[string]string{ + "bufio": "bufio", + "encoding/gob": "gob", + "errors": "errors", + "fmt": "fmt", + "go/token": "token", + "html/template": "template", + "io": "io", + "log": "log", + "net": "net", + "net/http": "http", + "reflect": "reflect", + "sort": "sort", + "strings": "strings", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{ + "ClientCodec": reflect.TypeOf((*q.ClientCodec)(nil)).Elem(), + "ServerCodec": reflect.TypeOf((*q.ServerCodec)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Call": reflect.TypeOf((*q.Call)(nil)).Elem(), + "Client": reflect.TypeOf((*q.Client)(nil)).Elem(), + "Request": reflect.TypeOf((*q.Request)(nil)).Elem(), + "Response": reflect.TypeOf((*q.Response)(nil)).Elem(), + "Server": reflect.TypeOf((*q.Server)(nil)).Elem(), + "ServerError": reflect.TypeOf((*q.ServerError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "DefaultServer": reflect.ValueOf(&q.DefaultServer), + "ErrShutdown": reflect.ValueOf(&q.ErrShutdown), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Dial": reflect.ValueOf(q.Dial), + "DialHTTP": reflect.ValueOf(q.DialHTTP), + "DialHTTPPath": reflect.ValueOf(q.DialHTTPPath), + "HandleHTTP": reflect.ValueOf(q.HandleHTTP), + "NewClient": reflect.ValueOf(q.NewClient), + "NewClientWithCodec": reflect.ValueOf(q.NewClientWithCodec), + "NewServer": reflect.ValueOf(q.NewServer), + "Register": reflect.ValueOf(q.Register), + "RegisterName": reflect.ValueOf(q.RegisterName), + "ServeCodec": reflect.ValueOf(q.ServeCodec), + "ServeConn": reflect.ValueOf(q.ServeConn), + "ServeRequest": reflect.ValueOf(q.ServeRequest), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "DefaultDebugPath": {"untyped string", constant.MakeString(string(q.DefaultDebugPath))}, + "DefaultRPCPath": {"untyped string", constant.MakeString(string(q.DefaultRPCPath))}, + }, + }) +} diff --git a/pkg/net/rpc/go123_export.go b/pkg/net/rpc/go123_export.go new file mode 100755 index 00000000..70a1a772 --- /dev/null +++ b/pkg/net/rpc/go123_export.go @@ -0,0 +1,75 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package rpc + +import ( + q "net/rpc" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "rpc", + Path: "net/rpc", + Deps: map[string]string{ + "bufio": "bufio", + "encoding/gob": "gob", + "errors": "errors", + "fmt": "fmt", + "go/token": "token", + "html/template": "template", + "io": "io", + "log": "log", + "net": "net", + "net/http": "http", + "reflect": "reflect", + "slices": "slices", + "strings": "strings", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{ + "ClientCodec": reflect.TypeOf((*q.ClientCodec)(nil)).Elem(), + "ServerCodec": reflect.TypeOf((*q.ServerCodec)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Call": reflect.TypeOf((*q.Call)(nil)).Elem(), + "Client": reflect.TypeOf((*q.Client)(nil)).Elem(), + "Request": reflect.TypeOf((*q.Request)(nil)).Elem(), + "Response": reflect.TypeOf((*q.Response)(nil)).Elem(), + "Server": reflect.TypeOf((*q.Server)(nil)).Elem(), + "ServerError": reflect.TypeOf((*q.ServerError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "DefaultServer": reflect.ValueOf(&q.DefaultServer), + "ErrShutdown": reflect.ValueOf(&q.ErrShutdown), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Dial": reflect.ValueOf(q.Dial), + "DialHTTP": reflect.ValueOf(q.DialHTTP), + "DialHTTPPath": reflect.ValueOf(q.DialHTTPPath), + "HandleHTTP": reflect.ValueOf(q.HandleHTTP), + "NewClient": reflect.ValueOf(q.NewClient), + "NewClientWithCodec": reflect.ValueOf(q.NewClientWithCodec), + "NewServer": reflect.ValueOf(q.NewServer), + "Register": reflect.ValueOf(q.Register), + "RegisterName": reflect.ValueOf(q.RegisterName), + "ServeCodec": reflect.ValueOf(q.ServeCodec), + "ServeConn": reflect.ValueOf(q.ServeConn), + "ServeRequest": reflect.ValueOf(q.ServeRequest), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "DefaultDebugPath": {"untyped string", constant.MakeString(string(q.DefaultDebugPath))}, + "DefaultRPCPath": {"untyped string", constant.MakeString(string(q.DefaultRPCPath))}, + }, + }) +} diff --git a/pkg/net/rpc/jsonrpc/go121_export.go b/pkg/net/rpc/jsonrpc/go121_export.go index ab356d3d..2088a445 100755 --- a/pkg/net/rpc/jsonrpc/go121_export.go +++ b/pkg/net/rpc/jsonrpc/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package jsonrpc diff --git a/pkg/net/rpc/jsonrpc/go122_export.go b/pkg/net/rpc/jsonrpc/go122_export.go new file mode 100755 index 00000000..c08f8d22 --- /dev/null +++ b/pkg/net/rpc/jsonrpc/go122_export.go @@ -0,0 +1,43 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package jsonrpc + +import ( + q "net/rpc/jsonrpc" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "jsonrpc", + Path: "net/rpc/jsonrpc", + Deps: map[string]string{ + "encoding/json": "json", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "net": "net", + "net/rpc": "rpc", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Dial": reflect.ValueOf(q.Dial), + "NewClient": reflect.ValueOf(q.NewClient), + "NewClientCodec": reflect.ValueOf(q.NewClientCodec), + "NewServerCodec": reflect.ValueOf(q.NewServerCodec), + "ServeConn": reflect.ValueOf(q.ServeConn), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/rpc/jsonrpc/go123_export.go b/pkg/net/rpc/jsonrpc/go123_export.go new file mode 100755 index 00000000..487f1728 --- /dev/null +++ b/pkg/net/rpc/jsonrpc/go123_export.go @@ -0,0 +1,43 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package jsonrpc + +import ( + q "net/rpc/jsonrpc" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "jsonrpc", + Path: "net/rpc/jsonrpc", + Deps: map[string]string{ + "encoding/json": "json", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "net": "net", + "net/rpc": "rpc", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Dial": reflect.ValueOf(q.Dial), + "NewClient": reflect.ValueOf(q.NewClient), + "NewClientCodec": reflect.ValueOf(q.NewClientCodec), + "NewServerCodec": reflect.ValueOf(q.NewServerCodec), + "ServeConn": reflect.ValueOf(q.ServeConn), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/smtp/go121_export.go b/pkg/net/smtp/go121_export.go index 79da6c53..24be69b7 100755 --- a/pkg/net/smtp/go121_export.go +++ b/pkg/net/smtp/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package smtp diff --git a/pkg/net/smtp/go122_export.go b/pkg/net/smtp/go122_export.go new file mode 100755 index 00000000..0ea48777 --- /dev/null +++ b/pkg/net/smtp/go122_export.go @@ -0,0 +1,51 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package smtp + +import ( + q "net/smtp" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "smtp", + Path: "net/smtp", + Deps: map[string]string{ + "crypto/hmac": "hmac", + "crypto/md5": "md5", + "crypto/tls": "tls", + "encoding/base64": "base64", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "net": "net", + "net/textproto": "textproto", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{ + "Auth": reflect.TypeOf((*q.Auth)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Client": reflect.TypeOf((*q.Client)(nil)).Elem(), + "ServerInfo": reflect.TypeOf((*q.ServerInfo)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "CRAMMD5Auth": reflect.ValueOf(q.CRAMMD5Auth), + "Dial": reflect.ValueOf(q.Dial), + "NewClient": reflect.ValueOf(q.NewClient), + "PlainAuth": reflect.ValueOf(q.PlainAuth), + "SendMail": reflect.ValueOf(q.SendMail), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/smtp/go123_export.go b/pkg/net/smtp/go123_export.go new file mode 100755 index 00000000..5eda5b43 --- /dev/null +++ b/pkg/net/smtp/go123_export.go @@ -0,0 +1,51 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package smtp + +import ( + q "net/smtp" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "smtp", + Path: "net/smtp", + Deps: map[string]string{ + "crypto/hmac": "hmac", + "crypto/md5": "md5", + "crypto/tls": "tls", + "encoding/base64": "base64", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "net": "net", + "net/textproto": "textproto", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{ + "Auth": reflect.TypeOf((*q.Auth)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Client": reflect.TypeOf((*q.Client)(nil)).Elem(), + "ServerInfo": reflect.TypeOf((*q.ServerInfo)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "CRAMMD5Auth": reflect.ValueOf(q.CRAMMD5Auth), + "Dial": reflect.ValueOf(q.Dial), + "NewClient": reflect.ValueOf(q.NewClient), + "PlainAuth": reflect.ValueOf(q.PlainAuth), + "SendMail": reflect.ValueOf(q.SendMail), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/textproto/go121_export.go b/pkg/net/textproto/go121_export.go index bcbad5a5..6cd487e5 100755 --- a/pkg/net/textproto/go121_export.go +++ b/pkg/net/textproto/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package textproto diff --git a/pkg/net/textproto/go122_export.go b/pkg/net/textproto/go122_export.go new file mode 100755 index 00000000..ec7b2b4e --- /dev/null +++ b/pkg/net/textproto/go122_export.go @@ -0,0 +1,56 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package textproto + +import ( + q "net/textproto" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "textproto", + Path: "net/textproto", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "math": "math", + "net": "net", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), + "MIMEHeader": reflect.TypeOf((*q.MIMEHeader)(nil)).Elem(), + "Pipeline": reflect.TypeOf((*q.Pipeline)(nil)).Elem(), + "ProtocolError": reflect.TypeOf((*q.ProtocolError)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "CanonicalMIMEHeaderKey": reflect.ValueOf(q.CanonicalMIMEHeaderKey), + "Dial": reflect.ValueOf(q.Dial), + "NewConn": reflect.ValueOf(q.NewConn), + "NewReader": reflect.ValueOf(q.NewReader), + "NewWriter": reflect.ValueOf(q.NewWriter), + "TrimBytes": reflect.ValueOf(q.TrimBytes), + "TrimString": reflect.ValueOf(q.TrimString), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/textproto/go123_export.go b/pkg/net/textproto/go123_export.go new file mode 100755 index 00000000..7634c8b2 --- /dev/null +++ b/pkg/net/textproto/go123_export.go @@ -0,0 +1,57 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package textproto + +import ( + q "net/textproto" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "textproto", + Path: "net/textproto", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "math": "math", + "net": "net", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), + "MIMEHeader": reflect.TypeOf((*q.MIMEHeader)(nil)).Elem(), + "Pipeline": reflect.TypeOf((*q.Pipeline)(nil)).Elem(), + "ProtocolError": reflect.TypeOf((*q.ProtocolError)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "CanonicalMIMEHeaderKey": reflect.ValueOf(q.CanonicalMIMEHeaderKey), + "Dial": reflect.ValueOf(q.Dial), + "NewConn": reflect.ValueOf(q.NewConn), + "NewReader": reflect.ValueOf(q.NewReader), + "NewWriter": reflect.ValueOf(q.NewWriter), + "TrimBytes": reflect.ValueOf(q.TrimBytes), + "TrimString": reflect.ValueOf(q.TrimString), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/url/go121_export.go b/pkg/net/url/go121_export.go index 561cd6ee..0a5094be 100755 --- a/pkg/net/url/go121_export.go +++ b/pkg/net/url/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package url diff --git a/pkg/net/url/go122_export.go b/pkg/net/url/go122_export.go new file mode 100755 index 00000000..e4894921 --- /dev/null +++ b/pkg/net/url/go122_export.go @@ -0,0 +1,54 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package url + +import ( + q "net/url" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "url", + Path: "net/url", + Deps: map[string]string{ + "errors": "errors", + "fmt": "fmt", + "path": "path", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), + "EscapeError": reflect.TypeOf((*q.EscapeError)(nil)).Elem(), + "InvalidHostError": reflect.TypeOf((*q.InvalidHostError)(nil)).Elem(), + "URL": reflect.TypeOf((*q.URL)(nil)).Elem(), + "Userinfo": reflect.TypeOf((*q.Userinfo)(nil)).Elem(), + "Values": reflect.TypeOf((*q.Values)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "JoinPath": reflect.ValueOf(q.JoinPath), + "Parse": reflect.ValueOf(q.Parse), + "ParseQuery": reflect.ValueOf(q.ParseQuery), + "ParseRequestURI": reflect.ValueOf(q.ParseRequestURI), + "PathEscape": reflect.ValueOf(q.PathEscape), + "PathUnescape": reflect.ValueOf(q.PathUnescape), + "QueryEscape": reflect.ValueOf(q.QueryEscape), + "QueryUnescape": reflect.ValueOf(q.QueryUnescape), + "User": reflect.ValueOf(q.User), + "UserPassword": reflect.ValueOf(q.UserPassword), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/net/url/go123_export.go b/pkg/net/url/go123_export.go new file mode 100755 index 00000000..297bb2d1 --- /dev/null +++ b/pkg/net/url/go123_export.go @@ -0,0 +1,55 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package url + +import ( + q "net/url" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "url", + Path: "net/url", + Deps: map[string]string{ + "errors": "errors", + "fmt": "fmt", + "path": "path", + "slices": "slices", + "strconv": "strconv", + "strings": "strings", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), + "EscapeError": reflect.TypeOf((*q.EscapeError)(nil)).Elem(), + "InvalidHostError": reflect.TypeOf((*q.InvalidHostError)(nil)).Elem(), + "URL": reflect.TypeOf((*q.URL)(nil)).Elem(), + "Userinfo": reflect.TypeOf((*q.Userinfo)(nil)).Elem(), + "Values": reflect.TypeOf((*q.Values)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "JoinPath": reflect.ValueOf(q.JoinPath), + "Parse": reflect.ValueOf(q.Parse), + "ParseQuery": reflect.ValueOf(q.ParseQuery), + "ParseRequestURI": reflect.ValueOf(q.ParseRequestURI), + "PathEscape": reflect.ValueOf(q.PathEscape), + "PathUnescape": reflect.ValueOf(q.PathUnescape), + "QueryEscape": reflect.ValueOf(q.QueryEscape), + "QueryUnescape": reflect.ValueOf(q.QueryUnescape), + "User": reflect.ValueOf(q.User), + "UserPassword": reflect.ValueOf(q.UserPassword), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/os/exec/go121_export.go b/pkg/os/exec/go121_export.go index 02a736c2..dfb96518 100755 --- a/pkg/os/exec/go121_export.go +++ b/pkg/os/exec/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package exec diff --git a/pkg/os/exec/go122_export.go b/pkg/os/exec/go122_export.go new file mode 100755 index 00000000..1998dc68 --- /dev/null +++ b/pkg/os/exec/go122_export.go @@ -0,0 +1,57 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package exec + +import ( + q "os/exec" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "exec", + Path: "os/exec", + Deps: map[string]string{ + "bytes": "bytes", + "context": "context", + "errors": "errors", + "internal/godebug": "godebug", + "internal/syscall/execenv": "execenv", + "internal/syscall/unix": "unix", + "io": "io", + "io/fs": "fs", + "os": "os", + "path/filepath": "filepath", + "runtime": "runtime", + "strconv": "strconv", + "strings": "strings", + "syscall": "syscall", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Cmd": reflect.TypeOf((*q.Cmd)(nil)).Elem(), + "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), + "ExitError": reflect.TypeOf((*q.ExitError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrDot": reflect.ValueOf(&q.ErrDot), + "ErrNotFound": reflect.ValueOf(&q.ErrNotFound), + "ErrWaitDelay": reflect.ValueOf(&q.ErrWaitDelay), + }, + Funcs: map[string]reflect.Value{ + "Command": reflect.ValueOf(q.Command), + "CommandContext": reflect.ValueOf(q.CommandContext), + "LookPath": reflect.ValueOf(q.LookPath), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/os/exec/go123_export.go b/pkg/os/exec/go123_export.go new file mode 100755 index 00000000..5c6cbf67 --- /dev/null +++ b/pkg/os/exec/go123_export.go @@ -0,0 +1,57 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package exec + +import ( + q "os/exec" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "exec", + Path: "os/exec", + Deps: map[string]string{ + "bytes": "bytes", + "context": "context", + "errors": "errors", + "internal/godebug": "godebug", + "internal/syscall/execenv": "execenv", + "internal/syscall/unix": "unix", + "io": "io", + "io/fs": "fs", + "os": "os", + "path/filepath": "filepath", + "runtime": "runtime", + "strconv": "strconv", + "strings": "strings", + "syscall": "syscall", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Cmd": reflect.TypeOf((*q.Cmd)(nil)).Elem(), + "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), + "ExitError": reflect.TypeOf((*q.ExitError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrDot": reflect.ValueOf(&q.ErrDot), + "ErrNotFound": reflect.ValueOf(&q.ErrNotFound), + "ErrWaitDelay": reflect.ValueOf(&q.ErrWaitDelay), + }, + Funcs: map[string]reflect.Value{ + "Command": reflect.ValueOf(q.Command), + "CommandContext": reflect.ValueOf(q.CommandContext), + "LookPath": reflect.ValueOf(q.LookPath), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/os/go121_export.go b/pkg/os/go121_export.go index c924c580..6659b307 100755 --- a/pkg/os/go121_export.go +++ b/pkg/os/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package os diff --git a/pkg/os/go122_export.go b/pkg/os/go122_export.go new file mode 100755 index 00000000..b16d3274 --- /dev/null +++ b/pkg/os/go122_export.go @@ -0,0 +1,169 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package os + +import ( + q "os" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "os", + Path: "os", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/poll": "poll", + "internal/safefilepath": "safefilepath", + "internal/syscall/execenv": "execenv", + "internal/syscall/unix": "unix", + "internal/testlog": "testlog", + "io": "io", + "io/fs": "fs", + "runtime": "runtime", + "sort": "sort", + "sync": "sync", + "sync/atomic": "atomic", + "syscall": "syscall", + "time": "time", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "LinkError": reflect.TypeOf((*q.LinkError)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Process": reflect.TypeOf((*q.Process)(nil)).Elem(), + "ProcessState": reflect.TypeOf((*q.ProcessState)(nil)).Elem(), + "SyscallError": reflect.TypeOf((*q.SyscallError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{ + "DirEntry": reflect.TypeOf((*q.DirEntry)(nil)).Elem(), + "FileInfo": reflect.TypeOf((*q.FileInfo)(nil)).Elem(), + "FileMode": reflect.TypeOf((*q.FileMode)(nil)).Elem(), + "PathError": reflect.TypeOf((*q.PathError)(nil)).Elem(), + }, + Vars: map[string]reflect.Value{ + "Args": reflect.ValueOf(&q.Args), + "ErrClosed": reflect.ValueOf(&q.ErrClosed), + "ErrDeadlineExceeded": reflect.ValueOf(&q.ErrDeadlineExceeded), + "ErrExist": reflect.ValueOf(&q.ErrExist), + "ErrInvalid": reflect.ValueOf(&q.ErrInvalid), + "ErrNoDeadline": reflect.ValueOf(&q.ErrNoDeadline), + "ErrNotExist": reflect.ValueOf(&q.ErrNotExist), + "ErrPermission": reflect.ValueOf(&q.ErrPermission), + "ErrProcessDone": reflect.ValueOf(&q.ErrProcessDone), + "Interrupt": reflect.ValueOf(&q.Interrupt), + "Kill": reflect.ValueOf(&q.Kill), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chtimes": reflect.ValueOf(q.Chtimes), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Create": reflect.ValueOf(q.Create), + "CreateTemp": reflect.ValueOf(q.CreateTemp), + "DirFS": reflect.ValueOf(q.DirFS), + "Environ": reflect.ValueOf(q.Environ), + "Executable": reflect.ValueOf(q.Executable), + "Exit": reflect.ValueOf(q.Exit), + "Expand": reflect.ValueOf(q.Expand), + "ExpandEnv": reflect.ValueOf(q.ExpandEnv), + "FindProcess": reflect.ValueOf(q.FindProcess), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Hostname": reflect.ValueOf(q.Hostname), + "IsExist": reflect.ValueOf(q.IsExist), + "IsNotExist": reflect.ValueOf(q.IsNotExist), + "IsPathSeparator": reflect.ValueOf(q.IsPathSeparator), + "IsPermission": reflect.ValueOf(q.IsPermission), + "IsTimeout": reflect.ValueOf(q.IsTimeout), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "LookupEnv": reflect.ValueOf(q.LookupEnv), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "MkdirAll": reflect.ValueOf(q.MkdirAll), + "MkdirTemp": reflect.ValueOf(q.MkdirTemp), + "NewFile": reflect.ValueOf(q.NewFile), + "NewSyscallError": reflect.ValueOf(q.NewSyscallError), + "Open": reflect.ValueOf(q.Open), + "OpenFile": reflect.ValueOf(q.OpenFile), + "Pipe": reflect.ValueOf(q.Pipe), + "ReadDir": reflect.ValueOf(q.ReadDir), + "ReadFile": reflect.ValueOf(q.ReadFile), + "Readlink": reflect.ValueOf(q.Readlink), + "Remove": reflect.ValueOf(q.Remove), + "RemoveAll": reflect.ValueOf(q.RemoveAll), + "Rename": reflect.ValueOf(q.Rename), + "SameFile": reflect.ValueOf(q.SameFile), + "Setenv": reflect.ValueOf(q.Setenv), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Symlink": reflect.ValueOf(q.Symlink), + "TempDir": reflect.ValueOf(q.TempDir), + "Truncate": reflect.ValueOf(q.Truncate), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "UserCacheDir": reflect.ValueOf(q.UserCacheDir), + "UserConfigDir": reflect.ValueOf(q.UserConfigDir), + "UserHomeDir": reflect.ValueOf(q.UserHomeDir), + "WriteFile": reflect.ValueOf(q.WriteFile), + }, + TypedConsts: map[string]igop.TypedConst{ + "ModeAppend": {reflect.TypeOf(q.ModeAppend), constant.MakeInt64(int64(q.ModeAppend))}, + "ModeCharDevice": {reflect.TypeOf(q.ModeCharDevice), constant.MakeInt64(int64(q.ModeCharDevice))}, + "ModeDevice": {reflect.TypeOf(q.ModeDevice), constant.MakeInt64(int64(q.ModeDevice))}, + "ModeDir": {reflect.TypeOf(q.ModeDir), constant.MakeInt64(int64(q.ModeDir))}, + "ModeExclusive": {reflect.TypeOf(q.ModeExclusive), constant.MakeInt64(int64(q.ModeExclusive))}, + "ModeIrregular": {reflect.TypeOf(q.ModeIrregular), constant.MakeInt64(int64(q.ModeIrregular))}, + "ModeNamedPipe": {reflect.TypeOf(q.ModeNamedPipe), constant.MakeInt64(int64(q.ModeNamedPipe))}, + "ModePerm": {reflect.TypeOf(q.ModePerm), constant.MakeInt64(int64(q.ModePerm))}, + "ModeSetgid": {reflect.TypeOf(q.ModeSetgid), constant.MakeInt64(int64(q.ModeSetgid))}, + "ModeSetuid": {reflect.TypeOf(q.ModeSetuid), constant.MakeInt64(int64(q.ModeSetuid))}, + "ModeSocket": {reflect.TypeOf(q.ModeSocket), constant.MakeInt64(int64(q.ModeSocket))}, + "ModeSticky": {reflect.TypeOf(q.ModeSticky), constant.MakeInt64(int64(q.ModeSticky))}, + "ModeSymlink": {reflect.TypeOf(q.ModeSymlink), constant.MakeInt64(int64(q.ModeSymlink))}, + "ModeTemporary": {reflect.TypeOf(q.ModeTemporary), constant.MakeInt64(int64(q.ModeTemporary))}, + "ModeType": {reflect.TypeOf(q.ModeType), constant.MakeInt64(int64(q.ModeType))}, + "O_APPEND": {reflect.TypeOf(q.O_APPEND), constant.MakeInt64(int64(q.O_APPEND))}, + "O_CREATE": {reflect.TypeOf(q.O_CREATE), constant.MakeInt64(int64(q.O_CREATE))}, + "O_EXCL": {reflect.TypeOf(q.O_EXCL), constant.MakeInt64(int64(q.O_EXCL))}, + "O_RDONLY": {reflect.TypeOf(q.O_RDONLY), constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {reflect.TypeOf(q.O_RDWR), constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {reflect.TypeOf(q.O_SYNC), constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {reflect.TypeOf(q.O_TRUNC), constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {reflect.TypeOf(q.O_WRONLY), constant.MakeInt64(int64(q.O_WRONLY))}, + "SEEK_CUR": {reflect.TypeOf(q.SEEK_CUR), constant.MakeInt64(int64(q.SEEK_CUR))}, + "SEEK_END": {reflect.TypeOf(q.SEEK_END), constant.MakeInt64(int64(q.SEEK_END))}, + "SEEK_SET": {reflect.TypeOf(q.SEEK_SET), constant.MakeInt64(int64(q.SEEK_SET))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "DevNull": {"untyped string", constant.MakeString(string(q.DevNull))}, + "PathListSeparator": {"untyped rune", constant.MakeInt64(int64(q.PathListSeparator))}, + "PathSeparator": {"untyped rune", constant.MakeInt64(int64(q.PathSeparator))}, + }, + }) +} diff --git a/pkg/os/go123_export.go b/pkg/os/go123_export.go new file mode 100755 index 00000000..bf634e94 --- /dev/null +++ b/pkg/os/go123_export.go @@ -0,0 +1,170 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package os + +import ( + q "os" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "os", + Path: "os", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/filepathlite": "filepathlite", + "internal/itoa": "itoa", + "internal/poll": "poll", + "internal/syscall/execenv": "execenv", + "internal/syscall/unix": "unix", + "internal/testlog": "testlog", + "io": "io", + "io/fs": "fs", + "runtime": "runtime", + "slices": "slices", + "sync": "sync", + "sync/atomic": "atomic", + "syscall": "syscall", + "time": "time", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "File": reflect.TypeOf((*q.File)(nil)).Elem(), + "LinkError": reflect.TypeOf((*q.LinkError)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Process": reflect.TypeOf((*q.Process)(nil)).Elem(), + "ProcessState": reflect.TypeOf((*q.ProcessState)(nil)).Elem(), + "SyscallError": reflect.TypeOf((*q.SyscallError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{ + "DirEntry": reflect.TypeOf((*q.DirEntry)(nil)).Elem(), + "FileInfo": reflect.TypeOf((*q.FileInfo)(nil)).Elem(), + "FileMode": reflect.TypeOf((*q.FileMode)(nil)).Elem(), + "PathError": reflect.TypeOf((*q.PathError)(nil)).Elem(), + }, + Vars: map[string]reflect.Value{ + "Args": reflect.ValueOf(&q.Args), + "ErrClosed": reflect.ValueOf(&q.ErrClosed), + "ErrDeadlineExceeded": reflect.ValueOf(&q.ErrDeadlineExceeded), + "ErrExist": reflect.ValueOf(&q.ErrExist), + "ErrInvalid": reflect.ValueOf(&q.ErrInvalid), + "ErrNoDeadline": reflect.ValueOf(&q.ErrNoDeadline), + "ErrNotExist": reflect.ValueOf(&q.ErrNotExist), + "ErrPermission": reflect.ValueOf(&q.ErrPermission), + "ErrProcessDone": reflect.ValueOf(&q.ErrProcessDone), + "Interrupt": reflect.ValueOf(&q.Interrupt), + "Kill": reflect.ValueOf(&q.Kill), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chtimes": reflect.ValueOf(q.Chtimes), + "Clearenv": reflect.ValueOf(q.Clearenv), + "CopyFS": reflect.ValueOf(q.CopyFS), + "Create": reflect.ValueOf(q.Create), + "CreateTemp": reflect.ValueOf(q.CreateTemp), + "DirFS": reflect.ValueOf(q.DirFS), + "Environ": reflect.ValueOf(q.Environ), + "Executable": reflect.ValueOf(q.Executable), + "Exit": reflect.ValueOf(q.Exit), + "Expand": reflect.ValueOf(q.Expand), + "ExpandEnv": reflect.ValueOf(q.ExpandEnv), + "FindProcess": reflect.ValueOf(q.FindProcess), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Hostname": reflect.ValueOf(q.Hostname), + "IsExist": reflect.ValueOf(q.IsExist), + "IsNotExist": reflect.ValueOf(q.IsNotExist), + "IsPathSeparator": reflect.ValueOf(q.IsPathSeparator), + "IsPermission": reflect.ValueOf(q.IsPermission), + "IsTimeout": reflect.ValueOf(q.IsTimeout), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "LookupEnv": reflect.ValueOf(q.LookupEnv), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "MkdirAll": reflect.ValueOf(q.MkdirAll), + "MkdirTemp": reflect.ValueOf(q.MkdirTemp), + "NewFile": reflect.ValueOf(q.NewFile), + "NewSyscallError": reflect.ValueOf(q.NewSyscallError), + "Open": reflect.ValueOf(q.Open), + "OpenFile": reflect.ValueOf(q.OpenFile), + "Pipe": reflect.ValueOf(q.Pipe), + "ReadDir": reflect.ValueOf(q.ReadDir), + "ReadFile": reflect.ValueOf(q.ReadFile), + "Readlink": reflect.ValueOf(q.Readlink), + "Remove": reflect.ValueOf(q.Remove), + "RemoveAll": reflect.ValueOf(q.RemoveAll), + "Rename": reflect.ValueOf(q.Rename), + "SameFile": reflect.ValueOf(q.SameFile), + "Setenv": reflect.ValueOf(q.Setenv), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Symlink": reflect.ValueOf(q.Symlink), + "TempDir": reflect.ValueOf(q.TempDir), + "Truncate": reflect.ValueOf(q.Truncate), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "UserCacheDir": reflect.ValueOf(q.UserCacheDir), + "UserConfigDir": reflect.ValueOf(q.UserConfigDir), + "UserHomeDir": reflect.ValueOf(q.UserHomeDir), + "WriteFile": reflect.ValueOf(q.WriteFile), + }, + TypedConsts: map[string]igop.TypedConst{ + "ModeAppend": {reflect.TypeOf(q.ModeAppend), constant.MakeInt64(int64(q.ModeAppend))}, + "ModeCharDevice": {reflect.TypeOf(q.ModeCharDevice), constant.MakeInt64(int64(q.ModeCharDevice))}, + "ModeDevice": {reflect.TypeOf(q.ModeDevice), constant.MakeInt64(int64(q.ModeDevice))}, + "ModeDir": {reflect.TypeOf(q.ModeDir), constant.MakeInt64(int64(q.ModeDir))}, + "ModeExclusive": {reflect.TypeOf(q.ModeExclusive), constant.MakeInt64(int64(q.ModeExclusive))}, + "ModeIrregular": {reflect.TypeOf(q.ModeIrregular), constant.MakeInt64(int64(q.ModeIrregular))}, + "ModeNamedPipe": {reflect.TypeOf(q.ModeNamedPipe), constant.MakeInt64(int64(q.ModeNamedPipe))}, + "ModePerm": {reflect.TypeOf(q.ModePerm), constant.MakeInt64(int64(q.ModePerm))}, + "ModeSetgid": {reflect.TypeOf(q.ModeSetgid), constant.MakeInt64(int64(q.ModeSetgid))}, + "ModeSetuid": {reflect.TypeOf(q.ModeSetuid), constant.MakeInt64(int64(q.ModeSetuid))}, + "ModeSocket": {reflect.TypeOf(q.ModeSocket), constant.MakeInt64(int64(q.ModeSocket))}, + "ModeSticky": {reflect.TypeOf(q.ModeSticky), constant.MakeInt64(int64(q.ModeSticky))}, + "ModeSymlink": {reflect.TypeOf(q.ModeSymlink), constant.MakeInt64(int64(q.ModeSymlink))}, + "ModeTemporary": {reflect.TypeOf(q.ModeTemporary), constant.MakeInt64(int64(q.ModeTemporary))}, + "ModeType": {reflect.TypeOf(q.ModeType), constant.MakeInt64(int64(q.ModeType))}, + "O_APPEND": {reflect.TypeOf(q.O_APPEND), constant.MakeInt64(int64(q.O_APPEND))}, + "O_CREATE": {reflect.TypeOf(q.O_CREATE), constant.MakeInt64(int64(q.O_CREATE))}, + "O_EXCL": {reflect.TypeOf(q.O_EXCL), constant.MakeInt64(int64(q.O_EXCL))}, + "O_RDONLY": {reflect.TypeOf(q.O_RDONLY), constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {reflect.TypeOf(q.O_RDWR), constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {reflect.TypeOf(q.O_SYNC), constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {reflect.TypeOf(q.O_TRUNC), constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {reflect.TypeOf(q.O_WRONLY), constant.MakeInt64(int64(q.O_WRONLY))}, + "SEEK_CUR": {reflect.TypeOf(q.SEEK_CUR), constant.MakeInt64(int64(q.SEEK_CUR))}, + "SEEK_END": {reflect.TypeOf(q.SEEK_END), constant.MakeInt64(int64(q.SEEK_END))}, + "SEEK_SET": {reflect.TypeOf(q.SEEK_SET), constant.MakeInt64(int64(q.SEEK_SET))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "DevNull": {"untyped string", constant.MakeString(string(q.DevNull))}, + "PathListSeparator": {"untyped rune", constant.MakeInt64(int64(q.PathListSeparator))}, + "PathSeparator": {"untyped rune", constant.MakeInt64(int64(q.PathSeparator))}, + }, + }) +} diff --git a/pkg/os/signal/go121_export.go b/pkg/os/signal/go121_export.go index 9f3b22e1..6580b92d 100755 --- a/pkg/os/signal/go121_export.go +++ b/pkg/os/signal/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package signal diff --git a/pkg/os/signal/go122_export.go b/pkg/os/signal/go122_export.go new file mode 100755 index 00000000..a168673a --- /dev/null +++ b/pkg/os/signal/go122_export.go @@ -0,0 +1,41 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package signal + +import ( + q "os/signal" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "signal", + Path: "os/signal", + Deps: map[string]string{ + "context": "context", + "os": "os", + "sync": "sync", + "syscall": "syscall", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Ignore": reflect.ValueOf(q.Ignore), + "Ignored": reflect.ValueOf(q.Ignored), + "Notify": reflect.ValueOf(q.Notify), + "NotifyContext": reflect.ValueOf(q.NotifyContext), + "Reset": reflect.ValueOf(q.Reset), + "Stop": reflect.ValueOf(q.Stop), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/os/signal/go123_export.go b/pkg/os/signal/go123_export.go new file mode 100755 index 00000000..70d198d8 --- /dev/null +++ b/pkg/os/signal/go123_export.go @@ -0,0 +1,41 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package signal + +import ( + q "os/signal" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "signal", + Path: "os/signal", + Deps: map[string]string{ + "context": "context", + "os": "os", + "sync": "sync", + "syscall": "syscall", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Ignore": reflect.ValueOf(q.Ignore), + "Ignored": reflect.ValueOf(q.Ignored), + "Notify": reflect.ValueOf(q.Notify), + "NotifyContext": reflect.ValueOf(q.NotifyContext), + "Reset": reflect.ValueOf(q.Reset), + "Stop": reflect.ValueOf(q.Stop), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/os/user/go121_export.go b/pkg/os/user/go121_export.go index e6d00502..86ad9692 100755 --- a/pkg/os/user/go121_export.go +++ b/pkg/os/user/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package user diff --git a/pkg/os/user/go122_export.go b/pkg/os/user/go122_export.go new file mode 100755 index 00000000..77afbec9 --- /dev/null +++ b/pkg/os/user/go122_export.go @@ -0,0 +1,51 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package user + +import ( + q "os/user" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "user", + Path: "os/user", + Deps: map[string]string{ + "fmt": "fmt", + "internal/syscall/unix": "unix", + "runtime": "runtime", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "syscall": "syscall", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Group": reflect.TypeOf((*q.Group)(nil)).Elem(), + "UnknownGroupError": reflect.TypeOf((*q.UnknownGroupError)(nil)).Elem(), + "UnknownGroupIdError": reflect.TypeOf((*q.UnknownGroupIdError)(nil)).Elem(), + "UnknownUserError": reflect.TypeOf((*q.UnknownUserError)(nil)).Elem(), + "UnknownUserIdError": reflect.TypeOf((*q.UnknownUserIdError)(nil)).Elem(), + "User": reflect.TypeOf((*q.User)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Current": reflect.ValueOf(q.Current), + "Lookup": reflect.ValueOf(q.Lookup), + "LookupGroup": reflect.ValueOf(q.LookupGroup), + "LookupGroupId": reflect.ValueOf(q.LookupGroupId), + "LookupId": reflect.ValueOf(q.LookupId), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/os/user/go123_export.go b/pkg/os/user/go123_export.go new file mode 100755 index 00000000..fc40af1d --- /dev/null +++ b/pkg/os/user/go123_export.go @@ -0,0 +1,51 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package user + +import ( + q "os/user" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "user", + Path: "os/user", + Deps: map[string]string{ + "fmt": "fmt", + "internal/syscall/unix": "unix", + "runtime": "runtime", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "syscall": "syscall", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Group": reflect.TypeOf((*q.Group)(nil)).Elem(), + "UnknownGroupError": reflect.TypeOf((*q.UnknownGroupError)(nil)).Elem(), + "UnknownGroupIdError": reflect.TypeOf((*q.UnknownGroupIdError)(nil)).Elem(), + "UnknownUserError": reflect.TypeOf((*q.UnknownUserError)(nil)).Elem(), + "UnknownUserIdError": reflect.TypeOf((*q.UnknownUserIdError)(nil)).Elem(), + "User": reflect.TypeOf((*q.User)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Current": reflect.ValueOf(q.Current), + "Lookup": reflect.ValueOf(q.Lookup), + "LookupGroup": reflect.ValueOf(q.LookupGroup), + "LookupGroupId": reflect.ValueOf(q.LookupGroupId), + "LookupId": reflect.ValueOf(q.LookupId), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/path/filepath/go121_export.go b/pkg/path/filepath/go121_export.go index 9721cbb1..03daab77 100755 --- a/pkg/path/filepath/go121_export.go +++ b/pkg/path/filepath/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package filepath diff --git a/pkg/path/filepath/go122_export.go b/pkg/path/filepath/go122_export.go new file mode 100755 index 00000000..ebbf2d09 --- /dev/null +++ b/pkg/path/filepath/go122_export.go @@ -0,0 +1,70 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package filepath + +import ( + q "path/filepath" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "filepath", + Path: "path/filepath", + Deps: map[string]string{ + "errors": "errors", + "io/fs": "fs", + "os": "os", + "runtime": "runtime", + "slices": "slices", + "sort": "sort", + "strings": "strings", + "syscall": "syscall", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "WalkFunc": reflect.TypeOf((*q.WalkFunc)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrBadPattern": reflect.ValueOf(&q.ErrBadPattern), + "SkipAll": reflect.ValueOf(&q.SkipAll), + "SkipDir": reflect.ValueOf(&q.SkipDir), + }, + Funcs: map[string]reflect.Value{ + "Abs": reflect.ValueOf(q.Abs), + "Base": reflect.ValueOf(q.Base), + "Clean": reflect.ValueOf(q.Clean), + "Dir": reflect.ValueOf(q.Dir), + "EvalSymlinks": reflect.ValueOf(q.EvalSymlinks), + "Ext": reflect.ValueOf(q.Ext), + "FromSlash": reflect.ValueOf(q.FromSlash), + "Glob": reflect.ValueOf(q.Glob), + "HasPrefix": reflect.ValueOf(q.HasPrefix), + "IsAbs": reflect.ValueOf(q.IsAbs), + "IsLocal": reflect.ValueOf(q.IsLocal), + "Join": reflect.ValueOf(q.Join), + "Match": reflect.ValueOf(q.Match), + "Rel": reflect.ValueOf(q.Rel), + "Split": reflect.ValueOf(q.Split), + "SplitList": reflect.ValueOf(q.SplitList), + "ToSlash": reflect.ValueOf(q.ToSlash), + "VolumeName": reflect.ValueOf(q.VolumeName), + "Walk": reflect.ValueOf(q.Walk), + "WalkDir": reflect.ValueOf(q.WalkDir), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "ListSeparator": {"untyped rune", constant.MakeInt64(int64(q.ListSeparator))}, + "Separator": {"untyped rune", constant.MakeInt64(int64(q.Separator))}, + }, + }) +} diff --git a/pkg/path/filepath/go123_export.go b/pkg/path/filepath/go123_export.go new file mode 100755 index 00000000..a8496b33 --- /dev/null +++ b/pkg/path/filepath/go123_export.go @@ -0,0 +1,72 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package filepath + +import ( + q "path/filepath" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "filepath", + Path: "path/filepath", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/filepathlite": "filepathlite", + "io/fs": "fs", + "os": "os", + "runtime": "runtime", + "slices": "slices", + "strings": "strings", + "syscall": "syscall", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "WalkFunc": reflect.TypeOf((*q.WalkFunc)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrBadPattern": reflect.ValueOf(&q.ErrBadPattern), + "SkipAll": reflect.ValueOf(&q.SkipAll), + "SkipDir": reflect.ValueOf(&q.SkipDir), + }, + Funcs: map[string]reflect.Value{ + "Abs": reflect.ValueOf(q.Abs), + "Base": reflect.ValueOf(q.Base), + "Clean": reflect.ValueOf(q.Clean), + "Dir": reflect.ValueOf(q.Dir), + "EvalSymlinks": reflect.ValueOf(q.EvalSymlinks), + "Ext": reflect.ValueOf(q.Ext), + "FromSlash": reflect.ValueOf(q.FromSlash), + "Glob": reflect.ValueOf(q.Glob), + "HasPrefix": reflect.ValueOf(q.HasPrefix), + "IsAbs": reflect.ValueOf(q.IsAbs), + "IsLocal": reflect.ValueOf(q.IsLocal), + "Join": reflect.ValueOf(q.Join), + "Localize": reflect.ValueOf(q.Localize), + "Match": reflect.ValueOf(q.Match), + "Rel": reflect.ValueOf(q.Rel), + "Split": reflect.ValueOf(q.Split), + "SplitList": reflect.ValueOf(q.SplitList), + "ToSlash": reflect.ValueOf(q.ToSlash), + "VolumeName": reflect.ValueOf(q.VolumeName), + "Walk": reflect.ValueOf(q.Walk), + "WalkDir": reflect.ValueOf(q.WalkDir), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "ListSeparator": {"untyped rune", constant.MakeInt64(int64(q.ListSeparator))}, + "Separator": {"untyped rune", constant.MakeInt64(int64(q.Separator))}, + }, + }) +} diff --git a/pkg/path/go121_export.go b/pkg/path/go121_export.go index 2b7dd404..4d007b3c 100755 --- a/pkg/path/go121_export.go +++ b/pkg/path/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package path diff --git a/pkg/path/go122_export.go b/pkg/path/go122_export.go new file mode 100755 index 00000000..a9fae45d --- /dev/null +++ b/pkg/path/go122_export.go @@ -0,0 +1,44 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package path + +import ( + q "path" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "path", + Path: "path", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrBadPattern": reflect.ValueOf(&q.ErrBadPattern), + }, + Funcs: map[string]reflect.Value{ + "Base": reflect.ValueOf(q.Base), + "Clean": reflect.ValueOf(q.Clean), + "Dir": reflect.ValueOf(q.Dir), + "Ext": reflect.ValueOf(q.Ext), + "IsAbs": reflect.ValueOf(q.IsAbs), + "Join": reflect.ValueOf(q.Join), + "Match": reflect.ValueOf(q.Match), + "Split": reflect.ValueOf(q.Split), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/path/go123_export.go b/pkg/path/go123_export.go new file mode 100755 index 00000000..b5058556 --- /dev/null +++ b/pkg/path/go123_export.go @@ -0,0 +1,44 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package path + +import ( + q "path" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "path", + Path: "path", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrBadPattern": reflect.ValueOf(&q.ErrBadPattern), + }, + Funcs: map[string]reflect.Value{ + "Base": reflect.ValueOf(q.Base), + "Clean": reflect.ValueOf(q.Clean), + "Dir": reflect.ValueOf(q.Dir), + "Ext": reflect.ValueOf(q.Ext), + "IsAbs": reflect.ValueOf(q.IsAbs), + "Join": reflect.ValueOf(q.Join), + "Match": reflect.ValueOf(q.Match), + "Split": reflect.ValueOf(q.Split), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/plugin/go121_export.go b/pkg/plugin/go121_export.go index 094a6856..b6b52a42 100755 --- a/pkg/plugin/go121_export.go +++ b/pkg/plugin/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package plugin diff --git a/pkg/plugin/go122_export.go b/pkg/plugin/go122_export.go new file mode 100755 index 00000000..af788712 --- /dev/null +++ b/pkg/plugin/go122_export.go @@ -0,0 +1,41 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package plugin + +import ( + q "plugin" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "plugin", + Path: "plugin", + Deps: map[string]string{ + "errors": "errors", + "runtime/cgo": "cgo", + "sync": "sync", + "syscall": "syscall", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Symbol": reflect.TypeOf((*q.Symbol)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Plugin": reflect.TypeOf((*q.Plugin)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Open": reflect.ValueOf(q.Open), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/reflect/go121_export.go b/pkg/reflect/go121_export.go index bd642958..40ff81f2 100755 --- a/pkg/reflect/go121_export.go +++ b/pkg/reflect/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package reflect diff --git a/pkg/reflect/go122_export.go b/pkg/reflect/go122_export.go new file mode 100755 index 00000000..bc4b62c9 --- /dev/null +++ b/pkg/reflect/go122_export.go @@ -0,0 +1,121 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package reflect + +import ( + q "reflect" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "reflect", + Path: "reflect", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/bytealg": "bytealg", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/unsafeheader": "unsafeheader", + "math": "math", + "runtime": "runtime", + "strconv": "strconv", + "sync": "sync", + "unicode": "unicode", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Type": reflect.TypeOf((*q.Type)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "ChanDir": reflect.TypeOf((*q.ChanDir)(nil)).Elem(), + "Kind": reflect.TypeOf((*q.Kind)(nil)).Elem(), + "MapIter": reflect.TypeOf((*q.MapIter)(nil)).Elem(), + "Method": reflect.TypeOf((*q.Method)(nil)).Elem(), + "SelectCase": reflect.TypeOf((*q.SelectCase)(nil)).Elem(), + "SelectDir": reflect.TypeOf((*q.SelectDir)(nil)).Elem(), + "SliceHeader": reflect.TypeOf((*q.SliceHeader)(nil)).Elem(), + "StringHeader": reflect.TypeOf((*q.StringHeader)(nil)).Elem(), + "StructField": reflect.TypeOf((*q.StructField)(nil)).Elem(), + "StructTag": reflect.TypeOf((*q.StructTag)(nil)).Elem(), + "Value": reflect.TypeOf((*q.Value)(nil)).Elem(), + "ValueError": reflect.TypeOf((*q.ValueError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Append": reflect.ValueOf(q.Append), + "AppendSlice": reflect.ValueOf(q.AppendSlice), + "ArrayOf": reflect.ValueOf(q.ArrayOf), + "ChanOf": reflect.ValueOf(q.ChanOf), + "Copy": reflect.ValueOf(q.Copy), + "DeepEqual": reflect.ValueOf(q.DeepEqual), + "FuncOf": reflect.ValueOf(q.FuncOf), + "Indirect": reflect.ValueOf(q.Indirect), + "MakeChan": reflect.ValueOf(q.MakeChan), + "MakeFunc": reflect.ValueOf(q.MakeFunc), + "MakeMap": reflect.ValueOf(q.MakeMap), + "MakeMapWithSize": reflect.ValueOf(q.MakeMapWithSize), + "MakeSlice": reflect.ValueOf(q.MakeSlice), + "MapOf": reflect.ValueOf(q.MapOf), + "New": reflect.ValueOf(q.New), + "NewAt": reflect.ValueOf(q.NewAt), + "PointerTo": reflect.ValueOf(q.PointerTo), + "PtrTo": reflect.ValueOf(q.PtrTo), + "Select": reflect.ValueOf(q.Select), + "SliceOf": reflect.ValueOf(q.SliceOf), + "StructOf": reflect.ValueOf(q.StructOf), + "Swapper": reflect.ValueOf(q.Swapper), + "TypeOf": reflect.ValueOf(q.TypeOf), + "ValueOf": reflect.ValueOf(q.ValueOf), + "VisibleFields": reflect.ValueOf(q.VisibleFields), + "Zero": reflect.ValueOf(q.Zero), + }, + TypedConsts: map[string]igop.TypedConst{ + "Array": {reflect.TypeOf(q.Array), constant.MakeInt64(int64(q.Array))}, + "Bool": {reflect.TypeOf(q.Bool), constant.MakeInt64(int64(q.Bool))}, + "BothDir": {reflect.TypeOf(q.BothDir), constant.MakeInt64(int64(q.BothDir))}, + "Chan": {reflect.TypeOf(q.Chan), constant.MakeInt64(int64(q.Chan))}, + "Complex128": {reflect.TypeOf(q.Complex128), constant.MakeInt64(int64(q.Complex128))}, + "Complex64": {reflect.TypeOf(q.Complex64), constant.MakeInt64(int64(q.Complex64))}, + "Float32": {reflect.TypeOf(q.Float32), constant.MakeInt64(int64(q.Float32))}, + "Float64": {reflect.TypeOf(q.Float64), constant.MakeInt64(int64(q.Float64))}, + "Func": {reflect.TypeOf(q.Func), constant.MakeInt64(int64(q.Func))}, + "Int": {reflect.TypeOf(q.Int), constant.MakeInt64(int64(q.Int))}, + "Int16": {reflect.TypeOf(q.Int16), constant.MakeInt64(int64(q.Int16))}, + "Int32": {reflect.TypeOf(q.Int32), constant.MakeInt64(int64(q.Int32))}, + "Int64": {reflect.TypeOf(q.Int64), constant.MakeInt64(int64(q.Int64))}, + "Int8": {reflect.TypeOf(q.Int8), constant.MakeInt64(int64(q.Int8))}, + "Interface": {reflect.TypeOf(q.Interface), constant.MakeInt64(int64(q.Interface))}, + "Invalid": {reflect.TypeOf(q.Invalid), constant.MakeInt64(int64(q.Invalid))}, + "Map": {reflect.TypeOf(q.Map), constant.MakeInt64(int64(q.Map))}, + "Pointer": {reflect.TypeOf(q.Pointer), constant.MakeInt64(int64(q.Pointer))}, + "Ptr": {reflect.TypeOf(q.Ptr), constant.MakeInt64(int64(q.Ptr))}, + "RecvDir": {reflect.TypeOf(q.RecvDir), constant.MakeInt64(int64(q.RecvDir))}, + "SelectDefault": {reflect.TypeOf(q.SelectDefault), constant.MakeInt64(int64(q.SelectDefault))}, + "SelectRecv": {reflect.TypeOf(q.SelectRecv), constant.MakeInt64(int64(q.SelectRecv))}, + "SelectSend": {reflect.TypeOf(q.SelectSend), constant.MakeInt64(int64(q.SelectSend))}, + "SendDir": {reflect.TypeOf(q.SendDir), constant.MakeInt64(int64(q.SendDir))}, + "Slice": {reflect.TypeOf(q.Slice), constant.MakeInt64(int64(q.Slice))}, + "String": {reflect.TypeOf(q.String), constant.MakeInt64(int64(q.String))}, + "Struct": {reflect.TypeOf(q.Struct), constant.MakeInt64(int64(q.Struct))}, + "Uint": {reflect.TypeOf(q.Uint), constant.MakeInt64(int64(q.Uint))}, + "Uint16": {reflect.TypeOf(q.Uint16), constant.MakeInt64(int64(q.Uint16))}, + "Uint32": {reflect.TypeOf(q.Uint32), constant.MakeInt64(int64(q.Uint32))}, + "Uint64": {reflect.TypeOf(q.Uint64), constant.MakeInt64(int64(q.Uint64))}, + "Uint8": {reflect.TypeOf(q.Uint8), constant.MakeInt64(int64(q.Uint8))}, + "Uintptr": {reflect.TypeOf(q.Uintptr), constant.MakeInt64(int64(q.Uintptr))}, + "UnsafePointer": {reflect.TypeOf(q.UnsafePointer), constant.MakeInt64(int64(q.UnsafePointer))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/reflect/go123_export.go b/pkg/reflect/go123_export.go new file mode 100755 index 00000000..945aa4b3 --- /dev/null +++ b/pkg/reflect/go123_export.go @@ -0,0 +1,123 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package reflect + +import ( + q "reflect" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "reflect", + Path: "reflect", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/bytealg": "bytealg", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/unsafeheader": "unsafeheader", + "iter": "iter", + "math": "math", + "runtime": "runtime", + "strconv": "strconv", + "sync": "sync", + "unicode": "unicode", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Type": reflect.TypeOf((*q.Type)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "ChanDir": reflect.TypeOf((*q.ChanDir)(nil)).Elem(), + "Kind": reflect.TypeOf((*q.Kind)(nil)).Elem(), + "MapIter": reflect.TypeOf((*q.MapIter)(nil)).Elem(), + "Method": reflect.TypeOf((*q.Method)(nil)).Elem(), + "SelectCase": reflect.TypeOf((*q.SelectCase)(nil)).Elem(), + "SelectDir": reflect.TypeOf((*q.SelectDir)(nil)).Elem(), + "SliceHeader": reflect.TypeOf((*q.SliceHeader)(nil)).Elem(), + "StringHeader": reflect.TypeOf((*q.StringHeader)(nil)).Elem(), + "StructField": reflect.TypeOf((*q.StructField)(nil)).Elem(), + "StructTag": reflect.TypeOf((*q.StructTag)(nil)).Elem(), + "Value": reflect.TypeOf((*q.Value)(nil)).Elem(), + "ValueError": reflect.TypeOf((*q.ValueError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Append": reflect.ValueOf(q.Append), + "AppendSlice": reflect.ValueOf(q.AppendSlice), + "ArrayOf": reflect.ValueOf(q.ArrayOf), + "ChanOf": reflect.ValueOf(q.ChanOf), + "Copy": reflect.ValueOf(q.Copy), + "DeepEqual": reflect.ValueOf(q.DeepEqual), + "FuncOf": reflect.ValueOf(q.FuncOf), + "Indirect": reflect.ValueOf(q.Indirect), + "MakeChan": reflect.ValueOf(q.MakeChan), + "MakeFunc": reflect.ValueOf(q.MakeFunc), + "MakeMap": reflect.ValueOf(q.MakeMap), + "MakeMapWithSize": reflect.ValueOf(q.MakeMapWithSize), + "MakeSlice": reflect.ValueOf(q.MakeSlice), + "MapOf": reflect.ValueOf(q.MapOf), + "New": reflect.ValueOf(q.New), + "NewAt": reflect.ValueOf(q.NewAt), + "PointerTo": reflect.ValueOf(q.PointerTo), + "PtrTo": reflect.ValueOf(q.PtrTo), + "Select": reflect.ValueOf(q.Select), + "SliceAt": reflect.ValueOf(q.SliceAt), + "SliceOf": reflect.ValueOf(q.SliceOf), + "StructOf": reflect.ValueOf(q.StructOf), + "Swapper": reflect.ValueOf(q.Swapper), + "TypeOf": reflect.ValueOf(q.TypeOf), + "ValueOf": reflect.ValueOf(q.ValueOf), + "VisibleFields": reflect.ValueOf(q.VisibleFields), + "Zero": reflect.ValueOf(q.Zero), + }, + TypedConsts: map[string]igop.TypedConst{ + "Array": {reflect.TypeOf(q.Array), constant.MakeInt64(int64(q.Array))}, + "Bool": {reflect.TypeOf(q.Bool), constant.MakeInt64(int64(q.Bool))}, + "BothDir": {reflect.TypeOf(q.BothDir), constant.MakeInt64(int64(q.BothDir))}, + "Chan": {reflect.TypeOf(q.Chan), constant.MakeInt64(int64(q.Chan))}, + "Complex128": {reflect.TypeOf(q.Complex128), constant.MakeInt64(int64(q.Complex128))}, + "Complex64": {reflect.TypeOf(q.Complex64), constant.MakeInt64(int64(q.Complex64))}, + "Float32": {reflect.TypeOf(q.Float32), constant.MakeInt64(int64(q.Float32))}, + "Float64": {reflect.TypeOf(q.Float64), constant.MakeInt64(int64(q.Float64))}, + "Func": {reflect.TypeOf(q.Func), constant.MakeInt64(int64(q.Func))}, + "Int": {reflect.TypeOf(q.Int), constant.MakeInt64(int64(q.Int))}, + "Int16": {reflect.TypeOf(q.Int16), constant.MakeInt64(int64(q.Int16))}, + "Int32": {reflect.TypeOf(q.Int32), constant.MakeInt64(int64(q.Int32))}, + "Int64": {reflect.TypeOf(q.Int64), constant.MakeInt64(int64(q.Int64))}, + "Int8": {reflect.TypeOf(q.Int8), constant.MakeInt64(int64(q.Int8))}, + "Interface": {reflect.TypeOf(q.Interface), constant.MakeInt64(int64(q.Interface))}, + "Invalid": {reflect.TypeOf(q.Invalid), constant.MakeInt64(int64(q.Invalid))}, + "Map": {reflect.TypeOf(q.Map), constant.MakeInt64(int64(q.Map))}, + "Pointer": {reflect.TypeOf(q.Pointer), constant.MakeInt64(int64(q.Pointer))}, + "Ptr": {reflect.TypeOf(q.Ptr), constant.MakeInt64(int64(q.Ptr))}, + "RecvDir": {reflect.TypeOf(q.RecvDir), constant.MakeInt64(int64(q.RecvDir))}, + "SelectDefault": {reflect.TypeOf(q.SelectDefault), constant.MakeInt64(int64(q.SelectDefault))}, + "SelectRecv": {reflect.TypeOf(q.SelectRecv), constant.MakeInt64(int64(q.SelectRecv))}, + "SelectSend": {reflect.TypeOf(q.SelectSend), constant.MakeInt64(int64(q.SelectSend))}, + "SendDir": {reflect.TypeOf(q.SendDir), constant.MakeInt64(int64(q.SendDir))}, + "Slice": {reflect.TypeOf(q.Slice), constant.MakeInt64(int64(q.Slice))}, + "String": {reflect.TypeOf(q.String), constant.MakeInt64(int64(q.String))}, + "Struct": {reflect.TypeOf(q.Struct), constant.MakeInt64(int64(q.Struct))}, + "Uint": {reflect.TypeOf(q.Uint), constant.MakeInt64(int64(q.Uint))}, + "Uint16": {reflect.TypeOf(q.Uint16), constant.MakeInt64(int64(q.Uint16))}, + "Uint32": {reflect.TypeOf(q.Uint32), constant.MakeInt64(int64(q.Uint32))}, + "Uint64": {reflect.TypeOf(q.Uint64), constant.MakeInt64(int64(q.Uint64))}, + "Uint8": {reflect.TypeOf(q.Uint8), constant.MakeInt64(int64(q.Uint8))}, + "Uintptr": {reflect.TypeOf(q.Uintptr), constant.MakeInt64(int64(q.Uintptr))}, + "UnsafePointer": {reflect.TypeOf(q.UnsafePointer), constant.MakeInt64(int64(q.UnsafePointer))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/regexp/go121_export.go b/pkg/regexp/go121_export.go index 9cde0fa0..419c1a5e 100755 --- a/pkg/regexp/go121_export.go +++ b/pkg/regexp/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package regexp diff --git a/pkg/regexp/go122_export.go b/pkg/regexp/go122_export.go new file mode 100755 index 00000000..5bea8c8a --- /dev/null +++ b/pkg/regexp/go122_export.go @@ -0,0 +1,50 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package regexp + +import ( + q "regexp" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "regexp", + Path: "regexp", + Deps: map[string]string{ + "bytes": "bytes", + "io": "io", + "regexp/syntax": "syntax", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Regexp": reflect.TypeOf((*q.Regexp)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Compile": reflect.ValueOf(q.Compile), + "CompilePOSIX": reflect.ValueOf(q.CompilePOSIX), + "Match": reflect.ValueOf(q.Match), + "MatchReader": reflect.ValueOf(q.MatchReader), + "MatchString": reflect.ValueOf(q.MatchString), + "MustCompile": reflect.ValueOf(q.MustCompile), + "MustCompilePOSIX": reflect.ValueOf(q.MustCompilePOSIX), + "QuoteMeta": reflect.ValueOf(q.QuoteMeta), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/regexp/go123_export.go b/pkg/regexp/go123_export.go new file mode 100755 index 00000000..1705199c --- /dev/null +++ b/pkg/regexp/go123_export.go @@ -0,0 +1,50 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package regexp + +import ( + q "regexp" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "regexp", + Path: "regexp", + Deps: map[string]string{ + "bytes": "bytes", + "io": "io", + "regexp/syntax": "syntax", + "slices": "slices", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Regexp": reflect.TypeOf((*q.Regexp)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Compile": reflect.ValueOf(q.Compile), + "CompilePOSIX": reflect.ValueOf(q.CompilePOSIX), + "Match": reflect.ValueOf(q.Match), + "MatchReader": reflect.ValueOf(q.MatchReader), + "MatchString": reflect.ValueOf(q.MatchString), + "MustCompile": reflect.ValueOf(q.MustCompile), + "MustCompilePOSIX": reflect.ValueOf(q.MustCompilePOSIX), + "QuoteMeta": reflect.ValueOf(q.QuoteMeta), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/regexp/syntax/go121_export.go b/pkg/regexp/syntax/go121_export.go index 5bc02f00..99a95d39 100755 --- a/pkg/regexp/syntax/go121_export.go +++ b/pkg/regexp/syntax/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syntax diff --git a/pkg/regexp/syntax/go122_export.go b/pkg/regexp/syntax/go122_export.go new file mode 100755 index 00000000..84f72417 --- /dev/null +++ b/pkg/regexp/syntax/go122_export.go @@ -0,0 +1,117 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syntax + +import ( + q "regexp/syntax" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syntax", + Path: "regexp/syntax", + Deps: map[string]string{ + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "EmptyOp": reflect.TypeOf((*q.EmptyOp)(nil)).Elem(), + "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), + "ErrorCode": reflect.TypeOf((*q.ErrorCode)(nil)).Elem(), + "Flags": reflect.TypeOf((*q.Flags)(nil)).Elem(), + "Inst": reflect.TypeOf((*q.Inst)(nil)).Elem(), + "InstOp": reflect.TypeOf((*q.InstOp)(nil)).Elem(), + "Op": reflect.TypeOf((*q.Op)(nil)).Elem(), + "Prog": reflect.TypeOf((*q.Prog)(nil)).Elem(), + "Regexp": reflect.TypeOf((*q.Regexp)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Compile": reflect.ValueOf(q.Compile), + "EmptyOpContext": reflect.ValueOf(q.EmptyOpContext), + "IsWordChar": reflect.ValueOf(q.IsWordChar), + "Parse": reflect.ValueOf(q.Parse), + }, + TypedConsts: map[string]igop.TypedConst{ + "ClassNL": {reflect.TypeOf(q.ClassNL), constant.MakeInt64(int64(q.ClassNL))}, + "DotNL": {reflect.TypeOf(q.DotNL), constant.MakeInt64(int64(q.DotNL))}, + "EmptyBeginLine": {reflect.TypeOf(q.EmptyBeginLine), constant.MakeInt64(int64(q.EmptyBeginLine))}, + "EmptyBeginText": {reflect.TypeOf(q.EmptyBeginText), constant.MakeInt64(int64(q.EmptyBeginText))}, + "EmptyEndLine": {reflect.TypeOf(q.EmptyEndLine), constant.MakeInt64(int64(q.EmptyEndLine))}, + "EmptyEndText": {reflect.TypeOf(q.EmptyEndText), constant.MakeInt64(int64(q.EmptyEndText))}, + "EmptyNoWordBoundary": {reflect.TypeOf(q.EmptyNoWordBoundary), constant.MakeInt64(int64(q.EmptyNoWordBoundary))}, + "EmptyWordBoundary": {reflect.TypeOf(q.EmptyWordBoundary), constant.MakeInt64(int64(q.EmptyWordBoundary))}, + "ErrInternalError": {reflect.TypeOf(q.ErrInternalError), constant.MakeString(string(q.ErrInternalError))}, + "ErrInvalidCharClass": {reflect.TypeOf(q.ErrInvalidCharClass), constant.MakeString(string(q.ErrInvalidCharClass))}, + "ErrInvalidCharRange": {reflect.TypeOf(q.ErrInvalidCharRange), constant.MakeString(string(q.ErrInvalidCharRange))}, + "ErrInvalidEscape": {reflect.TypeOf(q.ErrInvalidEscape), constant.MakeString(string(q.ErrInvalidEscape))}, + "ErrInvalidNamedCapture": {reflect.TypeOf(q.ErrInvalidNamedCapture), constant.MakeString(string(q.ErrInvalidNamedCapture))}, + "ErrInvalidPerlOp": {reflect.TypeOf(q.ErrInvalidPerlOp), constant.MakeString(string(q.ErrInvalidPerlOp))}, + "ErrInvalidRepeatOp": {reflect.TypeOf(q.ErrInvalidRepeatOp), constant.MakeString(string(q.ErrInvalidRepeatOp))}, + "ErrInvalidRepeatSize": {reflect.TypeOf(q.ErrInvalidRepeatSize), constant.MakeString(string(q.ErrInvalidRepeatSize))}, + "ErrInvalidUTF8": {reflect.TypeOf(q.ErrInvalidUTF8), constant.MakeString(string(q.ErrInvalidUTF8))}, + "ErrLarge": {reflect.TypeOf(q.ErrLarge), constant.MakeString(string(q.ErrLarge))}, + "ErrMissingBracket": {reflect.TypeOf(q.ErrMissingBracket), constant.MakeString(string(q.ErrMissingBracket))}, + "ErrMissingParen": {reflect.TypeOf(q.ErrMissingParen), constant.MakeString(string(q.ErrMissingParen))}, + "ErrMissingRepeatArgument": {reflect.TypeOf(q.ErrMissingRepeatArgument), constant.MakeString(string(q.ErrMissingRepeatArgument))}, + "ErrNestingDepth": {reflect.TypeOf(q.ErrNestingDepth), constant.MakeString(string(q.ErrNestingDepth))}, + "ErrTrailingBackslash": {reflect.TypeOf(q.ErrTrailingBackslash), constant.MakeString(string(q.ErrTrailingBackslash))}, + "ErrUnexpectedParen": {reflect.TypeOf(q.ErrUnexpectedParen), constant.MakeString(string(q.ErrUnexpectedParen))}, + "FoldCase": {reflect.TypeOf(q.FoldCase), constant.MakeInt64(int64(q.FoldCase))}, + "InstAlt": {reflect.TypeOf(q.InstAlt), constant.MakeInt64(int64(q.InstAlt))}, + "InstAltMatch": {reflect.TypeOf(q.InstAltMatch), constant.MakeInt64(int64(q.InstAltMatch))}, + "InstCapture": {reflect.TypeOf(q.InstCapture), constant.MakeInt64(int64(q.InstCapture))}, + "InstEmptyWidth": {reflect.TypeOf(q.InstEmptyWidth), constant.MakeInt64(int64(q.InstEmptyWidth))}, + "InstFail": {reflect.TypeOf(q.InstFail), constant.MakeInt64(int64(q.InstFail))}, + "InstMatch": {reflect.TypeOf(q.InstMatch), constant.MakeInt64(int64(q.InstMatch))}, + "InstNop": {reflect.TypeOf(q.InstNop), constant.MakeInt64(int64(q.InstNop))}, + "InstRune": {reflect.TypeOf(q.InstRune), constant.MakeInt64(int64(q.InstRune))}, + "InstRune1": {reflect.TypeOf(q.InstRune1), constant.MakeInt64(int64(q.InstRune1))}, + "InstRuneAny": {reflect.TypeOf(q.InstRuneAny), constant.MakeInt64(int64(q.InstRuneAny))}, + "InstRuneAnyNotNL": {reflect.TypeOf(q.InstRuneAnyNotNL), constant.MakeInt64(int64(q.InstRuneAnyNotNL))}, + "Literal": {reflect.TypeOf(q.Literal), constant.MakeInt64(int64(q.Literal))}, + "MatchNL": {reflect.TypeOf(q.MatchNL), constant.MakeInt64(int64(q.MatchNL))}, + "NonGreedy": {reflect.TypeOf(q.NonGreedy), constant.MakeInt64(int64(q.NonGreedy))}, + "OneLine": {reflect.TypeOf(q.OneLine), constant.MakeInt64(int64(q.OneLine))}, + "OpAlternate": {reflect.TypeOf(q.OpAlternate), constant.MakeInt64(int64(q.OpAlternate))}, + "OpAnyChar": {reflect.TypeOf(q.OpAnyChar), constant.MakeInt64(int64(q.OpAnyChar))}, + "OpAnyCharNotNL": {reflect.TypeOf(q.OpAnyCharNotNL), constant.MakeInt64(int64(q.OpAnyCharNotNL))}, + "OpBeginLine": {reflect.TypeOf(q.OpBeginLine), constant.MakeInt64(int64(q.OpBeginLine))}, + "OpBeginText": {reflect.TypeOf(q.OpBeginText), constant.MakeInt64(int64(q.OpBeginText))}, + "OpCapture": {reflect.TypeOf(q.OpCapture), constant.MakeInt64(int64(q.OpCapture))}, + "OpCharClass": {reflect.TypeOf(q.OpCharClass), constant.MakeInt64(int64(q.OpCharClass))}, + "OpConcat": {reflect.TypeOf(q.OpConcat), constant.MakeInt64(int64(q.OpConcat))}, + "OpEmptyMatch": {reflect.TypeOf(q.OpEmptyMatch), constant.MakeInt64(int64(q.OpEmptyMatch))}, + "OpEndLine": {reflect.TypeOf(q.OpEndLine), constant.MakeInt64(int64(q.OpEndLine))}, + "OpEndText": {reflect.TypeOf(q.OpEndText), constant.MakeInt64(int64(q.OpEndText))}, + "OpLiteral": {reflect.TypeOf(q.OpLiteral), constant.MakeInt64(int64(q.OpLiteral))}, + "OpNoMatch": {reflect.TypeOf(q.OpNoMatch), constant.MakeInt64(int64(q.OpNoMatch))}, + "OpNoWordBoundary": {reflect.TypeOf(q.OpNoWordBoundary), constant.MakeInt64(int64(q.OpNoWordBoundary))}, + "OpPlus": {reflect.TypeOf(q.OpPlus), constant.MakeInt64(int64(q.OpPlus))}, + "OpQuest": {reflect.TypeOf(q.OpQuest), constant.MakeInt64(int64(q.OpQuest))}, + "OpRepeat": {reflect.TypeOf(q.OpRepeat), constant.MakeInt64(int64(q.OpRepeat))}, + "OpStar": {reflect.TypeOf(q.OpStar), constant.MakeInt64(int64(q.OpStar))}, + "OpWordBoundary": {reflect.TypeOf(q.OpWordBoundary), constant.MakeInt64(int64(q.OpWordBoundary))}, + "POSIX": {reflect.TypeOf(q.POSIX), constant.MakeInt64(int64(q.POSIX))}, + "Perl": {reflect.TypeOf(q.Perl), constant.MakeInt64(int64(q.Perl))}, + "PerlX": {reflect.TypeOf(q.PerlX), constant.MakeInt64(int64(q.PerlX))}, + "Simple": {reflect.TypeOf(q.Simple), constant.MakeInt64(int64(q.Simple))}, + "UnicodeGroups": {reflect.TypeOf(q.UnicodeGroups), constant.MakeInt64(int64(q.UnicodeGroups))}, + "WasDollar": {reflect.TypeOf(q.WasDollar), constant.MakeInt64(int64(q.WasDollar))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/regexp/syntax/go123_export.go b/pkg/regexp/syntax/go123_export.go new file mode 100755 index 00000000..44535eef --- /dev/null +++ b/pkg/regexp/syntax/go123_export.go @@ -0,0 +1,118 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syntax + +import ( + q "regexp/syntax" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syntax", + Path: "regexp/syntax", + Deps: map[string]string{ + "slices": "slices", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "EmptyOp": reflect.TypeOf((*q.EmptyOp)(nil)).Elem(), + "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), + "ErrorCode": reflect.TypeOf((*q.ErrorCode)(nil)).Elem(), + "Flags": reflect.TypeOf((*q.Flags)(nil)).Elem(), + "Inst": reflect.TypeOf((*q.Inst)(nil)).Elem(), + "InstOp": reflect.TypeOf((*q.InstOp)(nil)).Elem(), + "Op": reflect.TypeOf((*q.Op)(nil)).Elem(), + "Prog": reflect.TypeOf((*q.Prog)(nil)).Elem(), + "Regexp": reflect.TypeOf((*q.Regexp)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Compile": reflect.ValueOf(q.Compile), + "EmptyOpContext": reflect.ValueOf(q.EmptyOpContext), + "IsWordChar": reflect.ValueOf(q.IsWordChar), + "Parse": reflect.ValueOf(q.Parse), + }, + TypedConsts: map[string]igop.TypedConst{ + "ClassNL": {reflect.TypeOf(q.ClassNL), constant.MakeInt64(int64(q.ClassNL))}, + "DotNL": {reflect.TypeOf(q.DotNL), constant.MakeInt64(int64(q.DotNL))}, + "EmptyBeginLine": {reflect.TypeOf(q.EmptyBeginLine), constant.MakeInt64(int64(q.EmptyBeginLine))}, + "EmptyBeginText": {reflect.TypeOf(q.EmptyBeginText), constant.MakeInt64(int64(q.EmptyBeginText))}, + "EmptyEndLine": {reflect.TypeOf(q.EmptyEndLine), constant.MakeInt64(int64(q.EmptyEndLine))}, + "EmptyEndText": {reflect.TypeOf(q.EmptyEndText), constant.MakeInt64(int64(q.EmptyEndText))}, + "EmptyNoWordBoundary": {reflect.TypeOf(q.EmptyNoWordBoundary), constant.MakeInt64(int64(q.EmptyNoWordBoundary))}, + "EmptyWordBoundary": {reflect.TypeOf(q.EmptyWordBoundary), constant.MakeInt64(int64(q.EmptyWordBoundary))}, + "ErrInternalError": {reflect.TypeOf(q.ErrInternalError), constant.MakeString(string(q.ErrInternalError))}, + "ErrInvalidCharClass": {reflect.TypeOf(q.ErrInvalidCharClass), constant.MakeString(string(q.ErrInvalidCharClass))}, + "ErrInvalidCharRange": {reflect.TypeOf(q.ErrInvalidCharRange), constant.MakeString(string(q.ErrInvalidCharRange))}, + "ErrInvalidEscape": {reflect.TypeOf(q.ErrInvalidEscape), constant.MakeString(string(q.ErrInvalidEscape))}, + "ErrInvalidNamedCapture": {reflect.TypeOf(q.ErrInvalidNamedCapture), constant.MakeString(string(q.ErrInvalidNamedCapture))}, + "ErrInvalidPerlOp": {reflect.TypeOf(q.ErrInvalidPerlOp), constant.MakeString(string(q.ErrInvalidPerlOp))}, + "ErrInvalidRepeatOp": {reflect.TypeOf(q.ErrInvalidRepeatOp), constant.MakeString(string(q.ErrInvalidRepeatOp))}, + "ErrInvalidRepeatSize": {reflect.TypeOf(q.ErrInvalidRepeatSize), constant.MakeString(string(q.ErrInvalidRepeatSize))}, + "ErrInvalidUTF8": {reflect.TypeOf(q.ErrInvalidUTF8), constant.MakeString(string(q.ErrInvalidUTF8))}, + "ErrLarge": {reflect.TypeOf(q.ErrLarge), constant.MakeString(string(q.ErrLarge))}, + "ErrMissingBracket": {reflect.TypeOf(q.ErrMissingBracket), constant.MakeString(string(q.ErrMissingBracket))}, + "ErrMissingParen": {reflect.TypeOf(q.ErrMissingParen), constant.MakeString(string(q.ErrMissingParen))}, + "ErrMissingRepeatArgument": {reflect.TypeOf(q.ErrMissingRepeatArgument), constant.MakeString(string(q.ErrMissingRepeatArgument))}, + "ErrNestingDepth": {reflect.TypeOf(q.ErrNestingDepth), constant.MakeString(string(q.ErrNestingDepth))}, + "ErrTrailingBackslash": {reflect.TypeOf(q.ErrTrailingBackslash), constant.MakeString(string(q.ErrTrailingBackslash))}, + "ErrUnexpectedParen": {reflect.TypeOf(q.ErrUnexpectedParen), constant.MakeString(string(q.ErrUnexpectedParen))}, + "FoldCase": {reflect.TypeOf(q.FoldCase), constant.MakeInt64(int64(q.FoldCase))}, + "InstAlt": {reflect.TypeOf(q.InstAlt), constant.MakeInt64(int64(q.InstAlt))}, + "InstAltMatch": {reflect.TypeOf(q.InstAltMatch), constant.MakeInt64(int64(q.InstAltMatch))}, + "InstCapture": {reflect.TypeOf(q.InstCapture), constant.MakeInt64(int64(q.InstCapture))}, + "InstEmptyWidth": {reflect.TypeOf(q.InstEmptyWidth), constant.MakeInt64(int64(q.InstEmptyWidth))}, + "InstFail": {reflect.TypeOf(q.InstFail), constant.MakeInt64(int64(q.InstFail))}, + "InstMatch": {reflect.TypeOf(q.InstMatch), constant.MakeInt64(int64(q.InstMatch))}, + "InstNop": {reflect.TypeOf(q.InstNop), constant.MakeInt64(int64(q.InstNop))}, + "InstRune": {reflect.TypeOf(q.InstRune), constant.MakeInt64(int64(q.InstRune))}, + "InstRune1": {reflect.TypeOf(q.InstRune1), constant.MakeInt64(int64(q.InstRune1))}, + "InstRuneAny": {reflect.TypeOf(q.InstRuneAny), constant.MakeInt64(int64(q.InstRuneAny))}, + "InstRuneAnyNotNL": {reflect.TypeOf(q.InstRuneAnyNotNL), constant.MakeInt64(int64(q.InstRuneAnyNotNL))}, + "Literal": {reflect.TypeOf(q.Literal), constant.MakeInt64(int64(q.Literal))}, + "MatchNL": {reflect.TypeOf(q.MatchNL), constant.MakeInt64(int64(q.MatchNL))}, + "NonGreedy": {reflect.TypeOf(q.NonGreedy), constant.MakeInt64(int64(q.NonGreedy))}, + "OneLine": {reflect.TypeOf(q.OneLine), constant.MakeInt64(int64(q.OneLine))}, + "OpAlternate": {reflect.TypeOf(q.OpAlternate), constant.MakeInt64(int64(q.OpAlternate))}, + "OpAnyChar": {reflect.TypeOf(q.OpAnyChar), constant.MakeInt64(int64(q.OpAnyChar))}, + "OpAnyCharNotNL": {reflect.TypeOf(q.OpAnyCharNotNL), constant.MakeInt64(int64(q.OpAnyCharNotNL))}, + "OpBeginLine": {reflect.TypeOf(q.OpBeginLine), constant.MakeInt64(int64(q.OpBeginLine))}, + "OpBeginText": {reflect.TypeOf(q.OpBeginText), constant.MakeInt64(int64(q.OpBeginText))}, + "OpCapture": {reflect.TypeOf(q.OpCapture), constant.MakeInt64(int64(q.OpCapture))}, + "OpCharClass": {reflect.TypeOf(q.OpCharClass), constant.MakeInt64(int64(q.OpCharClass))}, + "OpConcat": {reflect.TypeOf(q.OpConcat), constant.MakeInt64(int64(q.OpConcat))}, + "OpEmptyMatch": {reflect.TypeOf(q.OpEmptyMatch), constant.MakeInt64(int64(q.OpEmptyMatch))}, + "OpEndLine": {reflect.TypeOf(q.OpEndLine), constant.MakeInt64(int64(q.OpEndLine))}, + "OpEndText": {reflect.TypeOf(q.OpEndText), constant.MakeInt64(int64(q.OpEndText))}, + "OpLiteral": {reflect.TypeOf(q.OpLiteral), constant.MakeInt64(int64(q.OpLiteral))}, + "OpNoMatch": {reflect.TypeOf(q.OpNoMatch), constant.MakeInt64(int64(q.OpNoMatch))}, + "OpNoWordBoundary": {reflect.TypeOf(q.OpNoWordBoundary), constant.MakeInt64(int64(q.OpNoWordBoundary))}, + "OpPlus": {reflect.TypeOf(q.OpPlus), constant.MakeInt64(int64(q.OpPlus))}, + "OpQuest": {reflect.TypeOf(q.OpQuest), constant.MakeInt64(int64(q.OpQuest))}, + "OpRepeat": {reflect.TypeOf(q.OpRepeat), constant.MakeInt64(int64(q.OpRepeat))}, + "OpStar": {reflect.TypeOf(q.OpStar), constant.MakeInt64(int64(q.OpStar))}, + "OpWordBoundary": {reflect.TypeOf(q.OpWordBoundary), constant.MakeInt64(int64(q.OpWordBoundary))}, + "POSIX": {reflect.TypeOf(q.POSIX), constant.MakeInt64(int64(q.POSIX))}, + "Perl": {reflect.TypeOf(q.Perl), constant.MakeInt64(int64(q.Perl))}, + "PerlX": {reflect.TypeOf(q.PerlX), constant.MakeInt64(int64(q.PerlX))}, + "Simple": {reflect.TypeOf(q.Simple), constant.MakeInt64(int64(q.Simple))}, + "UnicodeGroups": {reflect.TypeOf(q.UnicodeGroups), constant.MakeInt64(int64(q.UnicodeGroups))}, + "WasDollar": {reflect.TypeOf(q.WasDollar), constant.MakeInt64(int64(q.WasDollar))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/runtime/coverage/go121_export.go b/pkg/runtime/coverage/go121_export.go index 51809f1a..59b8e68a 100755 --- a/pkg/runtime/coverage/go121_export.go +++ b/pkg/runtime/coverage/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package coverage diff --git a/pkg/runtime/coverage/go122_export.go b/pkg/runtime/coverage/go122_export.go new file mode 100755 index 00000000..8def1a18 --- /dev/null +++ b/pkg/runtime/coverage/go122_export.go @@ -0,0 +1,59 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package coverage + +import ( + q "runtime/coverage" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "coverage", + Path: "runtime/coverage", + Deps: map[string]string{ + "crypto/md5": "md5", + "encoding/json": "json", + "fmt": "fmt", + "internal/coverage": "coverage", + "internal/coverage/calloc": "calloc", + "internal/coverage/cformat": "cformat", + "internal/coverage/cmerge": "cmerge", + "internal/coverage/decodecounter": "decodecounter", + "internal/coverage/decodemeta": "decodemeta", + "internal/coverage/encodecounter": "encodecounter", + "internal/coverage/encodemeta": "encodemeta", + "internal/coverage/pods": "pods", + "internal/coverage/rtcov": "rtcov", + "io": "io", + "os": "os", + "path/filepath": "filepath", + "runtime": "runtime", + "runtime/internal/atomic": "atomic", + "strconv": "strconv", + "strings": "strings", + "sync/atomic": "atomic", + "time": "time", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "ClearCounters": reflect.ValueOf(q.ClearCounters), + "WriteCounters": reflect.ValueOf(q.WriteCounters), + "WriteCountersDir": reflect.ValueOf(q.WriteCountersDir), + "WriteMeta": reflect.ValueOf(q.WriteMeta), + "WriteMetaDir": reflect.ValueOf(q.WriteMetaDir), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/runtime/coverage/go123_export.go b/pkg/runtime/coverage/go123_export.go new file mode 100755 index 00000000..34ea1321 --- /dev/null +++ b/pkg/runtime/coverage/go123_export.go @@ -0,0 +1,38 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package coverage + +import ( + q "runtime/coverage" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "coverage", + Path: "runtime/coverage", + Deps: map[string]string{ + "internal/coverage/cfile": "cfile", + "io": "io", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "ClearCounters": reflect.ValueOf(q.ClearCounters), + "WriteCounters": reflect.ValueOf(q.WriteCounters), + "WriteCountersDir": reflect.ValueOf(q.WriteCountersDir), + "WriteMeta": reflect.ValueOf(q.WriteMeta), + "WriteMetaDir": reflect.ValueOf(q.WriteMetaDir), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/runtime/debug/go121_export.go b/pkg/runtime/debug/go121_export.go index aa5d456c..9b4e90cd 100755 --- a/pkg/runtime/debug/go121_export.go +++ b/pkg/runtime/debug/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package debug diff --git a/pkg/runtime/debug/go122_export.go b/pkg/runtime/debug/go122_export.go new file mode 100755 index 00000000..c510d7cd --- /dev/null +++ b/pkg/runtime/debug/go122_export.go @@ -0,0 +1,56 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package debug + +import ( + q "runtime/debug" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "debug", + Path: "runtime/debug", + Deps: map[string]string{ + "fmt": "fmt", + "os": "os", + "runtime": "runtime", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "BuildInfo": reflect.TypeOf((*q.BuildInfo)(nil)).Elem(), + "BuildSetting": reflect.TypeOf((*q.BuildSetting)(nil)).Elem(), + "GCStats": reflect.TypeOf((*q.GCStats)(nil)).Elem(), + "Module": reflect.TypeOf((*q.Module)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "FreeOSMemory": reflect.ValueOf(q.FreeOSMemory), + "ParseBuildInfo": reflect.ValueOf(q.ParseBuildInfo), + "PrintStack": reflect.ValueOf(q.PrintStack), + "ReadBuildInfo": reflect.ValueOf(q.ReadBuildInfo), + "ReadGCStats": reflect.ValueOf(q.ReadGCStats), + "SetGCPercent": reflect.ValueOf(q.SetGCPercent), + "SetMaxStack": reflect.ValueOf(q.SetMaxStack), + "SetMaxThreads": reflect.ValueOf(q.SetMaxThreads), + "SetMemoryLimit": reflect.ValueOf(q.SetMemoryLimit), + "SetPanicOnFault": reflect.ValueOf(q.SetPanicOnFault), + "SetTraceback": reflect.ValueOf(q.SetTraceback), + "Stack": reflect.ValueOf(q.Stack), + "WriteHeapDump": reflect.ValueOf(q.WriteHeapDump), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/runtime/debug/go123_export.go b/pkg/runtime/debug/go123_export.go new file mode 100755 index 00000000..02d46d1e --- /dev/null +++ b/pkg/runtime/debug/go123_export.go @@ -0,0 +1,60 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package debug + +import ( + q "runtime/debug" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "debug", + Path: "runtime/debug", + Deps: map[string]string{ + "fmt": "fmt", + "internal/poll": "poll", + "os": "os", + "runtime": "runtime", + "slices": "slices", + "strconv": "strconv", + "strings": "strings", + "time": "time", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "BuildInfo": reflect.TypeOf((*q.BuildInfo)(nil)).Elem(), + "BuildSetting": reflect.TypeOf((*q.BuildSetting)(nil)).Elem(), + "CrashOptions": reflect.TypeOf((*q.CrashOptions)(nil)).Elem(), + "GCStats": reflect.TypeOf((*q.GCStats)(nil)).Elem(), + "Module": reflect.TypeOf((*q.Module)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "FreeOSMemory": reflect.ValueOf(q.FreeOSMemory), + "ParseBuildInfo": reflect.ValueOf(q.ParseBuildInfo), + "PrintStack": reflect.ValueOf(q.PrintStack), + "ReadBuildInfo": reflect.ValueOf(q.ReadBuildInfo), + "ReadGCStats": reflect.ValueOf(q.ReadGCStats), + "SetCrashOutput": reflect.ValueOf(q.SetCrashOutput), + "SetGCPercent": reflect.ValueOf(q.SetGCPercent), + "SetMaxStack": reflect.ValueOf(q.SetMaxStack), + "SetMaxThreads": reflect.ValueOf(q.SetMaxThreads), + "SetMemoryLimit": reflect.ValueOf(q.SetMemoryLimit), + "SetPanicOnFault": reflect.ValueOf(q.SetPanicOnFault), + "SetTraceback": reflect.ValueOf(q.SetTraceback), + "Stack": reflect.ValueOf(q.Stack), + "WriteHeapDump": reflect.ValueOf(q.WriteHeapDump), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/runtime/go121_export.go b/pkg/runtime/go121_export.go index 7e08e314..a051efe8 100755 --- a/pkg/runtime/go121_export.go +++ b/pkg/runtime/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package runtime diff --git a/pkg/runtime/go122_export.go b/pkg/runtime/go122_export.go new file mode 100755 index 00000000..83105eac --- /dev/null +++ b/pkg/runtime/go122_export.go @@ -0,0 +1,98 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package runtime + +import ( + q "runtime" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "runtime", + Path: "runtime", + Deps: map[string]string{ + "internal/abi": "abi", + "internal/bytealg": "bytealg", + "internal/chacha8rand": "chacha8rand", + "internal/coverage/rtcov": "rtcov", + "internal/cpu": "cpu", + "internal/goarch": "goarch", + "internal/godebugs": "godebugs", + "internal/goexperiment": "goexperiment", + "internal/goos": "goos", + "runtime/internal/atomic": "atomic", + "runtime/internal/math": "math", + "runtime/internal/sys": "sys", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BlockProfileRecord": reflect.TypeOf((*q.BlockProfileRecord)(nil)).Elem(), + "Frame": reflect.TypeOf((*q.Frame)(nil)).Elem(), + "Frames": reflect.TypeOf((*q.Frames)(nil)).Elem(), + "Func": reflect.TypeOf((*q.Func)(nil)).Elem(), + "MemProfileRecord": reflect.TypeOf((*q.MemProfileRecord)(nil)).Elem(), + "MemStats": reflect.TypeOf((*q.MemStats)(nil)).Elem(), + "PanicNilError": reflect.TypeOf((*q.PanicNilError)(nil)).Elem(), + "Pinner": reflect.TypeOf((*q.Pinner)(nil)).Elem(), + "StackRecord": reflect.TypeOf((*q.StackRecord)(nil)).Elem(), + "TypeAssertionError": reflect.TypeOf((*q.TypeAssertionError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "MemProfileRate": reflect.ValueOf(&q.MemProfileRate), + }, + Funcs: map[string]reflect.Value{ + "BlockProfile": reflect.ValueOf(q.BlockProfile), + "Breakpoint": reflect.ValueOf(q.Breakpoint), + "CPUProfile": reflect.ValueOf(q.CPUProfile), + "Caller": reflect.ValueOf(q.Caller), + "Callers": reflect.ValueOf(q.Callers), + "CallersFrames": reflect.ValueOf(q.CallersFrames), + "FuncForPC": reflect.ValueOf(q.FuncForPC), + "GC": reflect.ValueOf(q.GC), + "GOMAXPROCS": reflect.ValueOf(q.GOMAXPROCS), + "GOROOT": reflect.ValueOf(q.GOROOT), + "Goexit": reflect.ValueOf(q.Goexit), + "GoroutineProfile": reflect.ValueOf(q.GoroutineProfile), + "Gosched": reflect.ValueOf(q.Gosched), + "KeepAlive": reflect.ValueOf(q.KeepAlive), + "LockOSThread": reflect.ValueOf(q.LockOSThread), + "MemProfile": reflect.ValueOf(q.MemProfile), + "MutexProfile": reflect.ValueOf(q.MutexProfile), + "NumCPU": reflect.ValueOf(q.NumCPU), + "NumCgoCall": reflect.ValueOf(q.NumCgoCall), + "NumGoroutine": reflect.ValueOf(q.NumGoroutine), + "ReadMemStats": reflect.ValueOf(q.ReadMemStats), + "ReadTrace": reflect.ValueOf(q.ReadTrace), + "SetBlockProfileRate": reflect.ValueOf(q.SetBlockProfileRate), + "SetCPUProfileRate": reflect.ValueOf(q.SetCPUProfileRate), + "SetCgoTraceback": reflect.ValueOf(q.SetCgoTraceback), + "SetFinalizer": reflect.ValueOf(q.SetFinalizer), + "SetMutexProfileFraction": reflect.ValueOf(q.SetMutexProfileFraction), + "Stack": reflect.ValueOf(q.Stack), + "StartTrace": reflect.ValueOf(q.StartTrace), + "StopTrace": reflect.ValueOf(q.StopTrace), + "ThreadCreateProfile": reflect.ValueOf(q.ThreadCreateProfile), + "UnlockOSThread": reflect.ValueOf(q.UnlockOSThread), + "Version": reflect.ValueOf(q.Version), + }, + TypedConsts: map[string]igop.TypedConst{ + "GOARCH": {reflect.TypeOf(q.GOARCH), constant.MakeString(string(q.GOARCH))}, + "GOOS": {reflect.TypeOf(q.GOOS), constant.MakeString(string(q.GOOS))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "Compiler": {"untyped string", constant.MakeString(string(q.Compiler))}, + }, + }) +} diff --git a/pkg/runtime/go123_export.go b/pkg/runtime/go123_export.go new file mode 100755 index 00000000..c9074487 --- /dev/null +++ b/pkg/runtime/go123_export.go @@ -0,0 +1,101 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package runtime + +import ( + q "runtime" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "runtime", + Path: "runtime", + Deps: map[string]string{ + "internal/abi": "abi", + "internal/bytealg": "bytealg", + "internal/chacha8rand": "chacha8rand", + "internal/coverage/rtcov": "rtcov", + "internal/cpu": "cpu", + "internal/goarch": "goarch", + "internal/godebugs": "godebugs", + "internal/goexperiment": "goexperiment", + "internal/goos": "goos", + "internal/profilerecord": "profilerecord", + "internal/runtime/atomic": "atomic", + "internal/runtime/exithook": "exithook", + "internal/stringslite": "stringslite", + "runtime/internal/math": "math", + "runtime/internal/sys": "sys", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BlockProfileRecord": reflect.TypeOf((*q.BlockProfileRecord)(nil)).Elem(), + "Frame": reflect.TypeOf((*q.Frame)(nil)).Elem(), + "Frames": reflect.TypeOf((*q.Frames)(nil)).Elem(), + "Func": reflect.TypeOf((*q.Func)(nil)).Elem(), + "MemProfileRecord": reflect.TypeOf((*q.MemProfileRecord)(nil)).Elem(), + "MemStats": reflect.TypeOf((*q.MemStats)(nil)).Elem(), + "PanicNilError": reflect.TypeOf((*q.PanicNilError)(nil)).Elem(), + "Pinner": reflect.TypeOf((*q.Pinner)(nil)).Elem(), + "StackRecord": reflect.TypeOf((*q.StackRecord)(nil)).Elem(), + "TypeAssertionError": reflect.TypeOf((*q.TypeAssertionError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "MemProfileRate": reflect.ValueOf(&q.MemProfileRate), + }, + Funcs: map[string]reflect.Value{ + "BlockProfile": reflect.ValueOf(q.BlockProfile), + "Breakpoint": reflect.ValueOf(q.Breakpoint), + "CPUProfile": reflect.ValueOf(q.CPUProfile), + "Caller": reflect.ValueOf(q.Caller), + "Callers": reflect.ValueOf(q.Callers), + "CallersFrames": reflect.ValueOf(q.CallersFrames), + "FuncForPC": reflect.ValueOf(q.FuncForPC), + "GC": reflect.ValueOf(q.GC), + "GOMAXPROCS": reflect.ValueOf(q.GOMAXPROCS), + "GOROOT": reflect.ValueOf(q.GOROOT), + "Goexit": reflect.ValueOf(q.Goexit), + "GoroutineProfile": reflect.ValueOf(q.GoroutineProfile), + "Gosched": reflect.ValueOf(q.Gosched), + "KeepAlive": reflect.ValueOf(q.KeepAlive), + "LockOSThread": reflect.ValueOf(q.LockOSThread), + "MemProfile": reflect.ValueOf(q.MemProfile), + "MutexProfile": reflect.ValueOf(q.MutexProfile), + "NumCPU": reflect.ValueOf(q.NumCPU), + "NumCgoCall": reflect.ValueOf(q.NumCgoCall), + "NumGoroutine": reflect.ValueOf(q.NumGoroutine), + "ReadMemStats": reflect.ValueOf(q.ReadMemStats), + "ReadTrace": reflect.ValueOf(q.ReadTrace), + "SetBlockProfileRate": reflect.ValueOf(q.SetBlockProfileRate), + "SetCPUProfileRate": reflect.ValueOf(q.SetCPUProfileRate), + "SetCgoTraceback": reflect.ValueOf(q.SetCgoTraceback), + "SetFinalizer": reflect.ValueOf(q.SetFinalizer), + "SetMutexProfileFraction": reflect.ValueOf(q.SetMutexProfileFraction), + "Stack": reflect.ValueOf(q.Stack), + "StartTrace": reflect.ValueOf(q.StartTrace), + "StopTrace": reflect.ValueOf(q.StopTrace), + "ThreadCreateProfile": reflect.ValueOf(q.ThreadCreateProfile), + "UnlockOSThread": reflect.ValueOf(q.UnlockOSThread), + "Version": reflect.ValueOf(q.Version), + }, + TypedConsts: map[string]igop.TypedConst{ + "GOARCH": {reflect.TypeOf(q.GOARCH), constant.MakeString(string(q.GOARCH))}, + "GOOS": {reflect.TypeOf(q.GOOS), constant.MakeString(string(q.GOOS))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "Compiler": {"untyped string", constant.MakeString(string(q.Compiler))}, + }, + }) +} diff --git a/pkg/runtime/metrics/go121_export.go b/pkg/runtime/metrics/go121_export.go index fbbe614e..b586902b 100755 --- a/pkg/runtime/metrics/go121_export.go +++ b/pkg/runtime/metrics/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package metrics diff --git a/pkg/runtime/metrics/go122_export.go b/pkg/runtime/metrics/go122_export.go new file mode 100755 index 00000000..d2617f0c --- /dev/null +++ b/pkg/runtime/metrics/go122_export.go @@ -0,0 +1,49 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package metrics + +import ( + q "runtime/metrics" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "metrics", + Path: "runtime/metrics", + Deps: map[string]string{ + "internal/godebugs": "godebugs", + "math": "math", + "runtime": "runtime", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Description": reflect.TypeOf((*q.Description)(nil)).Elem(), + "Float64Histogram": reflect.TypeOf((*q.Float64Histogram)(nil)).Elem(), + "Sample": reflect.TypeOf((*q.Sample)(nil)).Elem(), + "Value": reflect.TypeOf((*q.Value)(nil)).Elem(), + "ValueKind": reflect.TypeOf((*q.ValueKind)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "All": reflect.ValueOf(q.All), + "Read": reflect.ValueOf(q.Read), + }, + TypedConsts: map[string]igop.TypedConst{ + "KindBad": {reflect.TypeOf(q.KindBad), constant.MakeInt64(int64(q.KindBad))}, + "KindFloat64": {reflect.TypeOf(q.KindFloat64), constant.MakeInt64(int64(q.KindFloat64))}, + "KindFloat64Histogram": {reflect.TypeOf(q.KindFloat64Histogram), constant.MakeInt64(int64(q.KindFloat64Histogram))}, + "KindUint64": {reflect.TypeOf(q.KindUint64), constant.MakeInt64(int64(q.KindUint64))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/runtime/metrics/go123_export.go b/pkg/runtime/metrics/go123_export.go new file mode 100755 index 00000000..5d6b9ec2 --- /dev/null +++ b/pkg/runtime/metrics/go123_export.go @@ -0,0 +1,49 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package metrics + +import ( + q "runtime/metrics" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "metrics", + Path: "runtime/metrics", + Deps: map[string]string{ + "internal/godebugs": "godebugs", + "math": "math", + "runtime": "runtime", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Description": reflect.TypeOf((*q.Description)(nil)).Elem(), + "Float64Histogram": reflect.TypeOf((*q.Float64Histogram)(nil)).Elem(), + "Sample": reflect.TypeOf((*q.Sample)(nil)).Elem(), + "Value": reflect.TypeOf((*q.Value)(nil)).Elem(), + "ValueKind": reflect.TypeOf((*q.ValueKind)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "All": reflect.ValueOf(q.All), + "Read": reflect.ValueOf(q.Read), + }, + TypedConsts: map[string]igop.TypedConst{ + "KindBad": {reflect.TypeOf(q.KindBad), constant.MakeInt64(int64(q.KindBad))}, + "KindFloat64": {reflect.TypeOf(q.KindFloat64), constant.MakeInt64(int64(q.KindFloat64))}, + "KindFloat64Histogram": {reflect.TypeOf(q.KindFloat64Histogram), constant.MakeInt64(int64(q.KindFloat64Histogram))}, + "KindUint64": {reflect.TypeOf(q.KindUint64), constant.MakeInt64(int64(q.KindUint64))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/runtime/pprof/go121_export.go b/pkg/runtime/pprof/go121_export.go index 84c984df..668c571d 100755 --- a/pkg/runtime/pprof/go121_export.go +++ b/pkg/runtime/pprof/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package pprof diff --git a/pkg/runtime/pprof/go122_export.go b/pkg/runtime/pprof/go122_export.go new file mode 100755 index 00000000..2faace05 --- /dev/null +++ b/pkg/runtime/pprof/go122_export.go @@ -0,0 +1,66 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package pprof + +import ( + q "runtime/pprof" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "pprof", + Path: "runtime/pprof", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "compress/gzip": "gzip", + "context": "context", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "internal/abi": "abi", + "io": "io", + "math": "math", + "os": "os", + "runtime": "runtime", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "syscall": "syscall", + "text/tabwriter": "tabwriter", + "time": "time", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "LabelSet": reflect.TypeOf((*q.LabelSet)(nil)).Elem(), + "Profile": reflect.TypeOf((*q.Profile)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Do": reflect.ValueOf(q.Do), + "ForLabels": reflect.ValueOf(q.ForLabels), + "Label": reflect.ValueOf(q.Label), + "Labels": reflect.ValueOf(q.Labels), + "Lookup": reflect.ValueOf(q.Lookup), + "NewProfile": reflect.ValueOf(q.NewProfile), + "Profiles": reflect.ValueOf(q.Profiles), + "SetGoroutineLabels": reflect.ValueOf(q.SetGoroutineLabels), + "StartCPUProfile": reflect.ValueOf(q.StartCPUProfile), + "StopCPUProfile": reflect.ValueOf(q.StopCPUProfile), + "WithLabels": reflect.ValueOf(q.WithLabels), + "WriteHeapProfile": reflect.ValueOf(q.WriteHeapProfile), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/runtime/pprof/go123_export.go b/pkg/runtime/pprof/go123_export.go new file mode 100755 index 00000000..bb0df3b3 --- /dev/null +++ b/pkg/runtime/pprof/go123_export.go @@ -0,0 +1,69 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package pprof + +import ( + q "runtime/pprof" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "pprof", + Path: "runtime/pprof", + Deps: map[string]string{ + "bufio": "bufio", + "bytes": "bytes", + "cmp": "cmp", + "compress/gzip": "gzip", + "context": "context", + "encoding/binary": "binary", + "errors": "errors", + "fmt": "fmt", + "internal/abi": "abi", + "internal/profilerecord": "profilerecord", + "io": "io", + "math": "math", + "os": "os", + "runtime": "runtime", + "slices": "slices", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "syscall": "syscall", + "text/tabwriter": "tabwriter", + "time": "time", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "LabelSet": reflect.TypeOf((*q.LabelSet)(nil)).Elem(), + "Profile": reflect.TypeOf((*q.Profile)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Do": reflect.ValueOf(q.Do), + "ForLabels": reflect.ValueOf(q.ForLabels), + "Label": reflect.ValueOf(q.Label), + "Labels": reflect.ValueOf(q.Labels), + "Lookup": reflect.ValueOf(q.Lookup), + "NewProfile": reflect.ValueOf(q.NewProfile), + "Profiles": reflect.ValueOf(q.Profiles), + "SetGoroutineLabels": reflect.ValueOf(q.SetGoroutineLabels), + "StartCPUProfile": reflect.ValueOf(q.StartCPUProfile), + "StopCPUProfile": reflect.ValueOf(q.StopCPUProfile), + "WithLabels": reflect.ValueOf(q.WithLabels), + "WriteHeapProfile": reflect.ValueOf(q.WriteHeapProfile), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/runtime/trace/go121_export.go b/pkg/runtime/trace/go121_export.go index 114beeec..f3bbb48b 100755 --- a/pkg/runtime/trace/go121_export.go +++ b/pkg/runtime/trace/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package trace diff --git a/pkg/runtime/trace/go122_export.go b/pkg/runtime/trace/go122_export.go new file mode 100755 index 00000000..7b0e7a81 --- /dev/null +++ b/pkg/runtime/trace/go122_export.go @@ -0,0 +1,49 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package trace + +import ( + q "runtime/trace" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "trace", + Path: "runtime/trace", + Deps: map[string]string{ + "context": "context", + "fmt": "fmt", + "io": "io", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Region": reflect.TypeOf((*q.Region)(nil)).Elem(), + "Task": reflect.TypeOf((*q.Task)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "IsEnabled": reflect.ValueOf(q.IsEnabled), + "Log": reflect.ValueOf(q.Log), + "Logf": reflect.ValueOf(q.Logf), + "NewTask": reflect.ValueOf(q.NewTask), + "Start": reflect.ValueOf(q.Start), + "StartRegion": reflect.ValueOf(q.StartRegion), + "Stop": reflect.ValueOf(q.Stop), + "WithRegion": reflect.ValueOf(q.WithRegion), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/runtime/trace/go123_export.go b/pkg/runtime/trace/go123_export.go new file mode 100755 index 00000000..8bc661be --- /dev/null +++ b/pkg/runtime/trace/go123_export.go @@ -0,0 +1,49 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package trace + +import ( + q "runtime/trace" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "trace", + Path: "runtime/trace", + Deps: map[string]string{ + "context": "context", + "fmt": "fmt", + "io": "io", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Region": reflect.TypeOf((*q.Region)(nil)).Elem(), + "Task": reflect.TypeOf((*q.Task)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "IsEnabled": reflect.ValueOf(q.IsEnabled), + "Log": reflect.ValueOf(q.Log), + "Logf": reflect.ValueOf(q.Logf), + "NewTask": reflect.ValueOf(q.NewTask), + "Start": reflect.ValueOf(q.Start), + "StartRegion": reflect.ValueOf(q.StartRegion), + "Stop": reflect.ValueOf(q.Stop), + "WithRegion": reflect.ValueOf(q.WithRegion), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/slices/go121_export.go b/pkg/slices/go121_export.go index 109fb312..9e32b8f2 100755 --- a/pkg/slices/go121_export.go +++ b/pkg/slices/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package slices diff --git a/pkg/slices/go122_export.go b/pkg/slices/go122_export.go new file mode 100755 index 00000000..45f97db5 --- /dev/null +++ b/pkg/slices/go122_export.go @@ -0,0 +1,27 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package slices + +import ( + _ "slices" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "slices", + Path: "slices", + Deps: map[string]string{ + "cmp": "cmp", + "math/bits": "bits", + "unsafe": "unsafe", + }, + Source: source, + }) +} + +var source = "package slices\n\nimport (\n\t\"cmp\"\n\t\"unsafe\"\n\t\"math/bits\"\n)\n\nfunc Equal[S ~[]E, E comparable](s1, s2 S) bool {\n\tif len(s1) != len(s2) {\n\t\treturn false\n\t}\n\tfor i := range s1 {\n\t\tif s1[i] != s2[i] {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nfunc EqualFunc[S1 ~[]E1, S2 ~[]E2, E1, E2 any](s1 S1, s2 S2, eq func(E1, E2) bool) bool {\n\tif len(s1) != len(s2) {\n\t\treturn false\n\t}\n\tfor i, v1 := range s1 {\n\t\tv2 := s2[i]\n\t\tif !eq(v1, v2) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nfunc Compare[S ~[]E, E cmp.Ordered](s1, s2 S) int {\n\tfor i, v1 := range s1 {\n\t\tif i >= len(s2) {\n\t\t\treturn +1\n\t\t}\n\t\tv2 := s2[i]\n\t\tif c := cmp.Compare(v1, v2); c != 0 {\n\t\t\treturn c\n\t\t}\n\t}\n\tif len(s1) < len(s2) {\n\t\treturn -1\n\t}\n\treturn 0\n}\n\nfunc CompareFunc[S1 ~[]E1, S2 ~[]E2, E1, E2 any](s1 S1, s2 S2, cmp func(E1, E2) int) int {\n\tfor i, v1 := range s1 {\n\t\tif i >= len(s2) {\n\t\t\treturn +1\n\t\t}\n\t\tv2 := s2[i]\n\t\tif c := cmp(v1, v2); c != 0 {\n\t\t\treturn c\n\t\t}\n\t}\n\tif len(s1) < len(s2) {\n\t\treturn -1\n\t}\n\treturn 0\n}\n\nfunc Index[S ~[]E, E comparable](s S, v E) int {\n\tfor i := range s {\n\t\tif v == s[i] {\n\t\t\treturn i\n\t\t}\n\t}\n\treturn -1\n}\n\nfunc IndexFunc[S ~[]E, E any](s S, f func(E) bool) int {\n\tfor i := range s {\n\t\tif f(s[i]) {\n\t\t\treturn i\n\t\t}\n\t}\n\treturn -1\n}\n\nfunc Contains[S ~[]E, E comparable](s S, v E) bool {\n\treturn Index(s, v) >= 0\n}\n\nfunc ContainsFunc[S ~[]E, E any](s S, f func(E) bool) bool {\n\treturn IndexFunc(s, f) >= 0\n}\n\nfunc Insert[S ~[]E, E any](s S, i int, v ...E) S {\n\t_ = s[i:]\n\n\tm := len(v)\n\tif m == 0 {\n\t\treturn s\n\t}\n\tn := len(s)\n\tif i == n {\n\t\treturn append(s, v...)\n\t}\n\tif n+m > cap(s) {\n\n\t\ts2 := append(s[:i], make(S, n+m-i)...)\n\t\tcopy(s2[i:], v)\n\t\tcopy(s2[i+m:], s[i:])\n\t\treturn s2\n\t}\n\ts = s[:n+m]\n\n\tif !overlaps(v, s[i+m:]) {\n\n\t\tcopy(s[i+m:], s[i:])\n\n\t\tcopy(s[i:], v)\n\n\t\treturn s\n\t}\n\n\tcopy(s[n:], v)\n\n\trotateRight(s[i:], m)\n\n\treturn s\n}\n\nfunc Delete[S ~[]E, E any](s S, i, j int) S {\n\t_ = s[i:j:len(s)]\n\n\tif i == j {\n\t\treturn s\n\t}\n\n\toldlen := len(s)\n\ts = append(s[:i], s[j:]...)\n\tclear(s[len(s):oldlen])\n\treturn s\n}\n\nfunc DeleteFunc[S ~[]E, E any](s S, del func(E) bool) S {\n\ti := IndexFunc(s, del)\n\tif i == -1 {\n\t\treturn s\n\t}\n\n\tfor j := i + 1; j < len(s); j++ {\n\t\tif v := s[j]; !del(v) {\n\t\t\ts[i] = v\n\t\t\ti++\n\t\t}\n\t}\n\tclear(s[i:])\n\treturn s[:i]\n}\n\nfunc Replace[S ~[]E, E any](s S, i, j int, v ...E) S {\n\t_ = s[i:j]\n\n\tif i == j {\n\t\treturn Insert(s, i, v...)\n\t}\n\tif j == len(s) {\n\t\treturn append(s[:i], v...)\n\t}\n\n\ttot := len(s[:i]) + len(v) + len(s[j:])\n\tif tot > cap(s) {\n\n\t\ts2 := append(s[:i], make(S, tot-i)...)\n\t\tcopy(s2[i:], v)\n\t\tcopy(s2[i+len(v):], s[j:])\n\t\treturn s2\n\t}\n\n\tr := s[:tot]\n\n\tif i+len(v) <= j {\n\n\t\tcopy(r[i:], v)\n\t\tcopy(r[i+len(v):], s[j:])\n\t\tclear(s[tot:])\n\t\treturn r\n\t}\n\n\tif !overlaps(r[i+len(v):], v) {\n\n\t\tcopy(r[i+len(v):], s[j:])\n\t\tcopy(r[i:], v)\n\t\treturn r\n\t}\n\n\ty := len(v) - (j - i)\n\n\tif !overlaps(r[i:j], v) {\n\t\tcopy(r[i:j], v[y:])\n\t\tcopy(r[len(s):], v[:y])\n\t\trotateRight(r[i:], y)\n\t\treturn r\n\t}\n\tif !overlaps(r[len(s):], v) {\n\t\tcopy(r[len(s):], v[:y])\n\t\tcopy(r[i:j], v[y:])\n\t\trotateRight(r[i:], y)\n\t\treturn r\n\t}\n\n\tk := startIdx(v, s[j:])\n\tcopy(r[i:], v)\n\tcopy(r[i+len(v):], r[i+k:])\n\treturn r\n}\n\nfunc Clone[S ~[]E, E any](s S) S {\n\n\treturn append(s[:0:0], s...)\n}\n\nfunc Compact[S ~[]E, E comparable](s S) S {\n\tif len(s) < 2 {\n\t\treturn s\n\t}\n\ti := 1\n\tfor k := 1; k < len(s); k++ {\n\t\tif s[k] != s[k-1] {\n\t\t\tif i != k {\n\t\t\t\ts[i] = s[k]\n\t\t\t}\n\t\t\ti++\n\t\t}\n\t}\n\tclear(s[i:])\n\treturn s[:i]\n}\n\nfunc CompactFunc[S ~[]E, E any](s S, eq func(E, E) bool) S {\n\tif len(s) < 2 {\n\t\treturn s\n\t}\n\ti := 1\n\tfor k := 1; k < len(s); k++ {\n\t\tif !eq(s[k], s[k-1]) {\n\t\t\tif i != k {\n\t\t\t\ts[i] = s[k]\n\t\t\t}\n\t\t\ti++\n\t\t}\n\t}\n\tclear(s[i:])\n\treturn s[:i]\n}\n\nfunc Grow[S ~[]E, E any](s S, n int) S {\n\tif n < 0 {\n\t\tpanic(\"cannot be negative\")\n\t}\n\tif n -= cap(s) - len(s); n > 0 {\n\t\ts = append(s[:cap(s)], make([]E, n)...)[:len(s)]\n\t}\n\treturn s\n}\n\nfunc Clip[S ~[]E, E any](s S) S {\n\treturn s[:len(s):len(s)]\n}\n\nfunc rotateLeft[E any](s []E, r int) {\n\tfor r != 0 && r != len(s) {\n\t\tif r*2 <= len(s) {\n\t\t\tswap(s[:r], s[len(s)-r:])\n\t\t\ts = s[:len(s)-r]\n\t\t} else {\n\t\t\tswap(s[:len(s)-r], s[r:])\n\t\t\ts, r = s[len(s)-r:], r*2-len(s)\n\t\t}\n\t}\n}\nfunc rotateRight[E any](s []E, r int) {\n\trotateLeft(s, len(s)-r)\n}\n\nfunc swap[E any](x, y []E) {\n\tfor i := 0; i < len(x); i++ {\n\t\tx[i], y[i] = y[i], x[i]\n\t}\n}\n\nfunc overlaps[E any](a, b []E) bool {\n\tif len(a) == 0 || len(b) == 0 {\n\t\treturn false\n\t}\n\telemSize := unsafe.Sizeof(a[0])\n\tif elemSize == 0 {\n\t\treturn false\n\t}\n\n\treturn uintptr(unsafe.Pointer(&a[0])) <= uintptr(unsafe.Pointer(&b[len(b)-1]))+(elemSize-1) &&\n\t\tuintptr(unsafe.Pointer(&b[0])) <= uintptr(unsafe.Pointer(&a[len(a)-1]))+(elemSize-1)\n}\n\nfunc startIdx[E any](haystack, needle []E) int {\n\tp := &needle[0]\n\tfor i := range haystack {\n\t\tif p == &haystack[i] {\n\t\t\treturn i\n\t\t}\n\t}\n\n\tpanic(\"needle not found\")\n}\n\nfunc Reverse[S ~[]E, E any](s S) {\n\tfor i, j := 0, len(s)-1; i < j; i, j = i+1, j-1 {\n\t\ts[i], s[j] = s[j], s[i]\n\t}\n}\n\nfunc Concat[S ~[]E, E any](slices ...S) S {\n\tsize := 0\n\tfor _, s := range slices {\n\t\tsize += len(s)\n\t\tif size < 0 {\n\t\t\tpanic(\"len out of range\")\n\t\t}\n\t}\n\tnewslice := Grow[S](nil, size)\n\tfor _, s := range slices {\n\t\tnewslice = append(newslice, s...)\n\t}\n\treturn newslice\n}\nfunc Sort[S ~[]E, E cmp.Ordered](x S) {\n\tn := len(x)\n\tpdqsortOrdered(x, 0, n, bits.Len(uint(n)))\n}\n\nfunc SortFunc[S ~[]E, E any](x S, cmp func(a, b E) int) {\n\tn := len(x)\n\tpdqsortCmpFunc(x, 0, n, bits.Len(uint(n)), cmp)\n}\n\nfunc SortStableFunc[S ~[]E, E any](x S, cmp func(a, b E) int) {\n\tstableCmpFunc(x, len(x), cmp)\n}\n\nfunc IsSorted[S ~[]E, E cmp.Ordered](x S) bool {\n\tfor i := len(x) - 1; i > 0; i-- {\n\t\tif cmp.Less(x[i], x[i-1]) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nfunc IsSortedFunc[S ~[]E, E any](x S, cmp func(a, b E) int) bool {\n\tfor i := len(x) - 1; i > 0; i-- {\n\t\tif cmp(x[i], x[i-1]) < 0 {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nfunc Min[S ~[]E, E cmp.Ordered](x S) E {\n\tif len(x) < 1 {\n\t\tpanic(\"slices.Min: empty list\")\n\t}\n\tm := x[0]\n\tfor i := 1; i < len(x); i++ {\n\t\tm = min(m, x[i])\n\t}\n\treturn m\n}\n\nfunc MinFunc[S ~[]E, E any](x S, cmp func(a, b E) int) E {\n\tif len(x) < 1 {\n\t\tpanic(\"slices.MinFunc: empty list\")\n\t}\n\tm := x[0]\n\tfor i := 1; i < len(x); i++ {\n\t\tif cmp(x[i], m) < 0 {\n\t\t\tm = x[i]\n\t\t}\n\t}\n\treturn m\n}\n\nfunc Max[S ~[]E, E cmp.Ordered](x S) E {\n\tif len(x) < 1 {\n\t\tpanic(\"slices.Max: empty list\")\n\t}\n\tm := x[0]\n\tfor i := 1; i < len(x); i++ {\n\t\tm = max(m, x[i])\n\t}\n\treturn m\n}\n\nfunc MaxFunc[S ~[]E, E any](x S, cmp func(a, b E) int) E {\n\tif len(x) < 1 {\n\t\tpanic(\"slices.MaxFunc: empty list\")\n\t}\n\tm := x[0]\n\tfor i := 1; i < len(x); i++ {\n\t\tif cmp(x[i], m) > 0 {\n\t\t\tm = x[i]\n\t\t}\n\t}\n\treturn m\n}\n\nfunc BinarySearch[S ~[]E, E cmp.Ordered](x S, target E) (int, bool) {\n\n\tn := len(x)\n\n\ti, j := 0, n\n\tfor i < j {\n\t\th := int(uint(i+j) >> 1)\n\n\t\tif cmp.Less(x[h], target) {\n\t\t\ti = h + 1\n\t\t} else {\n\t\t\tj = h\n\t\t}\n\t}\n\n\treturn i, i < n && (x[i] == target || (isNaN(x[i]) && isNaN(target)))\n}\n\nfunc BinarySearchFunc[S ~[]E, E, T any](x S, target T, cmp func(E, T) int) (int, bool) {\n\tn := len(x)\n\n\ti, j := 0, n\n\tfor i < j {\n\t\th := int(uint(i+j) >> 1)\n\n\t\tif cmp(x[h], target) < 0 {\n\t\t\ti = h + 1\n\t\t} else {\n\t\t\tj = h\n\t\t}\n\t}\n\n\treturn i, i < n && cmp(x[i], target) == 0\n}\n\ntype sortedHint int\n\nconst (\n\tunknownHint\tsortedHint\t= iota\n\tincreasingHint\n\tdecreasingHint\n)\n\ntype xorshift uint64\n\nfunc (r *xorshift) Next() uint64 {\n\t*r ^= *r << 13\n\t*r ^= *r >> 17\n\t*r ^= *r << 5\n\treturn uint64(*r)\n}\n\nfunc nextPowerOfTwo(length int) uint {\n\treturn 1 << bits.Len(uint(length))\n}\n\nfunc isNaN[T cmp.Ordered](x T) bool {\n\treturn x != x\n}\nfunc insertionSortCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) {\n\tfor i := a + 1; i < b; i++ {\n\t\tfor j := i; j > a && (cmp(data[j], data[j-1]) < 0); j-- {\n\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t}\n\t}\n}\n\nfunc siftDownCmpFunc[E any](data []E, lo, hi, first int, cmp func(a, b E) int) {\n\troot := lo\n\tfor {\n\t\tchild := 2*root + 1\n\t\tif child >= hi {\n\t\t\tbreak\n\t\t}\n\t\tif child+1 < hi && (cmp(data[first+child], data[first+child+1]) < 0) {\n\t\t\tchild++\n\t\t}\n\t\tif !(cmp(data[first+root], data[first+child]) < 0) {\n\t\t\treturn\n\t\t}\n\t\tdata[first+root], data[first+child] = data[first+child], data[first+root]\n\t\troot = child\n\t}\n}\n\nfunc heapSortCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) {\n\tfirst := a\n\tlo := 0\n\thi := b - a\n\n\tfor i := (hi - 1) / 2; i >= 0; i-- {\n\t\tsiftDownCmpFunc(data, i, hi, first, cmp)\n\t}\n\n\tfor i := hi - 1; i >= 0; i-- {\n\t\tdata[first], data[first+i] = data[first+i], data[first]\n\t\tsiftDownCmpFunc(data, lo, i, first, cmp)\n\t}\n}\n\nfunc pdqsortCmpFunc[E any](data []E, a, b, limit int, cmp func(a, b E) int) {\n\tconst maxInsertion = 12\n\n\tvar (\n\t\twasBalanced\t= true\n\t\twasPartitioned\t= true\n\t)\n\n\tfor {\n\t\tlength := b - a\n\n\t\tif length <= maxInsertion {\n\t\t\tinsertionSortCmpFunc(data, a, b, cmp)\n\t\t\treturn\n\t\t}\n\n\t\tif limit == 0 {\n\t\t\theapSortCmpFunc(data, a, b, cmp)\n\t\t\treturn\n\t\t}\n\n\t\tif !wasBalanced {\n\t\t\tbreakPatternsCmpFunc(data, a, b, cmp)\n\t\t\tlimit--\n\t\t}\n\n\t\tpivot, hint := choosePivotCmpFunc(data, a, b, cmp)\n\t\tif hint == decreasingHint {\n\t\t\treverseRangeCmpFunc(data, a, b, cmp)\n\n\t\t\tpivot = (b - 1) - (pivot - a)\n\t\t\thint = increasingHint\n\t\t}\n\n\t\tif wasBalanced && wasPartitioned && hint == increasingHint {\n\t\t\tif partialInsertionSortCmpFunc(data, a, b, cmp) {\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\n\t\tif a > 0 && !(cmp(data[a-1], data[pivot]) < 0) {\n\t\t\tmid := partitionEqualCmpFunc(data, a, b, pivot, cmp)\n\t\t\ta = mid\n\t\t\tcontinue\n\t\t}\n\n\t\tmid, alreadyPartitioned := partitionCmpFunc(data, a, b, pivot, cmp)\n\t\twasPartitioned = alreadyPartitioned\n\n\t\tleftLen, rightLen := mid-a, b-mid\n\t\tbalanceThreshold := length / 8\n\t\tif leftLen < rightLen {\n\t\t\twasBalanced = leftLen >= balanceThreshold\n\t\t\tpdqsortCmpFunc(data, a, mid, limit, cmp)\n\t\t\ta = mid + 1\n\t\t} else {\n\t\t\twasBalanced = rightLen >= balanceThreshold\n\t\t\tpdqsortCmpFunc(data, mid+1, b, limit, cmp)\n\t\t\tb = mid\n\t\t}\n\t}\n}\n\nfunc partitionCmpFunc[E any](data []E, a, b, pivot int, cmp func(a, b E) int) (newpivot int, alreadyPartitioned bool) {\n\tdata[a], data[pivot] = data[pivot], data[a]\n\ti, j := a+1, b-1\n\n\tfor i <= j && (cmp(data[i], data[a]) < 0) {\n\t\ti++\n\t}\n\tfor i <= j && !(cmp(data[j], data[a]) < 0) {\n\t\tj--\n\t}\n\tif i > j {\n\t\tdata[j], data[a] = data[a], data[j]\n\t\treturn j, true\n\t}\n\tdata[i], data[j] = data[j], data[i]\n\ti++\n\tj--\n\n\tfor {\n\t\tfor i <= j && (cmp(data[i], data[a]) < 0) {\n\t\t\ti++\n\t\t}\n\t\tfor i <= j && !(cmp(data[j], data[a]) < 0) {\n\t\t\tj--\n\t\t}\n\t\tif i > j {\n\t\t\tbreak\n\t\t}\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n\tdata[j], data[a] = data[a], data[j]\n\treturn j, false\n}\n\nfunc partitionEqualCmpFunc[E any](data []E, a, b, pivot int, cmp func(a, b E) int) (newpivot int) {\n\tdata[a], data[pivot] = data[pivot], data[a]\n\ti, j := a+1, b-1\n\n\tfor {\n\t\tfor i <= j && !(cmp(data[a], data[i]) < 0) {\n\t\t\ti++\n\t\t}\n\t\tfor i <= j && (cmp(data[a], data[j]) < 0) {\n\t\t\tj--\n\t\t}\n\t\tif i > j {\n\t\t\tbreak\n\t\t}\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n\treturn i\n}\n\nfunc partialInsertionSortCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) bool {\n\tconst (\n\t\tmaxSteps\t\t= 5\n\t\tshortestShifting\t= 50\n\t)\n\ti := a + 1\n\tfor j := 0; j < maxSteps; j++ {\n\t\tfor i < b && !(cmp(data[i], data[i-1]) < 0) {\n\t\t\ti++\n\t\t}\n\n\t\tif i == b {\n\t\t\treturn true\n\t\t}\n\n\t\tif b-a < shortestShifting {\n\t\t\treturn false\n\t\t}\n\n\t\tdata[i], data[i-1] = data[i-1], data[i]\n\n\t\tif i-a >= 2 {\n\t\t\tfor j := i - 1; j >= 1; j-- {\n\t\t\t\tif !(cmp(data[j], data[j-1]) < 0) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t\t}\n\t\t}\n\n\t\tif b-i >= 2 {\n\t\t\tfor j := i + 1; j < b; j++ {\n\t\t\t\tif !(cmp(data[j], data[j-1]) < 0) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t\t}\n\t\t}\n\t}\n\treturn false\n}\n\nfunc breakPatternsCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) {\n\tlength := b - a\n\tif length >= 8 {\n\t\trandom := xorshift(length)\n\t\tmodulus := nextPowerOfTwo(length)\n\n\t\tfor idx := a + (length/4)*2 - 1; idx <= a+(length/4)*2+1; idx++ {\n\t\t\tother := int(uint(random.Next()) & (modulus - 1))\n\t\t\tif other >= length {\n\t\t\t\tother -= length\n\t\t\t}\n\t\t\tdata[idx], data[a+other] = data[a+other], data[idx]\n\t\t}\n\t}\n}\n\nfunc choosePivotCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) (pivot int, hint sortedHint) {\n\tconst (\n\t\tshortestNinther\t= 50\n\t\tmaxSwaps\t= 4 * 3\n\t)\n\n\tl := b - a\n\n\tvar (\n\t\tswaps\tint\n\t\ti\t= a + l/4*1\n\t\tj\t= a + l/4*2\n\t\tk\t= a + l/4*3\n\t)\n\n\tif l >= 8 {\n\t\tif l >= shortestNinther {\n\n\t\t\ti = medianAdjacentCmpFunc(data, i, &swaps, cmp)\n\t\t\tj = medianAdjacentCmpFunc(data, j, &swaps, cmp)\n\t\t\tk = medianAdjacentCmpFunc(data, k, &swaps, cmp)\n\t\t}\n\n\t\tj = medianCmpFunc(data, i, j, k, &swaps, cmp)\n\t}\n\n\tswitch swaps {\n\tcase 0:\n\t\treturn j, increasingHint\n\tcase maxSwaps:\n\t\treturn j, decreasingHint\n\tdefault:\n\t\treturn j, unknownHint\n\t}\n}\n\nfunc order2CmpFunc[E any](data []E, a, b int, swaps *int, cmp func(a, b E) int) (int, int) {\n\tif cmp(data[b], data[a]) < 0 {\n\t\t*swaps++\n\t\treturn b, a\n\t}\n\treturn a, b\n}\n\nfunc medianCmpFunc[E any](data []E, a, b, c int, swaps *int, cmp func(a, b E) int) int {\n\ta, b = order2CmpFunc(data, a, b, swaps, cmp)\n\tb, c = order2CmpFunc(data, b, c, swaps, cmp)\n\ta, b = order2CmpFunc(data, a, b, swaps, cmp)\n\treturn b\n}\n\nfunc medianAdjacentCmpFunc[E any](data []E, a int, swaps *int, cmp func(a, b E) int) int {\n\treturn medianCmpFunc(data, a-1, a, a+1, swaps, cmp)\n}\n\nfunc reverseRangeCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) {\n\ti := a\n\tj := b - 1\n\tfor i < j {\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n}\n\nfunc swapRangeCmpFunc[E any](data []E, a, b, n int, cmp func(a, b E) int) {\n\tfor i := 0; i < n; i++ {\n\t\tdata[a+i], data[b+i] = data[b+i], data[a+i]\n\t}\n}\n\nfunc stableCmpFunc[E any](data []E, n int, cmp func(a, b E) int) {\n\tblockSize := 20\n\ta, b := 0, blockSize\n\tfor b <= n {\n\t\tinsertionSortCmpFunc(data, a, b, cmp)\n\t\ta = b\n\t\tb += blockSize\n\t}\n\tinsertionSortCmpFunc(data, a, n, cmp)\n\n\tfor blockSize < n {\n\t\ta, b = 0, 2*blockSize\n\t\tfor b <= n {\n\t\t\tsymMergeCmpFunc(data, a, a+blockSize, b, cmp)\n\t\t\ta = b\n\t\t\tb += 2 * blockSize\n\t\t}\n\t\tif m := a + blockSize; m < n {\n\t\t\tsymMergeCmpFunc(data, a, m, n, cmp)\n\t\t}\n\t\tblockSize *= 2\n\t}\n}\n\nfunc symMergeCmpFunc[E any](data []E, a, m, b int, cmp func(a, b E) int) {\n\n\tif m-a == 1 {\n\n\t\ti := m\n\t\tj := b\n\t\tfor i < j {\n\t\t\th := int(uint(i+j) >> 1)\n\t\t\tif cmp(data[h], data[a]) < 0 {\n\t\t\t\ti = h + 1\n\t\t\t} else {\n\t\t\t\tj = h\n\t\t\t}\n\t\t}\n\n\t\tfor k := a; k < i-1; k++ {\n\t\t\tdata[k], data[k+1] = data[k+1], data[k]\n\t\t}\n\t\treturn\n\t}\n\n\tif b-m == 1 {\n\n\t\ti := a\n\t\tj := m\n\t\tfor i < j {\n\t\t\th := int(uint(i+j) >> 1)\n\t\t\tif !(cmp(data[m], data[h]) < 0) {\n\t\t\t\ti = h + 1\n\t\t\t} else {\n\t\t\t\tj = h\n\t\t\t}\n\t\t}\n\n\t\tfor k := m; k > i; k-- {\n\t\t\tdata[k], data[k-1] = data[k-1], data[k]\n\t\t}\n\t\treturn\n\t}\n\n\tmid := int(uint(a+b) >> 1)\n\tn := mid + m\n\tvar start, r int\n\tif m > mid {\n\t\tstart = n - b\n\t\tr = mid\n\t} else {\n\t\tstart = a\n\t\tr = m\n\t}\n\tp := n - 1\n\n\tfor start < r {\n\t\tc := int(uint(start+r) >> 1)\n\t\tif !(cmp(data[p-c], data[c]) < 0) {\n\t\t\tstart = c + 1\n\t\t} else {\n\t\t\tr = c\n\t\t}\n\t}\n\n\tend := n - start\n\tif start < m && m < end {\n\t\trotateCmpFunc(data, start, m, end, cmp)\n\t}\n\tif a < start && start < mid {\n\t\tsymMergeCmpFunc(data, a, start, mid, cmp)\n\t}\n\tif mid < end && end < b {\n\t\tsymMergeCmpFunc(data, mid, end, b, cmp)\n\t}\n}\n\nfunc rotateCmpFunc[E any](data []E, a, m, b int, cmp func(a, b E) int) {\n\ti := m - a\n\tj := b - m\n\n\tfor i != j {\n\t\tif i > j {\n\t\t\tswapRangeCmpFunc(data, m-i, m, j, cmp)\n\t\t\ti -= j\n\t\t} else {\n\t\t\tswapRangeCmpFunc(data, m-i, m+j-i, i, cmp)\n\t\t\tj -= i\n\t\t}\n\t}\n\n\tswapRangeCmpFunc(data, m-i, m, i, cmp)\n}\nfunc insertionSortOrdered[E cmp.Ordered](data []E, a, b int) {\n\tfor i := a + 1; i < b; i++ {\n\t\tfor j := i; j > a && cmp.Less(data[j], data[j-1]); j-- {\n\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t}\n\t}\n}\n\nfunc siftDownOrdered[E cmp.Ordered](data []E, lo, hi, first int) {\n\troot := lo\n\tfor {\n\t\tchild := 2*root + 1\n\t\tif child >= hi {\n\t\t\tbreak\n\t\t}\n\t\tif child+1 < hi && cmp.Less(data[first+child], data[first+child+1]) {\n\t\t\tchild++\n\t\t}\n\t\tif !cmp.Less(data[first+root], data[first+child]) {\n\t\t\treturn\n\t\t}\n\t\tdata[first+root], data[first+child] = data[first+child], data[first+root]\n\t\troot = child\n\t}\n}\n\nfunc heapSortOrdered[E cmp.Ordered](data []E, a, b int) {\n\tfirst := a\n\tlo := 0\n\thi := b - a\n\n\tfor i := (hi - 1) / 2; i >= 0; i-- {\n\t\tsiftDownOrdered(data, i, hi, first)\n\t}\n\n\tfor i := hi - 1; i >= 0; i-- {\n\t\tdata[first], data[first+i] = data[first+i], data[first]\n\t\tsiftDownOrdered(data, lo, i, first)\n\t}\n}\n\nfunc pdqsortOrdered[E cmp.Ordered](data []E, a, b, limit int) {\n\tconst maxInsertion = 12\n\n\tvar (\n\t\twasBalanced\t= true\n\t\twasPartitioned\t= true\n\t)\n\n\tfor {\n\t\tlength := b - a\n\n\t\tif length <= maxInsertion {\n\t\t\tinsertionSortOrdered(data, a, b)\n\t\t\treturn\n\t\t}\n\n\t\tif limit == 0 {\n\t\t\theapSortOrdered(data, a, b)\n\t\t\treturn\n\t\t}\n\n\t\tif !wasBalanced {\n\t\t\tbreakPatternsOrdered(data, a, b)\n\t\t\tlimit--\n\t\t}\n\n\t\tpivot, hint := choosePivotOrdered(data, a, b)\n\t\tif hint == decreasingHint {\n\t\t\treverseRangeOrdered(data, a, b)\n\n\t\t\tpivot = (b - 1) - (pivot - a)\n\t\t\thint = increasingHint\n\t\t}\n\n\t\tif wasBalanced && wasPartitioned && hint == increasingHint {\n\t\t\tif partialInsertionSortOrdered(data, a, b) {\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\n\t\tif a > 0 && !cmp.Less(data[a-1], data[pivot]) {\n\t\t\tmid := partitionEqualOrdered(data, a, b, pivot)\n\t\t\ta = mid\n\t\t\tcontinue\n\t\t}\n\n\t\tmid, alreadyPartitioned := partitionOrdered(data, a, b, pivot)\n\t\twasPartitioned = alreadyPartitioned\n\n\t\tleftLen, rightLen := mid-a, b-mid\n\t\tbalanceThreshold := length / 8\n\t\tif leftLen < rightLen {\n\t\t\twasBalanced = leftLen >= balanceThreshold\n\t\t\tpdqsortOrdered(data, a, mid, limit)\n\t\t\ta = mid + 1\n\t\t} else {\n\t\t\twasBalanced = rightLen >= balanceThreshold\n\t\t\tpdqsortOrdered(data, mid+1, b, limit)\n\t\t\tb = mid\n\t\t}\n\t}\n}\n\nfunc partitionOrdered[E cmp.Ordered](data []E, a, b, pivot int) (newpivot int, alreadyPartitioned bool) {\n\tdata[a], data[pivot] = data[pivot], data[a]\n\ti, j := a+1, b-1\n\n\tfor i <= j && cmp.Less(data[i], data[a]) {\n\t\ti++\n\t}\n\tfor i <= j && !cmp.Less(data[j], data[a]) {\n\t\tj--\n\t}\n\tif i > j {\n\t\tdata[j], data[a] = data[a], data[j]\n\t\treturn j, true\n\t}\n\tdata[i], data[j] = data[j], data[i]\n\ti++\n\tj--\n\n\tfor {\n\t\tfor i <= j && cmp.Less(data[i], data[a]) {\n\t\t\ti++\n\t\t}\n\t\tfor i <= j && !cmp.Less(data[j], data[a]) {\n\t\t\tj--\n\t\t}\n\t\tif i > j {\n\t\t\tbreak\n\t\t}\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n\tdata[j], data[a] = data[a], data[j]\n\treturn j, false\n}\n\nfunc partitionEqualOrdered[E cmp.Ordered](data []E, a, b, pivot int) (newpivot int) {\n\tdata[a], data[pivot] = data[pivot], data[a]\n\ti, j := a+1, b-1\n\n\tfor {\n\t\tfor i <= j && !cmp.Less(data[a], data[i]) {\n\t\t\ti++\n\t\t}\n\t\tfor i <= j && cmp.Less(data[a], data[j]) {\n\t\t\tj--\n\t\t}\n\t\tif i > j {\n\t\t\tbreak\n\t\t}\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n\treturn i\n}\n\nfunc partialInsertionSortOrdered[E cmp.Ordered](data []E, a, b int) bool {\n\tconst (\n\t\tmaxSteps\t\t= 5\n\t\tshortestShifting\t= 50\n\t)\n\ti := a + 1\n\tfor j := 0; j < maxSteps; j++ {\n\t\tfor i < b && !cmp.Less(data[i], data[i-1]) {\n\t\t\ti++\n\t\t}\n\n\t\tif i == b {\n\t\t\treturn true\n\t\t}\n\n\t\tif b-a < shortestShifting {\n\t\t\treturn false\n\t\t}\n\n\t\tdata[i], data[i-1] = data[i-1], data[i]\n\n\t\tif i-a >= 2 {\n\t\t\tfor j := i - 1; j >= 1; j-- {\n\t\t\t\tif !cmp.Less(data[j], data[j-1]) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t\t}\n\t\t}\n\n\t\tif b-i >= 2 {\n\t\t\tfor j := i + 1; j < b; j++ {\n\t\t\t\tif !cmp.Less(data[j], data[j-1]) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t\t}\n\t\t}\n\t}\n\treturn false\n}\n\nfunc breakPatternsOrdered[E cmp.Ordered](data []E, a, b int) {\n\tlength := b - a\n\tif length >= 8 {\n\t\trandom := xorshift(length)\n\t\tmodulus := nextPowerOfTwo(length)\n\n\t\tfor idx := a + (length/4)*2 - 1; idx <= a+(length/4)*2+1; idx++ {\n\t\t\tother := int(uint(random.Next()) & (modulus - 1))\n\t\t\tif other >= length {\n\t\t\t\tother -= length\n\t\t\t}\n\t\t\tdata[idx], data[a+other] = data[a+other], data[idx]\n\t\t}\n\t}\n}\n\nfunc choosePivotOrdered[E cmp.Ordered](data []E, a, b int) (pivot int, hint sortedHint) {\n\tconst (\n\t\tshortestNinther\t= 50\n\t\tmaxSwaps\t= 4 * 3\n\t)\n\n\tl := b - a\n\n\tvar (\n\t\tswaps\tint\n\t\ti\t= a + l/4*1\n\t\tj\t= a + l/4*2\n\t\tk\t= a + l/4*3\n\t)\n\n\tif l >= 8 {\n\t\tif l >= shortestNinther {\n\n\t\t\ti = medianAdjacentOrdered(data, i, &swaps)\n\t\t\tj = medianAdjacentOrdered(data, j, &swaps)\n\t\t\tk = medianAdjacentOrdered(data, k, &swaps)\n\t\t}\n\n\t\tj = medianOrdered(data, i, j, k, &swaps)\n\t}\n\n\tswitch swaps {\n\tcase 0:\n\t\treturn j, increasingHint\n\tcase maxSwaps:\n\t\treturn j, decreasingHint\n\tdefault:\n\t\treturn j, unknownHint\n\t}\n}\n\nfunc order2Ordered[E cmp.Ordered](data []E, a, b int, swaps *int) (int, int) {\n\tif cmp.Less(data[b], data[a]) {\n\t\t*swaps++\n\t\treturn b, a\n\t}\n\treturn a, b\n}\n\nfunc medianOrdered[E cmp.Ordered](data []E, a, b, c int, swaps *int) int {\n\ta, b = order2Ordered(data, a, b, swaps)\n\tb, c = order2Ordered(data, b, c, swaps)\n\ta, b = order2Ordered(data, a, b, swaps)\n\treturn b\n}\n\nfunc medianAdjacentOrdered[E cmp.Ordered](data []E, a int, swaps *int) int {\n\treturn medianOrdered(data, a-1, a, a+1, swaps)\n}\n\nfunc reverseRangeOrdered[E cmp.Ordered](data []E, a, b int) {\n\ti := a\n\tj := b - 1\n\tfor i < j {\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n}\n\nfunc swapRangeOrdered[E cmp.Ordered](data []E, a, b, n int) {\n\tfor i := 0; i < n; i++ {\n\t\tdata[a+i], data[b+i] = data[b+i], data[a+i]\n\t}\n}\n\nfunc stableOrdered[E cmp.Ordered](data []E, n int) {\n\tblockSize := 20\n\ta, b := 0, blockSize\n\tfor b <= n {\n\t\tinsertionSortOrdered(data, a, b)\n\t\ta = b\n\t\tb += blockSize\n\t}\n\tinsertionSortOrdered(data, a, n)\n\n\tfor blockSize < n {\n\t\ta, b = 0, 2*blockSize\n\t\tfor b <= n {\n\t\t\tsymMergeOrdered(data, a, a+blockSize, b)\n\t\t\ta = b\n\t\t\tb += 2 * blockSize\n\t\t}\n\t\tif m := a + blockSize; m < n {\n\t\t\tsymMergeOrdered(data, a, m, n)\n\t\t}\n\t\tblockSize *= 2\n\t}\n}\n\nfunc symMergeOrdered[E cmp.Ordered](data []E, a, m, b int) {\n\n\tif m-a == 1 {\n\n\t\ti := m\n\t\tj := b\n\t\tfor i < j {\n\t\t\th := int(uint(i+j) >> 1)\n\t\t\tif cmp.Less(data[h], data[a]) {\n\t\t\t\ti = h + 1\n\t\t\t} else {\n\t\t\t\tj = h\n\t\t\t}\n\t\t}\n\n\t\tfor k := a; k < i-1; k++ {\n\t\t\tdata[k], data[k+1] = data[k+1], data[k]\n\t\t}\n\t\treturn\n\t}\n\n\tif b-m == 1 {\n\n\t\ti := a\n\t\tj := m\n\t\tfor i < j {\n\t\t\th := int(uint(i+j) >> 1)\n\t\t\tif !cmp.Less(data[m], data[h]) {\n\t\t\t\ti = h + 1\n\t\t\t} else {\n\t\t\t\tj = h\n\t\t\t}\n\t\t}\n\n\t\tfor k := m; k > i; k-- {\n\t\t\tdata[k], data[k-1] = data[k-1], data[k]\n\t\t}\n\t\treturn\n\t}\n\n\tmid := int(uint(a+b) >> 1)\n\tn := mid + m\n\tvar start, r int\n\tif m > mid {\n\t\tstart = n - b\n\t\tr = mid\n\t} else {\n\t\tstart = a\n\t\tr = m\n\t}\n\tp := n - 1\n\n\tfor start < r {\n\t\tc := int(uint(start+r) >> 1)\n\t\tif !cmp.Less(data[p-c], data[c]) {\n\t\t\tstart = c + 1\n\t\t} else {\n\t\t\tr = c\n\t\t}\n\t}\n\n\tend := n - start\n\tif start < m && m < end {\n\t\trotateOrdered(data, start, m, end)\n\t}\n\tif a < start && start < mid {\n\t\tsymMergeOrdered(data, a, start, mid)\n\t}\n\tif mid < end && end < b {\n\t\tsymMergeOrdered(data, mid, end, b)\n\t}\n}\n\nfunc rotateOrdered[E cmp.Ordered](data []E, a, m, b int) {\n\ti := m - a\n\tj := b - m\n\n\tfor i != j {\n\t\tif i > j {\n\t\t\tswapRangeOrdered(data, m-i, m, j)\n\t\t\ti -= j\n\t\t} else {\n\t\t\tswapRangeOrdered(data, m-i, m+j-i, i)\n\t\t\tj -= i\n\t\t}\n\t}\n\n\tswapRangeOrdered(data, m-i, m, i)\n}\n" diff --git a/pkg/slices/go123_export.go b/pkg/slices/go123_export.go new file mode 100755 index 00000000..143b6034 --- /dev/null +++ b/pkg/slices/go123_export.go @@ -0,0 +1,28 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package slices + +import ( + _ "slices" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "slices", + Path: "slices", + Deps: map[string]string{ + "cmp": "cmp", + "iter": "iter", + "math/bits": "bits", + "unsafe": "unsafe", + }, + Source: source, + }) +} + +var source = "package slices\n\nimport (\n\t\"cmp\"\n\t\"iter\"\n\t\"math/bits\"\n\t\"unsafe\"\n)\n\nfunc All[Slice ~[]E, E any](s Slice) iter.Seq2[int, E] {\n\treturn func(yield func(int, E) bool) {\n\t\tfor i, v := range s {\n\t\t\tif !yield(i, v) {\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc Backward[Slice ~[]E, E any](s Slice) iter.Seq2[int, E] {\n\treturn func(yield func(int, E) bool) {\n\t\tfor i := len(s) - 1; i >= 0; i-- {\n\t\t\tif !yield(i, s[i]) {\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc Values[Slice ~[]E, E any](s Slice) iter.Seq[E] {\n\treturn func(yield func(E) bool) {\n\t\tfor _, v := range s {\n\t\t\tif !yield(v) {\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc AppendSeq[Slice ~[]E, E any](s Slice, seq iter.Seq[E]) Slice {\n\tfor v := range seq {\n\t\ts = append(s, v)\n\t}\n\treturn s\n}\n\nfunc Collect[E any](seq iter.Seq[E]) []E {\n\treturn AppendSeq([]E(nil), seq)\n}\n\nfunc Sorted[E cmp.Ordered](seq iter.Seq[E]) []E {\n\ts := Collect(seq)\n\tSort(s)\n\treturn s\n}\n\nfunc SortedFunc[E any](seq iter.Seq[E], cmp func(E, E) int) []E {\n\ts := Collect(seq)\n\tSortFunc(s, cmp)\n\treturn s\n}\n\nfunc SortedStableFunc[E any](seq iter.Seq[E], cmp func(E, E) int) []E {\n\ts := Collect(seq)\n\tSortStableFunc(s, cmp)\n\treturn s\n}\n\nfunc Chunk[Slice ~[]E, E any](s Slice, n int) iter.Seq[Slice] {\n\tif n < 1 {\n\t\tpanic(\"cannot be less than 1\")\n\t}\n\n\treturn func(yield func(Slice) bool) {\n\t\tfor i := 0; i < len(s); i += n {\n\n\t\t\tend := min(n, len(s[i:]))\n\n\t\t\tif !yield(s[i : i+end : i+end]) {\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\t}\n}\nfunc Equal[S ~[]E, E comparable](s1, s2 S) bool {\n\tif len(s1) != len(s2) {\n\t\treturn false\n\t}\n\tfor i := range s1 {\n\t\tif s1[i] != s2[i] {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nfunc EqualFunc[S1 ~[]E1, S2 ~[]E2, E1, E2 any](s1 S1, s2 S2, eq func(E1, E2) bool) bool {\n\tif len(s1) != len(s2) {\n\t\treturn false\n\t}\n\tfor i, v1 := range s1 {\n\t\tv2 := s2[i]\n\t\tif !eq(v1, v2) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nfunc Compare[S ~[]E, E cmp.Ordered](s1, s2 S) int {\n\tfor i, v1 := range s1 {\n\t\tif i >= len(s2) {\n\t\t\treturn +1\n\t\t}\n\t\tv2 := s2[i]\n\t\tif c := cmp.Compare(v1, v2); c != 0 {\n\t\t\treturn c\n\t\t}\n\t}\n\tif len(s1) < len(s2) {\n\t\treturn -1\n\t}\n\treturn 0\n}\n\nfunc CompareFunc[S1 ~[]E1, S2 ~[]E2, E1, E2 any](s1 S1, s2 S2, cmp func(E1, E2) int) int {\n\tfor i, v1 := range s1 {\n\t\tif i >= len(s2) {\n\t\t\treturn +1\n\t\t}\n\t\tv2 := s2[i]\n\t\tif c := cmp(v1, v2); c != 0 {\n\t\t\treturn c\n\t\t}\n\t}\n\tif len(s1) < len(s2) {\n\t\treturn -1\n\t}\n\treturn 0\n}\n\nfunc Index[S ~[]E, E comparable](s S, v E) int {\n\tfor i := range s {\n\t\tif v == s[i] {\n\t\t\treturn i\n\t\t}\n\t}\n\treturn -1\n}\n\nfunc IndexFunc[S ~[]E, E any](s S, f func(E) bool) int {\n\tfor i := range s {\n\t\tif f(s[i]) {\n\t\t\treturn i\n\t\t}\n\t}\n\treturn -1\n}\n\nfunc Contains[S ~[]E, E comparable](s S, v E) bool {\n\treturn Index(s, v) >= 0\n}\n\nfunc ContainsFunc[S ~[]E, E any](s S, f func(E) bool) bool {\n\treturn IndexFunc(s, f) >= 0\n}\n\nfunc Insert[S ~[]E, E any](s S, i int, v ...E) S {\n\t_ = s[i:]\n\n\tm := len(v)\n\tif m == 0 {\n\t\treturn s\n\t}\n\tn := len(s)\n\tif i == n {\n\t\treturn append(s, v...)\n\t}\n\tif n+m > cap(s) {\n\n\t\ts2 := append(s[:i], make(S, n+m-i)...)\n\t\tcopy(s2[i:], v)\n\t\tcopy(s2[i+m:], s[i:])\n\t\treturn s2\n\t}\n\ts = s[:n+m]\n\n\tif !overlaps(v, s[i+m:]) {\n\n\t\tcopy(s[i+m:], s[i:])\n\n\t\tcopy(s[i:], v)\n\n\t\treturn s\n\t}\n\n\tcopy(s[n:], v)\n\n\trotateRight(s[i:], m)\n\n\treturn s\n}\n\nfunc Delete[S ~[]E, E any](s S, i, j int) S {\n\t_ = s[i:j:len(s)]\n\n\tif i == j {\n\t\treturn s\n\t}\n\n\toldlen := len(s)\n\ts = append(s[:i], s[j:]...)\n\tclear(s[len(s):oldlen])\n\treturn s\n}\n\nfunc DeleteFunc[S ~[]E, E any](s S, del func(E) bool) S {\n\ti := IndexFunc(s, del)\n\tif i == -1 {\n\t\treturn s\n\t}\n\n\tfor j := i + 1; j < len(s); j++ {\n\t\tif v := s[j]; !del(v) {\n\t\t\ts[i] = v\n\t\t\ti++\n\t\t}\n\t}\n\tclear(s[i:])\n\treturn s[:i]\n}\n\nfunc Replace[S ~[]E, E any](s S, i, j int, v ...E) S {\n\t_ = s[i:j]\n\n\tif i == j {\n\t\treturn Insert(s, i, v...)\n\t}\n\tif j == len(s) {\n\t\ts2 := append(s[:i], v...)\n\t\tif len(s2) < len(s) {\n\t\t\tclear(s[len(s2):])\n\t\t}\n\t\treturn s2\n\t}\n\n\ttot := len(s[:i]) + len(v) + len(s[j:])\n\tif tot > cap(s) {\n\n\t\ts2 := append(s[:i], make(S, tot-i)...)\n\t\tcopy(s2[i:], v)\n\t\tcopy(s2[i+len(v):], s[j:])\n\t\treturn s2\n\t}\n\n\tr := s[:tot]\n\n\tif i+len(v) <= j {\n\n\t\tcopy(r[i:], v)\n\t\tcopy(r[i+len(v):], s[j:])\n\t\tclear(s[tot:])\n\t\treturn r\n\t}\n\n\tif !overlaps(r[i+len(v):], v) {\n\n\t\tcopy(r[i+len(v):], s[j:])\n\t\tcopy(r[i:], v)\n\t\treturn r\n\t}\n\n\ty := len(v) - (j - i)\n\n\tif !overlaps(r[i:j], v) {\n\t\tcopy(r[i:j], v[y:])\n\t\tcopy(r[len(s):], v[:y])\n\t\trotateRight(r[i:], y)\n\t\treturn r\n\t}\n\tif !overlaps(r[len(s):], v) {\n\t\tcopy(r[len(s):], v[:y])\n\t\tcopy(r[i:j], v[y:])\n\t\trotateRight(r[i:], y)\n\t\treturn r\n\t}\n\n\tk := startIdx(v, s[j:])\n\tcopy(r[i:], v)\n\tcopy(r[i+len(v):], r[i+k:])\n\treturn r\n}\n\nfunc Clone[S ~[]E, E any](s S) S {\n\n\treturn append(s[:0:0], s...)\n}\n\nfunc Compact[S ~[]E, E comparable](s S) S {\n\tif len(s) < 2 {\n\t\treturn s\n\t}\n\tfor k := 1; k < len(s); k++ {\n\t\tif s[k] == s[k-1] {\n\t\t\ts2 := s[k:]\n\t\t\tfor k2 := 1; k2 < len(s2); k2++ {\n\t\t\t\tif s2[k2] != s2[k2-1] {\n\t\t\t\t\ts[k] = s2[k2]\n\t\t\t\t\tk++\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tclear(s[k:])\n\t\t\treturn s[:k]\n\t\t}\n\t}\n\treturn s\n}\n\nfunc CompactFunc[S ~[]E, E any](s S, eq func(E, E) bool) S {\n\tif len(s) < 2 {\n\t\treturn s\n\t}\n\tfor k := 1; k < len(s); k++ {\n\t\tif eq(s[k], s[k-1]) {\n\t\t\ts2 := s[k:]\n\t\t\tfor k2 := 1; k2 < len(s2); k2++ {\n\t\t\t\tif !eq(s2[k2], s2[k2-1]) {\n\t\t\t\t\ts[k] = s2[k2]\n\t\t\t\t\tk++\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tclear(s[k:])\n\t\t\treturn s[:k]\n\t\t}\n\t}\n\treturn s\n}\n\nfunc Grow[S ~[]E, E any](s S, n int) S {\n\tif n < 0 {\n\t\tpanic(\"cannot be negative\")\n\t}\n\tif n -= cap(s) - len(s); n > 0 {\n\t\ts = append(s[:cap(s)], make([]E, n)...)[:len(s)]\n\t}\n\treturn s\n}\n\nfunc Clip[S ~[]E, E any](s S) S {\n\treturn s[:len(s):len(s)]\n}\n\nfunc rotateLeft[E any](s []E, r int) {\n\tReverse(s[:r])\n\tReverse(s[r:])\n\tReverse(s)\n}\nfunc rotateRight[E any](s []E, r int) {\n\trotateLeft(s, len(s)-r)\n}\n\nfunc overlaps[E any](a, b []E) bool {\n\tif len(a) == 0 || len(b) == 0 {\n\t\treturn false\n\t}\n\telemSize := unsafe.Sizeof(a[0])\n\tif elemSize == 0 {\n\t\treturn false\n\t}\n\n\treturn uintptr(unsafe.Pointer(&a[0])) <= uintptr(unsafe.Pointer(&b[len(b)-1]))+(elemSize-1) &&\n\t\tuintptr(unsafe.Pointer(&b[0])) <= uintptr(unsafe.Pointer(&a[len(a)-1]))+(elemSize-1)\n}\n\nfunc startIdx[E any](haystack, needle []E) int {\n\tp := &needle[0]\n\tfor i := range haystack {\n\t\tif p == &haystack[i] {\n\t\t\treturn i\n\t\t}\n\t}\n\n\tpanic(\"needle not found\")\n}\n\nfunc Reverse[S ~[]E, E any](s S) {\n\tfor i, j := 0, len(s)-1; i < j; i, j = i+1, j-1 {\n\t\ts[i], s[j] = s[j], s[i]\n\t}\n}\n\nfunc Concat[S ~[]E, E any](slices ...S) S {\n\tsize := 0\n\tfor _, s := range slices {\n\t\tsize += len(s)\n\t\tif size < 0 {\n\t\t\tpanic(\"len out of range\")\n\t\t}\n\t}\n\tnewslice := Grow[S](nil, size)\n\tfor _, s := range slices {\n\t\tnewslice = append(newslice, s...)\n\t}\n\treturn newslice\n}\n\nfunc Repeat[S ~[]E, E any](x S, count int) S {\n\tif count < 0 {\n\t\tpanic(\"cannot be negative\")\n\t}\n\n\tconst maxInt = ^uint(0) >> 1\n\tif hi, lo := bits.Mul(uint(len(x)), uint(count)); hi > 0 || lo > maxInt {\n\t\tpanic(\"the result of (len(x) * count) overflows\")\n\t}\n\n\tnewslice := make(S, len(x)*count)\n\tn := copy(newslice, x)\n\tfor n < len(newslice) {\n\t\tn += copy(newslice[n:], newslice[:n])\n\t}\n\treturn newslice\n}\nfunc Sort[S ~[]E, E cmp.Ordered](x S) {\n\tn := len(x)\n\tpdqsortOrdered(x, 0, n, bits.Len(uint(n)))\n}\n\nfunc SortFunc[S ~[]E, E any](x S, cmp func(a, b E) int) {\n\tn := len(x)\n\tpdqsortCmpFunc(x, 0, n, bits.Len(uint(n)), cmp)\n}\n\nfunc SortStableFunc[S ~[]E, E any](x S, cmp func(a, b E) int) {\n\tstableCmpFunc(x, len(x), cmp)\n}\n\nfunc IsSorted[S ~[]E, E cmp.Ordered](x S) bool {\n\tfor i := len(x) - 1; i > 0; i-- {\n\t\tif cmp.Less(x[i], x[i-1]) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nfunc IsSortedFunc[S ~[]E, E any](x S, cmp func(a, b E) int) bool {\n\tfor i := len(x) - 1; i > 0; i-- {\n\t\tif cmp(x[i], x[i-1]) < 0 {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\nfunc Min[S ~[]E, E cmp.Ordered](x S) E {\n\tif len(x) < 1 {\n\t\tpanic(\"slices.Min: empty list\")\n\t}\n\tm := x[0]\n\tfor i := 1; i < len(x); i++ {\n\t\tm = min(m, x[i])\n\t}\n\treturn m\n}\n\nfunc MinFunc[S ~[]E, E any](x S, cmp func(a, b E) int) E {\n\tif len(x) < 1 {\n\t\tpanic(\"slices.MinFunc: empty list\")\n\t}\n\tm := x[0]\n\tfor i := 1; i < len(x); i++ {\n\t\tif cmp(x[i], m) < 0 {\n\t\t\tm = x[i]\n\t\t}\n\t}\n\treturn m\n}\n\nfunc Max[S ~[]E, E cmp.Ordered](x S) E {\n\tif len(x) < 1 {\n\t\tpanic(\"slices.Max: empty list\")\n\t}\n\tm := x[0]\n\tfor i := 1; i < len(x); i++ {\n\t\tm = max(m, x[i])\n\t}\n\treturn m\n}\n\nfunc MaxFunc[S ~[]E, E any](x S, cmp func(a, b E) int) E {\n\tif len(x) < 1 {\n\t\tpanic(\"slices.MaxFunc: empty list\")\n\t}\n\tm := x[0]\n\tfor i := 1; i < len(x); i++ {\n\t\tif cmp(x[i], m) > 0 {\n\t\t\tm = x[i]\n\t\t}\n\t}\n\treturn m\n}\n\nfunc BinarySearch[S ~[]E, E cmp.Ordered](x S, target E) (int, bool) {\n\n\tn := len(x)\n\n\ti, j := 0, n\n\tfor i < j {\n\t\th := int(uint(i+j) >> 1)\n\n\t\tif cmp.Less(x[h], target) {\n\t\t\ti = h + 1\n\t\t} else {\n\t\t\tj = h\n\t\t}\n\t}\n\n\treturn i, i < n && (x[i] == target || (isNaN(x[i]) && isNaN(target)))\n}\n\nfunc BinarySearchFunc[S ~[]E, E, T any](x S, target T, cmp func(E, T) int) (int, bool) {\n\tn := len(x)\n\n\ti, j := 0, n\n\tfor i < j {\n\t\th := int(uint(i+j) >> 1)\n\n\t\tif cmp(x[h], target) < 0 {\n\t\t\ti = h + 1\n\t\t} else {\n\t\t\tj = h\n\t\t}\n\t}\n\n\treturn i, i < n && cmp(x[i], target) == 0\n}\n\ntype sortedHint int\n\nconst (\n\tunknownHint\tsortedHint\t= iota\n\tincreasingHint\n\tdecreasingHint\n)\n\ntype xorshift uint64\n\nfunc (r *xorshift) Next() uint64 {\n\t*r ^= *r << 13\n\t*r ^= *r >> 17\n\t*r ^= *r << 5\n\treturn uint64(*r)\n}\n\nfunc nextPowerOfTwo(length int) uint {\n\treturn 1 << bits.Len(uint(length))\n}\n\nfunc isNaN[T cmp.Ordered](x T) bool {\n\treturn x != x\n}\nfunc insertionSortCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) {\n\tfor i := a + 1; i < b; i++ {\n\t\tfor j := i; j > a && (cmp(data[j], data[j-1]) < 0); j-- {\n\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t}\n\t}\n}\n\nfunc siftDownCmpFunc[E any](data []E, lo, hi, first int, cmp func(a, b E) int) {\n\troot := lo\n\tfor {\n\t\tchild := 2*root + 1\n\t\tif child >= hi {\n\t\t\tbreak\n\t\t}\n\t\tif child+1 < hi && (cmp(data[first+child], data[first+child+1]) < 0) {\n\t\t\tchild++\n\t\t}\n\t\tif !(cmp(data[first+root], data[first+child]) < 0) {\n\t\t\treturn\n\t\t}\n\t\tdata[first+root], data[first+child] = data[first+child], data[first+root]\n\t\troot = child\n\t}\n}\n\nfunc heapSortCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) {\n\tfirst := a\n\tlo := 0\n\thi := b - a\n\n\tfor i := (hi - 1) / 2; i >= 0; i-- {\n\t\tsiftDownCmpFunc(data, i, hi, first, cmp)\n\t}\n\n\tfor i := hi - 1; i >= 0; i-- {\n\t\tdata[first], data[first+i] = data[first+i], data[first]\n\t\tsiftDownCmpFunc(data, lo, i, first, cmp)\n\t}\n}\n\nfunc pdqsortCmpFunc[E any](data []E, a, b, limit int, cmp func(a, b E) int) {\n\tconst maxInsertion = 12\n\n\tvar (\n\t\twasBalanced\t= true\n\t\twasPartitioned\t= true\n\t)\n\n\tfor {\n\t\tlength := b - a\n\n\t\tif length <= maxInsertion {\n\t\t\tinsertionSortCmpFunc(data, a, b, cmp)\n\t\t\treturn\n\t\t}\n\n\t\tif limit == 0 {\n\t\t\theapSortCmpFunc(data, a, b, cmp)\n\t\t\treturn\n\t\t}\n\n\t\tif !wasBalanced {\n\t\t\tbreakPatternsCmpFunc(data, a, b, cmp)\n\t\t\tlimit--\n\t\t}\n\n\t\tpivot, hint := choosePivotCmpFunc(data, a, b, cmp)\n\t\tif hint == decreasingHint {\n\t\t\treverseRangeCmpFunc(data, a, b, cmp)\n\n\t\t\tpivot = (b - 1) - (pivot - a)\n\t\t\thint = increasingHint\n\t\t}\n\n\t\tif wasBalanced && wasPartitioned && hint == increasingHint {\n\t\t\tif partialInsertionSortCmpFunc(data, a, b, cmp) {\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\n\t\tif a > 0 && !(cmp(data[a-1], data[pivot]) < 0) {\n\t\t\tmid := partitionEqualCmpFunc(data, a, b, pivot, cmp)\n\t\t\ta = mid\n\t\t\tcontinue\n\t\t}\n\n\t\tmid, alreadyPartitioned := partitionCmpFunc(data, a, b, pivot, cmp)\n\t\twasPartitioned = alreadyPartitioned\n\n\t\tleftLen, rightLen := mid-a, b-mid\n\t\tbalanceThreshold := length / 8\n\t\tif leftLen < rightLen {\n\t\t\twasBalanced = leftLen >= balanceThreshold\n\t\t\tpdqsortCmpFunc(data, a, mid, limit, cmp)\n\t\t\ta = mid + 1\n\t\t} else {\n\t\t\twasBalanced = rightLen >= balanceThreshold\n\t\t\tpdqsortCmpFunc(data, mid+1, b, limit, cmp)\n\t\t\tb = mid\n\t\t}\n\t}\n}\n\nfunc partitionCmpFunc[E any](data []E, a, b, pivot int, cmp func(a, b E) int) (newpivot int, alreadyPartitioned bool) {\n\tdata[a], data[pivot] = data[pivot], data[a]\n\ti, j := a+1, b-1\n\n\tfor i <= j && (cmp(data[i], data[a]) < 0) {\n\t\ti++\n\t}\n\tfor i <= j && !(cmp(data[j], data[a]) < 0) {\n\t\tj--\n\t}\n\tif i > j {\n\t\tdata[j], data[a] = data[a], data[j]\n\t\treturn j, true\n\t}\n\tdata[i], data[j] = data[j], data[i]\n\ti++\n\tj--\n\n\tfor {\n\t\tfor i <= j && (cmp(data[i], data[a]) < 0) {\n\t\t\ti++\n\t\t}\n\t\tfor i <= j && !(cmp(data[j], data[a]) < 0) {\n\t\t\tj--\n\t\t}\n\t\tif i > j {\n\t\t\tbreak\n\t\t}\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n\tdata[j], data[a] = data[a], data[j]\n\treturn j, false\n}\n\nfunc partitionEqualCmpFunc[E any](data []E, a, b, pivot int, cmp func(a, b E) int) (newpivot int) {\n\tdata[a], data[pivot] = data[pivot], data[a]\n\ti, j := a+1, b-1\n\n\tfor {\n\t\tfor i <= j && !(cmp(data[a], data[i]) < 0) {\n\t\t\ti++\n\t\t}\n\t\tfor i <= j && (cmp(data[a], data[j]) < 0) {\n\t\t\tj--\n\t\t}\n\t\tif i > j {\n\t\t\tbreak\n\t\t}\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n\treturn i\n}\n\nfunc partialInsertionSortCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) bool {\n\tconst (\n\t\tmaxSteps\t\t= 5\n\t\tshortestShifting\t= 50\n\t)\n\ti := a + 1\n\tfor j := 0; j < maxSteps; j++ {\n\t\tfor i < b && !(cmp(data[i], data[i-1]) < 0) {\n\t\t\ti++\n\t\t}\n\n\t\tif i == b {\n\t\t\treturn true\n\t\t}\n\n\t\tif b-a < shortestShifting {\n\t\t\treturn false\n\t\t}\n\n\t\tdata[i], data[i-1] = data[i-1], data[i]\n\n\t\tif i-a >= 2 {\n\t\t\tfor j := i - 1; j >= 1; j-- {\n\t\t\t\tif !(cmp(data[j], data[j-1]) < 0) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t\t}\n\t\t}\n\n\t\tif b-i >= 2 {\n\t\t\tfor j := i + 1; j < b; j++ {\n\t\t\t\tif !(cmp(data[j], data[j-1]) < 0) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t\t}\n\t\t}\n\t}\n\treturn false\n}\n\nfunc breakPatternsCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) {\n\tlength := b - a\n\tif length >= 8 {\n\t\trandom := xorshift(length)\n\t\tmodulus := nextPowerOfTwo(length)\n\n\t\tfor idx := a + (length/4)*2 - 1; idx <= a+(length/4)*2+1; idx++ {\n\t\t\tother := int(uint(random.Next()) & (modulus - 1))\n\t\t\tif other >= length {\n\t\t\t\tother -= length\n\t\t\t}\n\t\t\tdata[idx], data[a+other] = data[a+other], data[idx]\n\t\t}\n\t}\n}\n\nfunc choosePivotCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) (pivot int, hint sortedHint) {\n\tconst (\n\t\tshortestNinther\t= 50\n\t\tmaxSwaps\t= 4 * 3\n\t)\n\n\tl := b - a\n\n\tvar (\n\t\tswaps\tint\n\t\ti\t= a + l/4*1\n\t\tj\t= a + l/4*2\n\t\tk\t= a + l/4*3\n\t)\n\n\tif l >= 8 {\n\t\tif l >= shortestNinther {\n\n\t\t\ti = medianAdjacentCmpFunc(data, i, &swaps, cmp)\n\t\t\tj = medianAdjacentCmpFunc(data, j, &swaps, cmp)\n\t\t\tk = medianAdjacentCmpFunc(data, k, &swaps, cmp)\n\t\t}\n\n\t\tj = medianCmpFunc(data, i, j, k, &swaps, cmp)\n\t}\n\n\tswitch swaps {\n\tcase 0:\n\t\treturn j, increasingHint\n\tcase maxSwaps:\n\t\treturn j, decreasingHint\n\tdefault:\n\t\treturn j, unknownHint\n\t}\n}\n\nfunc order2CmpFunc[E any](data []E, a, b int, swaps *int, cmp func(a, b E) int) (int, int) {\n\tif cmp(data[b], data[a]) < 0 {\n\t\t*swaps++\n\t\treturn b, a\n\t}\n\treturn a, b\n}\n\nfunc medianCmpFunc[E any](data []E, a, b, c int, swaps *int, cmp func(a, b E) int) int {\n\ta, b = order2CmpFunc(data, a, b, swaps, cmp)\n\tb, c = order2CmpFunc(data, b, c, swaps, cmp)\n\ta, b = order2CmpFunc(data, a, b, swaps, cmp)\n\treturn b\n}\n\nfunc medianAdjacentCmpFunc[E any](data []E, a int, swaps *int, cmp func(a, b E) int) int {\n\treturn medianCmpFunc(data, a-1, a, a+1, swaps, cmp)\n}\n\nfunc reverseRangeCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) {\n\ti := a\n\tj := b - 1\n\tfor i < j {\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n}\n\nfunc swapRangeCmpFunc[E any](data []E, a, b, n int, cmp func(a, b E) int) {\n\tfor i := 0; i < n; i++ {\n\t\tdata[a+i], data[b+i] = data[b+i], data[a+i]\n\t}\n}\n\nfunc stableCmpFunc[E any](data []E, n int, cmp func(a, b E) int) {\n\tblockSize := 20\n\ta, b := 0, blockSize\n\tfor b <= n {\n\t\tinsertionSortCmpFunc(data, a, b, cmp)\n\t\ta = b\n\t\tb += blockSize\n\t}\n\tinsertionSortCmpFunc(data, a, n, cmp)\n\n\tfor blockSize < n {\n\t\ta, b = 0, 2*blockSize\n\t\tfor b <= n {\n\t\t\tsymMergeCmpFunc(data, a, a+blockSize, b, cmp)\n\t\t\ta = b\n\t\t\tb += 2 * blockSize\n\t\t}\n\t\tif m := a + blockSize; m < n {\n\t\t\tsymMergeCmpFunc(data, a, m, n, cmp)\n\t\t}\n\t\tblockSize *= 2\n\t}\n}\n\nfunc symMergeCmpFunc[E any](data []E, a, m, b int, cmp func(a, b E) int) {\n\n\tif m-a == 1 {\n\n\t\ti := m\n\t\tj := b\n\t\tfor i < j {\n\t\t\th := int(uint(i+j) >> 1)\n\t\t\tif cmp(data[h], data[a]) < 0 {\n\t\t\t\ti = h + 1\n\t\t\t} else {\n\t\t\t\tj = h\n\t\t\t}\n\t\t}\n\n\t\tfor k := a; k < i-1; k++ {\n\t\t\tdata[k], data[k+1] = data[k+1], data[k]\n\t\t}\n\t\treturn\n\t}\n\n\tif b-m == 1 {\n\n\t\ti := a\n\t\tj := m\n\t\tfor i < j {\n\t\t\th := int(uint(i+j) >> 1)\n\t\t\tif !(cmp(data[m], data[h]) < 0) {\n\t\t\t\ti = h + 1\n\t\t\t} else {\n\t\t\t\tj = h\n\t\t\t}\n\t\t}\n\n\t\tfor k := m; k > i; k-- {\n\t\t\tdata[k], data[k-1] = data[k-1], data[k]\n\t\t}\n\t\treturn\n\t}\n\n\tmid := int(uint(a+b) >> 1)\n\tn := mid + m\n\tvar start, r int\n\tif m > mid {\n\t\tstart = n - b\n\t\tr = mid\n\t} else {\n\t\tstart = a\n\t\tr = m\n\t}\n\tp := n - 1\n\n\tfor start < r {\n\t\tc := int(uint(start+r) >> 1)\n\t\tif !(cmp(data[p-c], data[c]) < 0) {\n\t\t\tstart = c + 1\n\t\t} else {\n\t\t\tr = c\n\t\t}\n\t}\n\n\tend := n - start\n\tif start < m && m < end {\n\t\trotateCmpFunc(data, start, m, end, cmp)\n\t}\n\tif a < start && start < mid {\n\t\tsymMergeCmpFunc(data, a, start, mid, cmp)\n\t}\n\tif mid < end && end < b {\n\t\tsymMergeCmpFunc(data, mid, end, b, cmp)\n\t}\n}\n\nfunc rotateCmpFunc[E any](data []E, a, m, b int, cmp func(a, b E) int) {\n\ti := m - a\n\tj := b - m\n\n\tfor i != j {\n\t\tif i > j {\n\t\t\tswapRangeCmpFunc(data, m-i, m, j, cmp)\n\t\t\ti -= j\n\t\t} else {\n\t\t\tswapRangeCmpFunc(data, m-i, m+j-i, i, cmp)\n\t\t\tj -= i\n\t\t}\n\t}\n\n\tswapRangeCmpFunc(data, m-i, m, i, cmp)\n}\nfunc insertionSortOrdered[E cmp.Ordered](data []E, a, b int) {\n\tfor i := a + 1; i < b; i++ {\n\t\tfor j := i; j > a && cmp.Less(data[j], data[j-1]); j-- {\n\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t}\n\t}\n}\n\nfunc siftDownOrdered[E cmp.Ordered](data []E, lo, hi, first int) {\n\troot := lo\n\tfor {\n\t\tchild := 2*root + 1\n\t\tif child >= hi {\n\t\t\tbreak\n\t\t}\n\t\tif child+1 < hi && cmp.Less(data[first+child], data[first+child+1]) {\n\t\t\tchild++\n\t\t}\n\t\tif !cmp.Less(data[first+root], data[first+child]) {\n\t\t\treturn\n\t\t}\n\t\tdata[first+root], data[first+child] = data[first+child], data[first+root]\n\t\troot = child\n\t}\n}\n\nfunc heapSortOrdered[E cmp.Ordered](data []E, a, b int) {\n\tfirst := a\n\tlo := 0\n\thi := b - a\n\n\tfor i := (hi - 1) / 2; i >= 0; i-- {\n\t\tsiftDownOrdered(data, i, hi, first)\n\t}\n\n\tfor i := hi - 1; i >= 0; i-- {\n\t\tdata[first], data[first+i] = data[first+i], data[first]\n\t\tsiftDownOrdered(data, lo, i, first)\n\t}\n}\n\nfunc pdqsortOrdered[E cmp.Ordered](data []E, a, b, limit int) {\n\tconst maxInsertion = 12\n\n\tvar (\n\t\twasBalanced\t= true\n\t\twasPartitioned\t= true\n\t)\n\n\tfor {\n\t\tlength := b - a\n\n\t\tif length <= maxInsertion {\n\t\t\tinsertionSortOrdered(data, a, b)\n\t\t\treturn\n\t\t}\n\n\t\tif limit == 0 {\n\t\t\theapSortOrdered(data, a, b)\n\t\t\treturn\n\t\t}\n\n\t\tif !wasBalanced {\n\t\t\tbreakPatternsOrdered(data, a, b)\n\t\t\tlimit--\n\t\t}\n\n\t\tpivot, hint := choosePivotOrdered(data, a, b)\n\t\tif hint == decreasingHint {\n\t\t\treverseRangeOrdered(data, a, b)\n\n\t\t\tpivot = (b - 1) - (pivot - a)\n\t\t\thint = increasingHint\n\t\t}\n\n\t\tif wasBalanced && wasPartitioned && hint == increasingHint {\n\t\t\tif partialInsertionSortOrdered(data, a, b) {\n\t\t\t\treturn\n\t\t\t}\n\t\t}\n\n\t\tif a > 0 && !cmp.Less(data[a-1], data[pivot]) {\n\t\t\tmid := partitionEqualOrdered(data, a, b, pivot)\n\t\t\ta = mid\n\t\t\tcontinue\n\t\t}\n\n\t\tmid, alreadyPartitioned := partitionOrdered(data, a, b, pivot)\n\t\twasPartitioned = alreadyPartitioned\n\n\t\tleftLen, rightLen := mid-a, b-mid\n\t\tbalanceThreshold := length / 8\n\t\tif leftLen < rightLen {\n\t\t\twasBalanced = leftLen >= balanceThreshold\n\t\t\tpdqsortOrdered(data, a, mid, limit)\n\t\t\ta = mid + 1\n\t\t} else {\n\t\t\twasBalanced = rightLen >= balanceThreshold\n\t\t\tpdqsortOrdered(data, mid+1, b, limit)\n\t\t\tb = mid\n\t\t}\n\t}\n}\n\nfunc partitionOrdered[E cmp.Ordered](data []E, a, b, pivot int) (newpivot int, alreadyPartitioned bool) {\n\tdata[a], data[pivot] = data[pivot], data[a]\n\ti, j := a+1, b-1\n\n\tfor i <= j && cmp.Less(data[i], data[a]) {\n\t\ti++\n\t}\n\tfor i <= j && !cmp.Less(data[j], data[a]) {\n\t\tj--\n\t}\n\tif i > j {\n\t\tdata[j], data[a] = data[a], data[j]\n\t\treturn j, true\n\t}\n\tdata[i], data[j] = data[j], data[i]\n\ti++\n\tj--\n\n\tfor {\n\t\tfor i <= j && cmp.Less(data[i], data[a]) {\n\t\t\ti++\n\t\t}\n\t\tfor i <= j && !cmp.Less(data[j], data[a]) {\n\t\t\tj--\n\t\t}\n\t\tif i > j {\n\t\t\tbreak\n\t\t}\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n\tdata[j], data[a] = data[a], data[j]\n\treturn j, false\n}\n\nfunc partitionEqualOrdered[E cmp.Ordered](data []E, a, b, pivot int) (newpivot int) {\n\tdata[a], data[pivot] = data[pivot], data[a]\n\ti, j := a+1, b-1\n\n\tfor {\n\t\tfor i <= j && !cmp.Less(data[a], data[i]) {\n\t\t\ti++\n\t\t}\n\t\tfor i <= j && cmp.Less(data[a], data[j]) {\n\t\t\tj--\n\t\t}\n\t\tif i > j {\n\t\t\tbreak\n\t\t}\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n\treturn i\n}\n\nfunc partialInsertionSortOrdered[E cmp.Ordered](data []E, a, b int) bool {\n\tconst (\n\t\tmaxSteps\t\t= 5\n\t\tshortestShifting\t= 50\n\t)\n\ti := a + 1\n\tfor j := 0; j < maxSteps; j++ {\n\t\tfor i < b && !cmp.Less(data[i], data[i-1]) {\n\t\t\ti++\n\t\t}\n\n\t\tif i == b {\n\t\t\treturn true\n\t\t}\n\n\t\tif b-a < shortestShifting {\n\t\t\treturn false\n\t\t}\n\n\t\tdata[i], data[i-1] = data[i-1], data[i]\n\n\t\tif i-a >= 2 {\n\t\t\tfor j := i - 1; j >= 1; j-- {\n\t\t\t\tif !cmp.Less(data[j], data[j-1]) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t\t}\n\t\t}\n\n\t\tif b-i >= 2 {\n\t\t\tfor j := i + 1; j < b; j++ {\n\t\t\t\tif !cmp.Less(data[j], data[j-1]) {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tdata[j], data[j-1] = data[j-1], data[j]\n\t\t\t}\n\t\t}\n\t}\n\treturn false\n}\n\nfunc breakPatternsOrdered[E cmp.Ordered](data []E, a, b int) {\n\tlength := b - a\n\tif length >= 8 {\n\t\trandom := xorshift(length)\n\t\tmodulus := nextPowerOfTwo(length)\n\n\t\tfor idx := a + (length/4)*2 - 1; idx <= a+(length/4)*2+1; idx++ {\n\t\t\tother := int(uint(random.Next()) & (modulus - 1))\n\t\t\tif other >= length {\n\t\t\t\tother -= length\n\t\t\t}\n\t\t\tdata[idx], data[a+other] = data[a+other], data[idx]\n\t\t}\n\t}\n}\n\nfunc choosePivotOrdered[E cmp.Ordered](data []E, a, b int) (pivot int, hint sortedHint) {\n\tconst (\n\t\tshortestNinther\t= 50\n\t\tmaxSwaps\t= 4 * 3\n\t)\n\n\tl := b - a\n\n\tvar (\n\t\tswaps\tint\n\t\ti\t= a + l/4*1\n\t\tj\t= a + l/4*2\n\t\tk\t= a + l/4*3\n\t)\n\n\tif l >= 8 {\n\t\tif l >= shortestNinther {\n\n\t\t\ti = medianAdjacentOrdered(data, i, &swaps)\n\t\t\tj = medianAdjacentOrdered(data, j, &swaps)\n\t\t\tk = medianAdjacentOrdered(data, k, &swaps)\n\t\t}\n\n\t\tj = medianOrdered(data, i, j, k, &swaps)\n\t}\n\n\tswitch swaps {\n\tcase 0:\n\t\treturn j, increasingHint\n\tcase maxSwaps:\n\t\treturn j, decreasingHint\n\tdefault:\n\t\treturn j, unknownHint\n\t}\n}\n\nfunc order2Ordered[E cmp.Ordered](data []E, a, b int, swaps *int) (int, int) {\n\tif cmp.Less(data[b], data[a]) {\n\t\t*swaps++\n\t\treturn b, a\n\t}\n\treturn a, b\n}\n\nfunc medianOrdered[E cmp.Ordered](data []E, a, b, c int, swaps *int) int {\n\ta, b = order2Ordered(data, a, b, swaps)\n\tb, c = order2Ordered(data, b, c, swaps)\n\ta, b = order2Ordered(data, a, b, swaps)\n\treturn b\n}\n\nfunc medianAdjacentOrdered[E cmp.Ordered](data []E, a int, swaps *int) int {\n\treturn medianOrdered(data, a-1, a, a+1, swaps)\n}\n\nfunc reverseRangeOrdered[E cmp.Ordered](data []E, a, b int) {\n\ti := a\n\tj := b - 1\n\tfor i < j {\n\t\tdata[i], data[j] = data[j], data[i]\n\t\ti++\n\t\tj--\n\t}\n}\n\nfunc swapRangeOrdered[E cmp.Ordered](data []E, a, b, n int) {\n\tfor i := 0; i < n; i++ {\n\t\tdata[a+i], data[b+i] = data[b+i], data[a+i]\n\t}\n}\n\nfunc stableOrdered[E cmp.Ordered](data []E, n int) {\n\tblockSize := 20\n\ta, b := 0, blockSize\n\tfor b <= n {\n\t\tinsertionSortOrdered(data, a, b)\n\t\ta = b\n\t\tb += blockSize\n\t}\n\tinsertionSortOrdered(data, a, n)\n\n\tfor blockSize < n {\n\t\ta, b = 0, 2*blockSize\n\t\tfor b <= n {\n\t\t\tsymMergeOrdered(data, a, a+blockSize, b)\n\t\t\ta = b\n\t\t\tb += 2 * blockSize\n\t\t}\n\t\tif m := a + blockSize; m < n {\n\t\t\tsymMergeOrdered(data, a, m, n)\n\t\t}\n\t\tblockSize *= 2\n\t}\n}\n\nfunc symMergeOrdered[E cmp.Ordered](data []E, a, m, b int) {\n\n\tif m-a == 1 {\n\n\t\ti := m\n\t\tj := b\n\t\tfor i < j {\n\t\t\th := int(uint(i+j) >> 1)\n\t\t\tif cmp.Less(data[h], data[a]) {\n\t\t\t\ti = h + 1\n\t\t\t} else {\n\t\t\t\tj = h\n\t\t\t}\n\t\t}\n\n\t\tfor k := a; k < i-1; k++ {\n\t\t\tdata[k], data[k+1] = data[k+1], data[k]\n\t\t}\n\t\treturn\n\t}\n\n\tif b-m == 1 {\n\n\t\ti := a\n\t\tj := m\n\t\tfor i < j {\n\t\t\th := int(uint(i+j) >> 1)\n\t\t\tif !cmp.Less(data[m], data[h]) {\n\t\t\t\ti = h + 1\n\t\t\t} else {\n\t\t\t\tj = h\n\t\t\t}\n\t\t}\n\n\t\tfor k := m; k > i; k-- {\n\t\t\tdata[k], data[k-1] = data[k-1], data[k]\n\t\t}\n\t\treturn\n\t}\n\n\tmid := int(uint(a+b) >> 1)\n\tn := mid + m\n\tvar start, r int\n\tif m > mid {\n\t\tstart = n - b\n\t\tr = mid\n\t} else {\n\t\tstart = a\n\t\tr = m\n\t}\n\tp := n - 1\n\n\tfor start < r {\n\t\tc := int(uint(start+r) >> 1)\n\t\tif !cmp.Less(data[p-c], data[c]) {\n\t\t\tstart = c + 1\n\t\t} else {\n\t\t\tr = c\n\t\t}\n\t}\n\n\tend := n - start\n\tif start < m && m < end {\n\t\trotateOrdered(data, start, m, end)\n\t}\n\tif a < start && start < mid {\n\t\tsymMergeOrdered(data, a, start, mid)\n\t}\n\tif mid < end && end < b {\n\t\tsymMergeOrdered(data, mid, end, b)\n\t}\n}\n\nfunc rotateOrdered[E cmp.Ordered](data []E, a, m, b int) {\n\ti := m - a\n\tj := b - m\n\n\tfor i != j {\n\t\tif i > j {\n\t\t\tswapRangeOrdered(data, m-i, m, j)\n\t\t\ti -= j\n\t\t} else {\n\t\t\tswapRangeOrdered(data, m-i, m+j-i, i)\n\t\t\tj -= i\n\t\t}\n\t}\n\n\tswapRangeOrdered(data, m-i, m, i)\n}\n" diff --git a/pkg/sort/go121_export.go b/pkg/sort/go121_export.go index daa38fd6..c6a5ccfe 100755 --- a/pkg/sort/go121_export.go +++ b/pkg/sort/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package sort diff --git a/pkg/sort/go122_export.go b/pkg/sort/go122_export.go new file mode 100755 index 00000000..5f3643e7 --- /dev/null +++ b/pkg/sort/go122_export.go @@ -0,0 +1,58 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package sort + +import ( + q "sort" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "sort", + Path: "sort", + Deps: map[string]string{ + "internal/reflectlite": "reflectlite", + "math/bits": "bits", + "slices": "slices", + }, + Interfaces: map[string]reflect.Type{ + "Interface": reflect.TypeOf((*q.Interface)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Float64Slice": reflect.TypeOf((*q.Float64Slice)(nil)).Elem(), + "IntSlice": reflect.TypeOf((*q.IntSlice)(nil)).Elem(), + "StringSlice": reflect.TypeOf((*q.StringSlice)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Find": reflect.ValueOf(q.Find), + "Float64s": reflect.ValueOf(q.Float64s), + "Float64sAreSorted": reflect.ValueOf(q.Float64sAreSorted), + "Ints": reflect.ValueOf(q.Ints), + "IntsAreSorted": reflect.ValueOf(q.IntsAreSorted), + "IsSorted": reflect.ValueOf(q.IsSorted), + "Reverse": reflect.ValueOf(q.Reverse), + "Search": reflect.ValueOf(q.Search), + "SearchFloat64s": reflect.ValueOf(q.SearchFloat64s), + "SearchInts": reflect.ValueOf(q.SearchInts), + "SearchStrings": reflect.ValueOf(q.SearchStrings), + "Slice": reflect.ValueOf(q.Slice), + "SliceIsSorted": reflect.ValueOf(q.SliceIsSorted), + "SliceStable": reflect.ValueOf(q.SliceStable), + "Sort": reflect.ValueOf(q.Sort), + "Stable": reflect.ValueOf(q.Stable), + "Strings": reflect.ValueOf(q.Strings), + "StringsAreSorted": reflect.ValueOf(q.StringsAreSorted), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/sort/go123_export.go b/pkg/sort/go123_export.go new file mode 100755 index 00000000..68d41117 --- /dev/null +++ b/pkg/sort/go123_export.go @@ -0,0 +1,58 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package sort + +import ( + q "sort" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "sort", + Path: "sort", + Deps: map[string]string{ + "internal/reflectlite": "reflectlite", + "math/bits": "bits", + "slices": "slices", + }, + Interfaces: map[string]reflect.Type{ + "Interface": reflect.TypeOf((*q.Interface)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Float64Slice": reflect.TypeOf((*q.Float64Slice)(nil)).Elem(), + "IntSlice": reflect.TypeOf((*q.IntSlice)(nil)).Elem(), + "StringSlice": reflect.TypeOf((*q.StringSlice)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Find": reflect.ValueOf(q.Find), + "Float64s": reflect.ValueOf(q.Float64s), + "Float64sAreSorted": reflect.ValueOf(q.Float64sAreSorted), + "Ints": reflect.ValueOf(q.Ints), + "IntsAreSorted": reflect.ValueOf(q.IntsAreSorted), + "IsSorted": reflect.ValueOf(q.IsSorted), + "Reverse": reflect.ValueOf(q.Reverse), + "Search": reflect.ValueOf(q.Search), + "SearchFloat64s": reflect.ValueOf(q.SearchFloat64s), + "SearchInts": reflect.ValueOf(q.SearchInts), + "SearchStrings": reflect.ValueOf(q.SearchStrings), + "Slice": reflect.ValueOf(q.Slice), + "SliceIsSorted": reflect.ValueOf(q.SliceIsSorted), + "SliceStable": reflect.ValueOf(q.SliceStable), + "Sort": reflect.ValueOf(q.Sort), + "Stable": reflect.ValueOf(q.Stable), + "Strings": reflect.ValueOf(q.Strings), + "StringsAreSorted": reflect.ValueOf(q.StringsAreSorted), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/strconv/go121_export.go b/pkg/strconv/go121_export.go index bd049047..22d0337c 100755 --- a/pkg/strconv/go121_export.go +++ b/pkg/strconv/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package strconv diff --git a/pkg/strconv/go122_export.go b/pkg/strconv/go122_export.go new file mode 100755 index 00000000..b270c66b --- /dev/null +++ b/pkg/strconv/go122_export.go @@ -0,0 +1,78 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package strconv + +import ( + q "strconv" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "strconv", + Path: "strconv", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "math": "math", + "math/bits": "bits", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "NumError": reflect.TypeOf((*q.NumError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrRange": reflect.ValueOf(&q.ErrRange), + "ErrSyntax": reflect.ValueOf(&q.ErrSyntax), + }, + Funcs: map[string]reflect.Value{ + "AppendBool": reflect.ValueOf(q.AppendBool), + "AppendFloat": reflect.ValueOf(q.AppendFloat), + "AppendInt": reflect.ValueOf(q.AppendInt), + "AppendQuote": reflect.ValueOf(q.AppendQuote), + "AppendQuoteRune": reflect.ValueOf(q.AppendQuoteRune), + "AppendQuoteRuneToASCII": reflect.ValueOf(q.AppendQuoteRuneToASCII), + "AppendQuoteRuneToGraphic": reflect.ValueOf(q.AppendQuoteRuneToGraphic), + "AppendQuoteToASCII": reflect.ValueOf(q.AppendQuoteToASCII), + "AppendQuoteToGraphic": reflect.ValueOf(q.AppendQuoteToGraphic), + "AppendUint": reflect.ValueOf(q.AppendUint), + "Atoi": reflect.ValueOf(q.Atoi), + "CanBackquote": reflect.ValueOf(q.CanBackquote), + "FormatBool": reflect.ValueOf(q.FormatBool), + "FormatComplex": reflect.ValueOf(q.FormatComplex), + "FormatFloat": reflect.ValueOf(q.FormatFloat), + "FormatInt": reflect.ValueOf(q.FormatInt), + "FormatUint": reflect.ValueOf(q.FormatUint), + "IsGraphic": reflect.ValueOf(q.IsGraphic), + "IsPrint": reflect.ValueOf(q.IsPrint), + "Itoa": reflect.ValueOf(q.Itoa), + "ParseBool": reflect.ValueOf(q.ParseBool), + "ParseComplex": reflect.ValueOf(q.ParseComplex), + "ParseFloat": reflect.ValueOf(q.ParseFloat), + "ParseInt": reflect.ValueOf(q.ParseInt), + "ParseUint": reflect.ValueOf(q.ParseUint), + "Quote": reflect.ValueOf(q.Quote), + "QuoteRune": reflect.ValueOf(q.QuoteRune), + "QuoteRuneToASCII": reflect.ValueOf(q.QuoteRuneToASCII), + "QuoteRuneToGraphic": reflect.ValueOf(q.QuoteRuneToGraphic), + "QuoteToASCII": reflect.ValueOf(q.QuoteToASCII), + "QuoteToGraphic": reflect.ValueOf(q.QuoteToGraphic), + "QuotedPrefix": reflect.ValueOf(q.QuotedPrefix), + "Unquote": reflect.ValueOf(q.Unquote), + "UnquoteChar": reflect.ValueOf(q.UnquoteChar), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "IntSize": {"untyped int", constant.MakeInt64(int64(q.IntSize))}, + }, + }) +} diff --git a/pkg/strconv/go123_export.go b/pkg/strconv/go123_export.go new file mode 100755 index 00000000..101e69a7 --- /dev/null +++ b/pkg/strconv/go123_export.go @@ -0,0 +1,79 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package strconv + +import ( + q "strconv" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "strconv", + Path: "strconv", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/stringslite": "stringslite", + "math": "math", + "math/bits": "bits", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "NumError": reflect.TypeOf((*q.NumError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrRange": reflect.ValueOf(&q.ErrRange), + "ErrSyntax": reflect.ValueOf(&q.ErrSyntax), + }, + Funcs: map[string]reflect.Value{ + "AppendBool": reflect.ValueOf(q.AppendBool), + "AppendFloat": reflect.ValueOf(q.AppendFloat), + "AppendInt": reflect.ValueOf(q.AppendInt), + "AppendQuote": reflect.ValueOf(q.AppendQuote), + "AppendQuoteRune": reflect.ValueOf(q.AppendQuoteRune), + "AppendQuoteRuneToASCII": reflect.ValueOf(q.AppendQuoteRuneToASCII), + "AppendQuoteRuneToGraphic": reflect.ValueOf(q.AppendQuoteRuneToGraphic), + "AppendQuoteToASCII": reflect.ValueOf(q.AppendQuoteToASCII), + "AppendQuoteToGraphic": reflect.ValueOf(q.AppendQuoteToGraphic), + "AppendUint": reflect.ValueOf(q.AppendUint), + "Atoi": reflect.ValueOf(q.Atoi), + "CanBackquote": reflect.ValueOf(q.CanBackquote), + "FormatBool": reflect.ValueOf(q.FormatBool), + "FormatComplex": reflect.ValueOf(q.FormatComplex), + "FormatFloat": reflect.ValueOf(q.FormatFloat), + "FormatInt": reflect.ValueOf(q.FormatInt), + "FormatUint": reflect.ValueOf(q.FormatUint), + "IsGraphic": reflect.ValueOf(q.IsGraphic), + "IsPrint": reflect.ValueOf(q.IsPrint), + "Itoa": reflect.ValueOf(q.Itoa), + "ParseBool": reflect.ValueOf(q.ParseBool), + "ParseComplex": reflect.ValueOf(q.ParseComplex), + "ParseFloat": reflect.ValueOf(q.ParseFloat), + "ParseInt": reflect.ValueOf(q.ParseInt), + "ParseUint": reflect.ValueOf(q.ParseUint), + "Quote": reflect.ValueOf(q.Quote), + "QuoteRune": reflect.ValueOf(q.QuoteRune), + "QuoteRuneToASCII": reflect.ValueOf(q.QuoteRuneToASCII), + "QuoteRuneToGraphic": reflect.ValueOf(q.QuoteRuneToGraphic), + "QuoteToASCII": reflect.ValueOf(q.QuoteToASCII), + "QuoteToGraphic": reflect.ValueOf(q.QuoteToGraphic), + "QuotedPrefix": reflect.ValueOf(q.QuotedPrefix), + "Unquote": reflect.ValueOf(q.Unquote), + "UnquoteChar": reflect.ValueOf(q.UnquoteChar), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "IntSize": {"untyped int", constant.MakeInt64(int64(q.IntSize))}, + }, + }) +} diff --git a/pkg/strings/go121_export.go b/pkg/strings/go121_export.go index 0ed8241f..b4c23a42 100755 --- a/pkg/strings/go121_export.go +++ b/pkg/strings/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package strings diff --git a/pkg/strings/go122_export.go b/pkg/strings/go122_export.go new file mode 100755 index 00000000..c54d83ba --- /dev/null +++ b/pkg/strings/go122_export.go @@ -0,0 +1,94 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package strings + +import ( + q "strings" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "strings", + Path: "strings", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "io": "io", + "sync": "sync", + "unicode": "unicode", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Builder": reflect.TypeOf((*q.Builder)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Replacer": reflect.TypeOf((*q.Replacer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Clone": reflect.ValueOf(q.Clone), + "Compare": reflect.ValueOf(q.Compare), + "Contains": reflect.ValueOf(q.Contains), + "ContainsAny": reflect.ValueOf(q.ContainsAny), + "ContainsFunc": reflect.ValueOf(q.ContainsFunc), + "ContainsRune": reflect.ValueOf(q.ContainsRune), + "Count": reflect.ValueOf(q.Count), + "Cut": reflect.ValueOf(q.Cut), + "CutPrefix": reflect.ValueOf(q.CutPrefix), + "CutSuffix": reflect.ValueOf(q.CutSuffix), + "EqualFold": reflect.ValueOf(q.EqualFold), + "Fields": reflect.ValueOf(q.Fields), + "FieldsFunc": reflect.ValueOf(q.FieldsFunc), + "HasPrefix": reflect.ValueOf(q.HasPrefix), + "HasSuffix": reflect.ValueOf(q.HasSuffix), + "Index": reflect.ValueOf(q.Index), + "IndexAny": reflect.ValueOf(q.IndexAny), + "IndexByte": reflect.ValueOf(q.IndexByte), + "IndexFunc": reflect.ValueOf(q.IndexFunc), + "IndexRune": reflect.ValueOf(q.IndexRune), + "Join": reflect.ValueOf(q.Join), + "LastIndex": reflect.ValueOf(q.LastIndex), + "LastIndexAny": reflect.ValueOf(q.LastIndexAny), + "LastIndexByte": reflect.ValueOf(q.LastIndexByte), + "LastIndexFunc": reflect.ValueOf(q.LastIndexFunc), + "Map": reflect.ValueOf(q.Map), + "NewReader": reflect.ValueOf(q.NewReader), + "NewReplacer": reflect.ValueOf(q.NewReplacer), + "Repeat": reflect.ValueOf(q.Repeat), + "Replace": reflect.ValueOf(q.Replace), + "ReplaceAll": reflect.ValueOf(q.ReplaceAll), + "Split": reflect.ValueOf(q.Split), + "SplitAfter": reflect.ValueOf(q.SplitAfter), + "SplitAfterN": reflect.ValueOf(q.SplitAfterN), + "SplitN": reflect.ValueOf(q.SplitN), + "Title": reflect.ValueOf(q.Title), + "ToLower": reflect.ValueOf(q.ToLower), + "ToLowerSpecial": reflect.ValueOf(q.ToLowerSpecial), + "ToTitle": reflect.ValueOf(q.ToTitle), + "ToTitleSpecial": reflect.ValueOf(q.ToTitleSpecial), + "ToUpper": reflect.ValueOf(q.ToUpper), + "ToUpperSpecial": reflect.ValueOf(q.ToUpperSpecial), + "ToValidUTF8": reflect.ValueOf(q.ToValidUTF8), + "Trim": reflect.ValueOf(q.Trim), + "TrimFunc": reflect.ValueOf(q.TrimFunc), + "TrimLeft": reflect.ValueOf(q.TrimLeft), + "TrimLeftFunc": reflect.ValueOf(q.TrimLeftFunc), + "TrimPrefix": reflect.ValueOf(q.TrimPrefix), + "TrimRight": reflect.ValueOf(q.TrimRight), + "TrimRightFunc": reflect.ValueOf(q.TrimRightFunc), + "TrimSpace": reflect.ValueOf(q.TrimSpace), + "TrimSuffix": reflect.ValueOf(q.TrimSuffix), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/strings/go123_export.go b/pkg/strings/go123_export.go new file mode 100755 index 00000000..6ab64e31 --- /dev/null +++ b/pkg/strings/go123_export.go @@ -0,0 +1,96 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package strings + +import ( + q "strings" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "strings", + Path: "strings", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/bytealg": "bytealg", + "internal/stringslite": "stringslite", + "io": "io", + "sync": "sync", + "unicode": "unicode", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Builder": reflect.TypeOf((*q.Builder)(nil)).Elem(), + "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), + "Replacer": reflect.TypeOf((*q.Replacer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Clone": reflect.ValueOf(q.Clone), + "Compare": reflect.ValueOf(q.Compare), + "Contains": reflect.ValueOf(q.Contains), + "ContainsAny": reflect.ValueOf(q.ContainsAny), + "ContainsFunc": reflect.ValueOf(q.ContainsFunc), + "ContainsRune": reflect.ValueOf(q.ContainsRune), + "Count": reflect.ValueOf(q.Count), + "Cut": reflect.ValueOf(q.Cut), + "CutPrefix": reflect.ValueOf(q.CutPrefix), + "CutSuffix": reflect.ValueOf(q.CutSuffix), + "EqualFold": reflect.ValueOf(q.EqualFold), + "Fields": reflect.ValueOf(q.Fields), + "FieldsFunc": reflect.ValueOf(q.FieldsFunc), + "HasPrefix": reflect.ValueOf(q.HasPrefix), + "HasSuffix": reflect.ValueOf(q.HasSuffix), + "Index": reflect.ValueOf(q.Index), + "IndexAny": reflect.ValueOf(q.IndexAny), + "IndexByte": reflect.ValueOf(q.IndexByte), + "IndexFunc": reflect.ValueOf(q.IndexFunc), + "IndexRune": reflect.ValueOf(q.IndexRune), + "Join": reflect.ValueOf(q.Join), + "LastIndex": reflect.ValueOf(q.LastIndex), + "LastIndexAny": reflect.ValueOf(q.LastIndexAny), + "LastIndexByte": reflect.ValueOf(q.LastIndexByte), + "LastIndexFunc": reflect.ValueOf(q.LastIndexFunc), + "Map": reflect.ValueOf(q.Map), + "NewReader": reflect.ValueOf(q.NewReader), + "NewReplacer": reflect.ValueOf(q.NewReplacer), + "Repeat": reflect.ValueOf(q.Repeat), + "Replace": reflect.ValueOf(q.Replace), + "ReplaceAll": reflect.ValueOf(q.ReplaceAll), + "Split": reflect.ValueOf(q.Split), + "SplitAfter": reflect.ValueOf(q.SplitAfter), + "SplitAfterN": reflect.ValueOf(q.SplitAfterN), + "SplitN": reflect.ValueOf(q.SplitN), + "Title": reflect.ValueOf(q.Title), + "ToLower": reflect.ValueOf(q.ToLower), + "ToLowerSpecial": reflect.ValueOf(q.ToLowerSpecial), + "ToTitle": reflect.ValueOf(q.ToTitle), + "ToTitleSpecial": reflect.ValueOf(q.ToTitleSpecial), + "ToUpper": reflect.ValueOf(q.ToUpper), + "ToUpperSpecial": reflect.ValueOf(q.ToUpperSpecial), + "ToValidUTF8": reflect.ValueOf(q.ToValidUTF8), + "Trim": reflect.ValueOf(q.Trim), + "TrimFunc": reflect.ValueOf(q.TrimFunc), + "TrimLeft": reflect.ValueOf(q.TrimLeft), + "TrimLeftFunc": reflect.ValueOf(q.TrimLeftFunc), + "TrimPrefix": reflect.ValueOf(q.TrimPrefix), + "TrimRight": reflect.ValueOf(q.TrimRight), + "TrimRightFunc": reflect.ValueOf(q.TrimRightFunc), + "TrimSpace": reflect.ValueOf(q.TrimSpace), + "TrimSuffix": reflect.ValueOf(q.TrimSuffix), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/structs/go123_export.go b/pkg/structs/go123_export.go new file mode 100755 index 00000000..375bb4fa --- /dev/null +++ b/pkg/structs/go123_export.go @@ -0,0 +1,31 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package structs + +import ( + q "structs" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "structs", + Path: "structs", + Deps: map[string]string{}, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "HostLayout": reflect.TypeOf((*q.HostLayout)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{}, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/sync/atomic/go121_export.go b/pkg/sync/atomic/go121_export.go index 49f189ed..9840a876 100755 --- a/pkg/sync/atomic/go121_export.go +++ b/pkg/sync/atomic/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package atomic diff --git a/pkg/sync/atomic/go122_export.go b/pkg/sync/atomic/go122_export.go new file mode 100755 index 00000000..cd76f4e6 --- /dev/null +++ b/pkg/sync/atomic/go122_export.go @@ -0,0 +1,81 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package atomic + +import ( + q "sync/atomic" + + "reflect" + _ "unsafe" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "atomic", + Path: "sync/atomic", + Deps: map[string]string{ + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Bool": reflect.TypeOf((*q.Bool)(nil)).Elem(), + "Int32": reflect.TypeOf((*q.Int32)(nil)).Elem(), + "Int64": reflect.TypeOf((*q.Int64)(nil)).Elem(), + "Uint32": reflect.TypeOf((*q.Uint32)(nil)).Elem(), + "Uint64": reflect.TypeOf((*q.Uint64)(nil)).Elem(), + "Uintptr": reflect.TypeOf((*q.Uintptr)(nil)).Elem(), + "Value": reflect.TypeOf((*q.Value)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "AddInt32": reflect.ValueOf(q.AddInt32), + "AddInt64": reflect.ValueOf(q.AddInt64), + "AddUint32": reflect.ValueOf(q.AddUint32), + "AddUint64": reflect.ValueOf(q.AddUint64), + "AddUintptr": reflect.ValueOf(q.AddUintptr), + "CompareAndSwapInt32": reflect.ValueOf(q.CompareAndSwapInt32), + "CompareAndSwapInt64": reflect.ValueOf(q.CompareAndSwapInt64), + "CompareAndSwapPointer": reflect.ValueOf(q.CompareAndSwapPointer), + "CompareAndSwapUint32": reflect.ValueOf(q.CompareAndSwapUint32), + "CompareAndSwapUint64": reflect.ValueOf(q.CompareAndSwapUint64), + "CompareAndSwapUintptr": reflect.ValueOf(q.CompareAndSwapUintptr), + "LoadInt32": reflect.ValueOf(q.LoadInt32), + "LoadInt64": reflect.ValueOf(q.LoadInt64), + "LoadPointer": reflect.ValueOf(q.LoadPointer), + "LoadUint32": reflect.ValueOf(q.LoadUint32), + "LoadUint64": reflect.ValueOf(q.LoadUint64), + "LoadUintptr": reflect.ValueOf(q.LoadUintptr), + "StoreInt32": reflect.ValueOf(q.StoreInt32), + "StoreInt64": reflect.ValueOf(q.StoreInt64), + "StorePointer": reflect.ValueOf(q.StorePointer), + "StoreUint32": reflect.ValueOf(q.StoreUint32), + "StoreUint64": reflect.ValueOf(q.StoreUint64), + "StoreUintptr": reflect.ValueOf(q.StoreUintptr), + "SwapInt32": reflect.ValueOf(q.SwapInt32), + "SwapInt64": reflect.ValueOf(q.SwapInt64), + "SwapPointer": reflect.ValueOf(q.SwapPointer), + "SwapUint32": reflect.ValueOf(q.SwapUint32), + "SwapUint64": reflect.ValueOf(q.SwapUint64), + "SwapUintptr": reflect.ValueOf(q.SwapUintptr), + "runtime_procPin": reflect.ValueOf(_runtime_procPin), + "runtime_procUnpin": reflect.ValueOf(_runtime_procUnpin), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + Source: source, + }) +} + +//go:linkname _runtime_procPin sync/atomic.runtime_procPin +func _runtime_procPin() int + +//go:linkname _runtime_procUnpin sync/atomic.runtime_procUnpin +func _runtime_procUnpin() + +var source = "package atomic\n\nimport \"unsafe\"\n\nfunc SwapInt32(addr *int32, new int32) (old int32)\n\nfunc SwapInt64(addr *int64, new int64) (old int64)\n\nfunc SwapUint32(addr *uint32, new uint32) (old uint32)\n\nfunc SwapUint64(addr *uint64, new uint64) (old uint64)\n\nfunc SwapUintptr(addr *uintptr, new uintptr) (old uintptr)\n\nfunc SwapPointer(addr *unsafe.Pointer, new unsafe.Pointer) (old unsafe.Pointer)\n\nfunc CompareAndSwapInt32(addr *int32, old, new int32) (swapped bool)\n\nfunc CompareAndSwapInt64(addr *int64, old, new int64) (swapped bool)\n\nfunc CompareAndSwapUint32(addr *uint32, old, new uint32) (swapped bool)\n\nfunc CompareAndSwapUint64(addr *uint64, old, new uint64) (swapped bool)\n\nfunc CompareAndSwapUintptr(addr *uintptr, old, new uintptr) (swapped bool)\n\nfunc CompareAndSwapPointer(addr *unsafe.Pointer, old, new unsafe.Pointer) (swapped bool)\n\nfunc AddInt32(addr *int32, delta int32) (new int32)\n\nfunc AddUint32(addr *uint32, delta uint32) (new uint32)\n\nfunc AddInt64(addr *int64, delta int64) (new int64)\n\nfunc AddUint64(addr *uint64, delta uint64) (new uint64)\n\nfunc AddUintptr(addr *uintptr, delta uintptr) (new uintptr)\n\nfunc LoadInt32(addr *int32) (val int32)\n\nfunc LoadInt64(addr *int64) (val int64)\n\nfunc LoadUint32(addr *uint32) (val uint32)\n\nfunc LoadUint64(addr *uint64) (val uint64)\n\nfunc LoadUintptr(addr *uintptr) (val uintptr)\n\nfunc LoadPointer(addr *unsafe.Pointer) (val unsafe.Pointer)\n\nfunc StoreInt32(addr *int32, val int32)\n\nfunc StoreInt64(addr *int64, val int64)\n\nfunc StoreUint32(addr *uint32, val uint32)\n\nfunc StoreUint64(addr *uint64, val uint64)\n\nfunc StoreUintptr(addr *uintptr, val uintptr)\n\nfunc StorePointer(addr *unsafe.Pointer, val unsafe.Pointer)\n\ntype Bool struct {\n\t_\tnoCopy\n\tv\tuint32\n}\n\nfunc (x *Bool) Load() bool\n\nfunc (x *Bool) Store(val bool)\n\nfunc (x *Bool) Swap(new bool) (old bool)\n\nfunc (x *Bool) CompareAndSwap(old, new bool) (swapped bool)\n\nfunc b32(b bool) uint32 {\n\tif b {\n\t\treturn 1\n\t}\n\treturn 0\n}\n\ntype Pointer[T any] struct {\n\t_\t[0]*T\n\n\t_\tnoCopy\n\tv\tunsafe.Pointer\n}\n\nfunc (x *Pointer[T]) Load() *T\t{ return (*T)(LoadPointer(&x.v)) }\n\nfunc (x *Pointer[T]) Store(val *T)\t{ StorePointer(&x.v, unsafe.Pointer(val)) }\n\nfunc (x *Pointer[T]) Swap(new *T) (old *T)\t{ return (*T)(SwapPointer(&x.v, unsafe.Pointer(new))) }\n\nfunc (x *Pointer[T]) CompareAndSwap(old, new *T) (swapped bool) {\n\treturn CompareAndSwapPointer(&x.v, unsafe.Pointer(old), unsafe.Pointer(new))\n}\n\ntype Int32 struct {\n\t_\tnoCopy\n\tv\tint32\n}\n\nfunc (x *Int32) Load() int32\n\nfunc (x *Int32) Store(val int32)\n\nfunc (x *Int32) Swap(new int32) (old int32)\n\nfunc (x *Int32) CompareAndSwap(old, new int32) (swapped bool)\n\nfunc (x *Int32) Add(delta int32) (new int32)\n\ntype Int64 struct {\n\t_\tnoCopy\n\t_\talign64\n\tv\tint64\n}\n\nfunc (x *Int64) Load() int64\n\nfunc (x *Int64) Store(val int64)\n\nfunc (x *Int64) Swap(new int64) (old int64)\n\nfunc (x *Int64) CompareAndSwap(old, new int64) (swapped bool)\n\nfunc (x *Int64) Add(delta int64) (new int64)\n\ntype Uint32 struct {\n\t_\tnoCopy\n\tv\tuint32\n}\n\nfunc (x *Uint32) Load() uint32\n\nfunc (x *Uint32) Store(val uint32)\n\nfunc (x *Uint32) Swap(new uint32) (old uint32)\n\nfunc (x *Uint32) CompareAndSwap(old, new uint32) (swapped bool)\n\nfunc (x *Uint32) Add(delta uint32) (new uint32)\n\ntype Uint64 struct {\n\t_\tnoCopy\n\t_\talign64\n\tv\tuint64\n}\n\nfunc (x *Uint64) Load() uint64\n\nfunc (x *Uint64) Store(val uint64)\n\nfunc (x *Uint64) Swap(new uint64) (old uint64)\n\nfunc (x *Uint64) CompareAndSwap(old, new uint64) (swapped bool)\n\nfunc (x *Uint64) Add(delta uint64) (new uint64)\n\ntype Uintptr struct {\n\t_\tnoCopy\n\tv\tuintptr\n}\n\nfunc (x *Uintptr) Load() uintptr\n\nfunc (x *Uintptr) Store(val uintptr)\n\nfunc (x *Uintptr) Swap(new uintptr) (old uintptr)\n\nfunc (x *Uintptr) CompareAndSwap(old, new uintptr) (swapped bool)\n\nfunc (x *Uintptr) Add(delta uintptr) (new uintptr)\n\ntype noCopy struct{}\n\nfunc (*noCopy) Lock()\t{}\nfunc (*noCopy) Unlock()\t{}\n\ntype align64 struct{}\ntype Value struct {\n\tv any\n}\n\ntype efaceWords struct {\n\ttyp\tunsafe.Pointer\n\tdata\tunsafe.Pointer\n}\n\nfunc (v *Value) Load() (val any)\n\nvar firstStoreInProgress byte\n\nfunc (v *Value) Store(val any)\n\nfunc (v *Value) Swap(new any) (old any)\n\nfunc (v *Value) CompareAndSwap(old, new any) (swapped bool)\n\nfunc runtime_procPin() int\nfunc runtime_procUnpin()\n" diff --git a/pkg/sync/atomic/go123_export.go b/pkg/sync/atomic/go123_export.go new file mode 100755 index 00000000..b7671ab4 --- /dev/null +++ b/pkg/sync/atomic/go123_export.go @@ -0,0 +1,91 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package atomic + +import ( + q "sync/atomic" + + "reflect" + _ "unsafe" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "atomic", + Path: "sync/atomic", + Deps: map[string]string{ + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Bool": reflect.TypeOf((*q.Bool)(nil)).Elem(), + "Int32": reflect.TypeOf((*q.Int32)(nil)).Elem(), + "Int64": reflect.TypeOf((*q.Int64)(nil)).Elem(), + "Uint32": reflect.TypeOf((*q.Uint32)(nil)).Elem(), + "Uint64": reflect.TypeOf((*q.Uint64)(nil)).Elem(), + "Uintptr": reflect.TypeOf((*q.Uintptr)(nil)).Elem(), + "Value": reflect.TypeOf((*q.Value)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "AddInt32": reflect.ValueOf(q.AddInt32), + "AddInt64": reflect.ValueOf(q.AddInt64), + "AddUint32": reflect.ValueOf(q.AddUint32), + "AddUint64": reflect.ValueOf(q.AddUint64), + "AddUintptr": reflect.ValueOf(q.AddUintptr), + "AndInt32": reflect.ValueOf(q.AndInt32), + "AndInt64": reflect.ValueOf(q.AndInt64), + "AndUint32": reflect.ValueOf(q.AndUint32), + "AndUint64": reflect.ValueOf(q.AndUint64), + "AndUintptr": reflect.ValueOf(q.AndUintptr), + "CompareAndSwapInt32": reflect.ValueOf(q.CompareAndSwapInt32), + "CompareAndSwapInt64": reflect.ValueOf(q.CompareAndSwapInt64), + "CompareAndSwapPointer": reflect.ValueOf(q.CompareAndSwapPointer), + "CompareAndSwapUint32": reflect.ValueOf(q.CompareAndSwapUint32), + "CompareAndSwapUint64": reflect.ValueOf(q.CompareAndSwapUint64), + "CompareAndSwapUintptr": reflect.ValueOf(q.CompareAndSwapUintptr), + "LoadInt32": reflect.ValueOf(q.LoadInt32), + "LoadInt64": reflect.ValueOf(q.LoadInt64), + "LoadPointer": reflect.ValueOf(q.LoadPointer), + "LoadUint32": reflect.ValueOf(q.LoadUint32), + "LoadUint64": reflect.ValueOf(q.LoadUint64), + "LoadUintptr": reflect.ValueOf(q.LoadUintptr), + "OrInt32": reflect.ValueOf(q.OrInt32), + "OrInt64": reflect.ValueOf(q.OrInt64), + "OrUint32": reflect.ValueOf(q.OrUint32), + "OrUint64": reflect.ValueOf(q.OrUint64), + "OrUintptr": reflect.ValueOf(q.OrUintptr), + "StoreInt32": reflect.ValueOf(q.StoreInt32), + "StoreInt64": reflect.ValueOf(q.StoreInt64), + "StorePointer": reflect.ValueOf(q.StorePointer), + "StoreUint32": reflect.ValueOf(q.StoreUint32), + "StoreUint64": reflect.ValueOf(q.StoreUint64), + "StoreUintptr": reflect.ValueOf(q.StoreUintptr), + "SwapInt32": reflect.ValueOf(q.SwapInt32), + "SwapInt64": reflect.ValueOf(q.SwapInt64), + "SwapPointer": reflect.ValueOf(q.SwapPointer), + "SwapUint32": reflect.ValueOf(q.SwapUint32), + "SwapUint64": reflect.ValueOf(q.SwapUint64), + "SwapUintptr": reflect.ValueOf(q.SwapUintptr), + "runtime_procPin": reflect.ValueOf(_runtime_procPin), + "runtime_procUnpin": reflect.ValueOf(_runtime_procUnpin), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + Source: source, + }) +} + +//go:linkname _runtime_procPin sync/atomic.runtime_procPin +func _runtime_procPin() int + +//go:linkname _runtime_procUnpin sync/atomic.runtime_procUnpin +func _runtime_procUnpin() + +var source = "package atomic\n\nimport \"unsafe\"\n\nfunc SwapInt32(addr *int32, new int32) (old int32)\n\nfunc SwapInt64(addr *int64, new int64) (old int64)\n\nfunc SwapUint32(addr *uint32, new uint32) (old uint32)\n\nfunc SwapUint64(addr *uint64, new uint64) (old uint64)\n\nfunc SwapUintptr(addr *uintptr, new uintptr) (old uintptr)\n\nfunc SwapPointer(addr *unsafe.Pointer, new unsafe.Pointer) (old unsafe.Pointer)\n\nfunc CompareAndSwapInt32(addr *int32, old, new int32) (swapped bool)\n\nfunc CompareAndSwapInt64(addr *int64, old, new int64) (swapped bool)\n\nfunc CompareAndSwapUint32(addr *uint32, old, new uint32) (swapped bool)\n\nfunc CompareAndSwapUint64(addr *uint64, old, new uint64) (swapped bool)\n\nfunc CompareAndSwapUintptr(addr *uintptr, old, new uintptr) (swapped bool)\n\nfunc CompareAndSwapPointer(addr *unsafe.Pointer, old, new unsafe.Pointer) (swapped bool)\n\nfunc AddInt32(addr *int32, delta int32) (new int32)\n\nfunc AddUint32(addr *uint32, delta uint32) (new uint32)\n\nfunc AddInt64(addr *int64, delta int64) (new int64)\n\nfunc AddUint64(addr *uint64, delta uint64) (new uint64)\n\nfunc AddUintptr(addr *uintptr, delta uintptr) (new uintptr)\n\nfunc AndInt32(addr *int32, mask int32) (old int32)\n\nfunc AndUint32(addr *uint32, mask uint32) (old uint32)\n\nfunc AndInt64(addr *int64, mask int64) (old int64)\n\nfunc AndUint64(addr *uint64, mask uint64) (old uint64)\n\nfunc AndUintptr(addr *uintptr, mask uintptr) (old uintptr)\n\nfunc OrInt32(addr *int32, mask int32) (old int32)\n\nfunc OrUint32(addr *uint32, mask uint32) (old uint32)\n\nfunc OrInt64(addr *int64, mask int64) (old int64)\n\nfunc OrUint64(addr *uint64, mask uint64) (old uint64)\n\nfunc OrUintptr(addr *uintptr, mask uintptr) (old uintptr)\n\nfunc LoadInt32(addr *int32) (val int32)\n\nfunc LoadInt64(addr *int64) (val int64)\n\nfunc LoadUint32(addr *uint32) (val uint32)\n\nfunc LoadUint64(addr *uint64) (val uint64)\n\nfunc LoadUintptr(addr *uintptr) (val uintptr)\n\nfunc LoadPointer(addr *unsafe.Pointer) (val unsafe.Pointer)\n\nfunc StoreInt32(addr *int32, val int32)\n\nfunc StoreInt64(addr *int64, val int64)\n\nfunc StoreUint32(addr *uint32, val uint32)\n\nfunc StoreUint64(addr *uint64, val uint64)\n\nfunc StoreUintptr(addr *uintptr, val uintptr)\n\nfunc StorePointer(addr *unsafe.Pointer, val unsafe.Pointer)\n\ntype Bool struct {\n\t_\tnoCopy\n\tv\tuint32\n}\n\nfunc (x *Bool) Load() bool\n\nfunc (x *Bool) Store(val bool)\n\nfunc (x *Bool) Swap(new bool) (old bool)\n\nfunc (x *Bool) CompareAndSwap(old, new bool) (swapped bool)\n\nfunc b32(b bool) uint32 {\n\tif b {\n\t\treturn 1\n\t}\n\treturn 0\n}\n\ntype Pointer[T any] struct {\n\t_\t[0]*T\n\n\t_\tnoCopy\n\tv\tunsafe.Pointer\n}\n\nfunc (x *Pointer[T]) Load() *T\t{ return (*T)(LoadPointer(&x.v)) }\n\nfunc (x *Pointer[T]) Store(val *T)\t{ StorePointer(&x.v, unsafe.Pointer(val)) }\n\nfunc (x *Pointer[T]) Swap(new *T) (old *T)\t{ return (*T)(SwapPointer(&x.v, unsafe.Pointer(new))) }\n\nfunc (x *Pointer[T]) CompareAndSwap(old, new *T) (swapped bool) {\n\treturn CompareAndSwapPointer(&x.v, unsafe.Pointer(old), unsafe.Pointer(new))\n}\n\ntype Int32 struct {\n\t_\tnoCopy\n\tv\tint32\n}\n\nfunc (x *Int32) Load() int32\n\nfunc (x *Int32) Store(val int32)\n\nfunc (x *Int32) Swap(new int32) (old int32)\n\nfunc (x *Int32) CompareAndSwap(old, new int32) (swapped bool)\n\nfunc (x *Int32) Add(delta int32) (new int32)\n\nfunc (x *Int32) And(mask int32) (old int32)\n\nfunc (x *Int32) Or(mask int32) (old int32)\n\ntype Int64 struct {\n\t_\tnoCopy\n\t_\talign64\n\tv\tint64\n}\n\nfunc (x *Int64) Load() int64\n\nfunc (x *Int64) Store(val int64)\n\nfunc (x *Int64) Swap(new int64) (old int64)\n\nfunc (x *Int64) CompareAndSwap(old, new int64) (swapped bool)\n\nfunc (x *Int64) Add(delta int64) (new int64)\n\nfunc (x *Int64) And(mask int64) (old int64)\n\nfunc (x *Int64) Or(mask int64) (old int64)\n\ntype Uint32 struct {\n\t_\tnoCopy\n\tv\tuint32\n}\n\nfunc (x *Uint32) Load() uint32\n\nfunc (x *Uint32) Store(val uint32)\n\nfunc (x *Uint32) Swap(new uint32) (old uint32)\n\nfunc (x *Uint32) CompareAndSwap(old, new uint32) (swapped bool)\n\nfunc (x *Uint32) Add(delta uint32) (new uint32)\n\nfunc (x *Uint32) And(mask uint32) (old uint32)\n\nfunc (x *Uint32) Or(mask uint32) (old uint32)\n\ntype Uint64 struct {\n\t_\tnoCopy\n\t_\talign64\n\tv\tuint64\n}\n\nfunc (x *Uint64) Load() uint64\n\nfunc (x *Uint64) Store(val uint64)\n\nfunc (x *Uint64) Swap(new uint64) (old uint64)\n\nfunc (x *Uint64) CompareAndSwap(old, new uint64) (swapped bool)\n\nfunc (x *Uint64) Add(delta uint64) (new uint64)\n\nfunc (x *Uint64) And(mask uint64) (old uint64)\n\nfunc (x *Uint64) Or(mask uint64) (old uint64)\n\ntype Uintptr struct {\n\t_\tnoCopy\n\tv\tuintptr\n}\n\nfunc (x *Uintptr) Load() uintptr\n\nfunc (x *Uintptr) Store(val uintptr)\n\nfunc (x *Uintptr) Swap(new uintptr) (old uintptr)\n\nfunc (x *Uintptr) CompareAndSwap(old, new uintptr) (swapped bool)\n\nfunc (x *Uintptr) Add(delta uintptr) (new uintptr)\n\nfunc (x *Uintptr) And(mask uintptr) (old uintptr)\n\nfunc (x *Uintptr) Or(mask uintptr) (old uintptr)\n\ntype noCopy struct{}\n\nfunc (*noCopy) Lock()\t{}\nfunc (*noCopy) Unlock()\t{}\n\ntype align64 struct{}\ntype Value struct {\n\tv any\n}\n\ntype efaceWords struct {\n\ttyp\tunsafe.Pointer\n\tdata\tunsafe.Pointer\n}\n\nfunc (v *Value) Load() (val any)\n\nvar firstStoreInProgress byte\n\nfunc (v *Value) Store(val any)\n\nfunc (v *Value) Swap(new any) (old any)\n\nfunc (v *Value) CompareAndSwap(old, new any) (swapped bool)\n\nfunc runtime_procPin() int\nfunc runtime_procUnpin()\n" diff --git a/pkg/sync/go121_export.go b/pkg/sync/go121_export.go index 08cd8589..42d519ae 100755 --- a/pkg/sync/go121_export.go +++ b/pkg/sync/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package sync diff --git a/pkg/sync/go122_export.go b/pkg/sync/go122_export.go new file mode 100755 index 00000000..5581cf0b --- /dev/null +++ b/pkg/sync/go122_export.go @@ -0,0 +1,47 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package sync + +import ( + q "sync" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "sync", + Path: "sync", + Deps: map[string]string{ + "internal/race": "race", + "runtime": "runtime", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Locker": reflect.TypeOf((*q.Locker)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cond": reflect.TypeOf((*q.Cond)(nil)).Elem(), + "Map": reflect.TypeOf((*q.Map)(nil)).Elem(), + "Mutex": reflect.TypeOf((*q.Mutex)(nil)).Elem(), + "Once": reflect.TypeOf((*q.Once)(nil)).Elem(), + "Pool": reflect.TypeOf((*q.Pool)(nil)).Elem(), + "RWMutex": reflect.TypeOf((*q.RWMutex)(nil)).Elem(), + "WaitGroup": reflect.TypeOf((*q.WaitGroup)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewCond": reflect.ValueOf(q.NewCond), + "OnceFunc": reflect.ValueOf(q.OnceFunc), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/sync/go123_export.go b/pkg/sync/go123_export.go new file mode 100755 index 00000000..9fb20fce --- /dev/null +++ b/pkg/sync/go123_export.go @@ -0,0 +1,47 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package sync + +import ( + q "sync" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "sync", + Path: "sync", + Deps: map[string]string{ + "internal/race": "race", + "runtime": "runtime", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Locker": reflect.TypeOf((*q.Locker)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cond": reflect.TypeOf((*q.Cond)(nil)).Elem(), + "Map": reflect.TypeOf((*q.Map)(nil)).Elem(), + "Mutex": reflect.TypeOf((*q.Mutex)(nil)).Elem(), + "Once": reflect.TypeOf((*q.Once)(nil)).Elem(), + "Pool": reflect.TypeOf((*q.Pool)(nil)).Elem(), + "RWMutex": reflect.TypeOf((*q.RWMutex)(nil)).Elem(), + "WaitGroup": reflect.TypeOf((*q.WaitGroup)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewCond": reflect.ValueOf(q.NewCond), + "OnceFunc": reflect.ValueOf(q.OnceFunc), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/syscall/go121_export_aix_ppc64.go b/pkg/syscall/go121_export_aix_ppc64.go index 6459619d..cda286cc 100755 --- a/pkg/syscall/go121_export_aix_ppc64.go +++ b/pkg/syscall/go121_export_aix_ppc64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_android_386.go b/pkg/syscall/go121_export_android_386.go index 6f933412..ed2574c7 100755 --- a/pkg/syscall/go121_export_android_386.go +++ b/pkg/syscall/go121_export_android_386.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_android_amd64.go b/pkg/syscall/go121_export_android_amd64.go index f955b75e..5dd92f31 100755 --- a/pkg/syscall/go121_export_android_amd64.go +++ b/pkg/syscall/go121_export_android_amd64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_android_arm.go b/pkg/syscall/go121_export_android_arm.go index 75c624e7..c2242db9 100755 --- a/pkg/syscall/go121_export_android_arm.go +++ b/pkg/syscall/go121_export_android_arm.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_android_arm64.go b/pkg/syscall/go121_export_android_arm64.go index 52ad2ac1..f07a839c 100755 --- a/pkg/syscall/go121_export_android_arm64.go +++ b/pkg/syscall/go121_export_android_arm64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_darwin_amd64.go b/pkg/syscall/go121_export_darwin_amd64.go index 8c618d63..5d44c957 100755 --- a/pkg/syscall/go121_export_darwin_amd64.go +++ b/pkg/syscall/go121_export_darwin_amd64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_darwin_arm64.go b/pkg/syscall/go121_export_darwin_arm64.go index 95eed053..fab013d7 100755 --- a/pkg/syscall/go121_export_darwin_arm64.go +++ b/pkg/syscall/go121_export_darwin_arm64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_dragonfly_amd64.go b/pkg/syscall/go121_export_dragonfly_amd64.go index 1156f84c..0cdaa67c 100755 --- a/pkg/syscall/go121_export_dragonfly_amd64.go +++ b/pkg/syscall/go121_export_dragonfly_amd64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_freebsd_386.go b/pkg/syscall/go121_export_freebsd_386.go index 1461f62d..697f25d5 100755 --- a/pkg/syscall/go121_export_freebsd_386.go +++ b/pkg/syscall/go121_export_freebsd_386.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_freebsd_amd64.go b/pkg/syscall/go121_export_freebsd_amd64.go index 97ce1dfc..b67d84b9 100755 --- a/pkg/syscall/go121_export_freebsd_amd64.go +++ b/pkg/syscall/go121_export_freebsd_amd64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_freebsd_arm.go b/pkg/syscall/go121_export_freebsd_arm.go index 1461f62d..697f25d5 100755 --- a/pkg/syscall/go121_export_freebsd_arm.go +++ b/pkg/syscall/go121_export_freebsd_arm.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_freebsd_arm64.go b/pkg/syscall/go121_export_freebsd_arm64.go index 6cb6dc1d..5b5b27fb 100755 --- a/pkg/syscall/go121_export_freebsd_arm64.go +++ b/pkg/syscall/go121_export_freebsd_arm64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_freebsd_riscv64.go b/pkg/syscall/go121_export_freebsd_riscv64.go index 6cb6dc1d..5b5b27fb 100755 --- a/pkg/syscall/go121_export_freebsd_riscv64.go +++ b/pkg/syscall/go121_export_freebsd_riscv64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_illumos_amd64.go b/pkg/syscall/go121_export_illumos_amd64.go index 3735bc9b..08afc2bb 100755 --- a/pkg/syscall/go121_export_illumos_amd64.go +++ b/pkg/syscall/go121_export_illumos_amd64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_ios_amd64.go b/pkg/syscall/go121_export_ios_amd64.go index 8c618d63..5d44c957 100755 --- a/pkg/syscall/go121_export_ios_amd64.go +++ b/pkg/syscall/go121_export_ios_amd64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_ios_arm64.go b/pkg/syscall/go121_export_ios_arm64.go index 95eed053..fab013d7 100755 --- a/pkg/syscall/go121_export_ios_arm64.go +++ b/pkg/syscall/go121_export_ios_arm64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_js_wasm.go b/pkg/syscall/go121_export_js_wasm.go index 7f68d730..cf4d4de3 100755 --- a/pkg/syscall/go121_export_js_wasm.go +++ b/pkg/syscall/go121_export_js_wasm.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_linux_386.go b/pkg/syscall/go121_export_linux_386.go index 6f933412..ed2574c7 100755 --- a/pkg/syscall/go121_export_linux_386.go +++ b/pkg/syscall/go121_export_linux_386.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_linux_amd64.go b/pkg/syscall/go121_export_linux_amd64.go index f955b75e..5dd92f31 100755 --- a/pkg/syscall/go121_export_linux_amd64.go +++ b/pkg/syscall/go121_export_linux_amd64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_linux_arm.go b/pkg/syscall/go121_export_linux_arm.go index 75c624e7..c2242db9 100755 --- a/pkg/syscall/go121_export_linux_arm.go +++ b/pkg/syscall/go121_export_linux_arm.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_linux_arm64.go b/pkg/syscall/go121_export_linux_arm64.go index 52ad2ac1..f07a839c 100755 --- a/pkg/syscall/go121_export_linux_arm64.go +++ b/pkg/syscall/go121_export_linux_arm64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_linux_loong64.go b/pkg/syscall/go121_export_linux_loong64.go index 6c19d038..56fbd24d 100755 --- a/pkg/syscall/go121_export_linux_loong64.go +++ b/pkg/syscall/go121_export_linux_loong64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_linux_mips.go b/pkg/syscall/go121_export_linux_mips.go index c056aae3..fc9f1673 100755 --- a/pkg/syscall/go121_export_linux_mips.go +++ b/pkg/syscall/go121_export_linux_mips.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_linux_mips64.go b/pkg/syscall/go121_export_linux_mips64.go index bf1c1f2a..03004db0 100755 --- a/pkg/syscall/go121_export_linux_mips64.go +++ b/pkg/syscall/go121_export_linux_mips64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_linux_mips64le.go b/pkg/syscall/go121_export_linux_mips64le.go index bf1c1f2a..03004db0 100755 --- a/pkg/syscall/go121_export_linux_mips64le.go +++ b/pkg/syscall/go121_export_linux_mips64le.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_linux_mipsle.go b/pkg/syscall/go121_export_linux_mipsle.go index c056aae3..fc9f1673 100755 --- a/pkg/syscall/go121_export_linux_mipsle.go +++ b/pkg/syscall/go121_export_linux_mipsle.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_linux_ppc64.go b/pkg/syscall/go121_export_linux_ppc64.go index 78fb4e63..b271470e 100755 --- a/pkg/syscall/go121_export_linux_ppc64.go +++ b/pkg/syscall/go121_export_linux_ppc64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_linux_ppc64le.go b/pkg/syscall/go121_export_linux_ppc64le.go index 1b42fd18..dfeeb0bf 100755 --- a/pkg/syscall/go121_export_linux_ppc64le.go +++ b/pkg/syscall/go121_export_linux_ppc64le.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_linux_riscv64.go b/pkg/syscall/go121_export_linux_riscv64.go index ecfbf8d8..78a3769a 100755 --- a/pkg/syscall/go121_export_linux_riscv64.go +++ b/pkg/syscall/go121_export_linux_riscv64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_linux_s390x.go b/pkg/syscall/go121_export_linux_s390x.go index 38a49f05..0ddef557 100755 --- a/pkg/syscall/go121_export_linux_s390x.go +++ b/pkg/syscall/go121_export_linux_s390x.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_netbsd_386.go b/pkg/syscall/go121_export_netbsd_386.go index 030a07c1..41a46243 100755 --- a/pkg/syscall/go121_export_netbsd_386.go +++ b/pkg/syscall/go121_export_netbsd_386.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_netbsd_amd64.go b/pkg/syscall/go121_export_netbsd_amd64.go index 355b8666..54d65603 100755 --- a/pkg/syscall/go121_export_netbsd_amd64.go +++ b/pkg/syscall/go121_export_netbsd_amd64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_netbsd_arm.go b/pkg/syscall/go121_export_netbsd_arm.go index e7b420c1..4a0b5023 100755 --- a/pkg/syscall/go121_export_netbsd_arm.go +++ b/pkg/syscall/go121_export_netbsd_arm.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_netbsd_arm64.go b/pkg/syscall/go121_export_netbsd_arm64.go index 355b8666..54d65603 100755 --- a/pkg/syscall/go121_export_netbsd_arm64.go +++ b/pkg/syscall/go121_export_netbsd_arm64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_openbsd_386.go b/pkg/syscall/go121_export_openbsd_386.go index f7f57aea..5992642f 100755 --- a/pkg/syscall/go121_export_openbsd_386.go +++ b/pkg/syscall/go121_export_openbsd_386.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_openbsd_amd64.go b/pkg/syscall/go121_export_openbsd_amd64.go index b2b622f0..0a0f73d2 100755 --- a/pkg/syscall/go121_export_openbsd_amd64.go +++ b/pkg/syscall/go121_export_openbsd_amd64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_openbsd_arm.go b/pkg/syscall/go121_export_openbsd_arm.go index 848ccaf3..9d8ea74c 100755 --- a/pkg/syscall/go121_export_openbsd_arm.go +++ b/pkg/syscall/go121_export_openbsd_arm.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_openbsd_arm64.go b/pkg/syscall/go121_export_openbsd_arm64.go index 70fca993..4996db65 100755 --- a/pkg/syscall/go121_export_openbsd_arm64.go +++ b/pkg/syscall/go121_export_openbsd_arm64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_plan9_386.go b/pkg/syscall/go121_export_plan9_386.go index 0bd06e92..fee500af 100755 --- a/pkg/syscall/go121_export_plan9_386.go +++ b/pkg/syscall/go121_export_plan9_386.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_plan9_amd64.go b/pkg/syscall/go121_export_plan9_amd64.go index 0bd06e92..fee500af 100755 --- a/pkg/syscall/go121_export_plan9_amd64.go +++ b/pkg/syscall/go121_export_plan9_amd64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_plan9_arm.go b/pkg/syscall/go121_export_plan9_arm.go index 0bd06e92..fee500af 100755 --- a/pkg/syscall/go121_export_plan9_arm.go +++ b/pkg/syscall/go121_export_plan9_arm.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_solaris_amd64.go b/pkg/syscall/go121_export_solaris_amd64.go index 8fc9f27f..4f533556 100755 --- a/pkg/syscall/go121_export_solaris_amd64.go +++ b/pkg/syscall/go121_export_solaris_amd64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_wasip1_wasm.go b/pkg/syscall/go121_export_wasip1_wasm.go index ff3504d7..121fd9fe 100755 --- a/pkg/syscall/go121_export_wasip1_wasm.go +++ b/pkg/syscall/go121_export_wasip1_wasm.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_windows_386.go b/pkg/syscall/go121_export_windows_386.go index d39ab2ac..0a3ca105 100755 --- a/pkg/syscall/go121_export_windows_386.go +++ b/pkg/syscall/go121_export_windows_386.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_windows_amd64.go b/pkg/syscall/go121_export_windows_amd64.go index d39ab2ac..0a3ca105 100755 --- a/pkg/syscall/go121_export_windows_amd64.go +++ b/pkg/syscall/go121_export_windows_amd64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_windows_arm.go b/pkg/syscall/go121_export_windows_arm.go index d39ab2ac..0a3ca105 100755 --- a/pkg/syscall/go121_export_windows_arm.go +++ b/pkg/syscall/go121_export_windows_arm.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go121_export_windows_arm64.go b/pkg/syscall/go121_export_windows_arm64.go index d39ab2ac..0a3ca105 100755 --- a/pkg/syscall/go121_export_windows_arm64.go +++ b/pkg/syscall/go121_export_windows_arm64.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package syscall diff --git a/pkg/syscall/go122_export_aix_ppc64.go b/pkg/syscall/go122_export_aix_ppc64.go new file mode 100755 index 00000000..9bcf4528 --- /dev/null +++ b/pkg/syscall/go122_export_aix_ppc64.go @@ -0,0 +1,1392 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid64_t": reflect.TypeOf((*q.Fsid64_t)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfMsgHdr": reflect.TypeOf((*q.IfMsgHdr)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "StTimespec_t": reflect.TypeOf((*q.StTimespec_t)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timeval32": reflect.TypeOf((*q.Timeval32)(nil)).Elem(), + "Timezone": reflect.TypeOf((*q.Timezone)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getkerninfo": reflect.ValueOf(q.Getkerninfo), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Kill": reflect.ValueOf(q.Kill), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECLONEME": {reflect.TypeOf(q.ECLONEME), constant.MakeInt64(int64(q.ECLONEME))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "ECORRUPT": {reflect.TypeOf(q.ECORRUPT), constant.MakeInt64(int64(q.ECORRUPT))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDREQ": {reflect.TypeOf(q.EDESTADDREQ), constant.MakeInt64(int64(q.EDESTADDREQ))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDIST": {reflect.TypeOf(q.EDIST), constant.MakeInt64(int64(q.EDIST))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFORMAT": {reflect.TypeOf(q.EFORMAT), constant.MakeInt64(int64(q.EFORMAT))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIA": {reflect.TypeOf(q.EMEDIA), constant.MakeInt64(int64(q.EMEDIA))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCONNECT": {reflect.TypeOf(q.ENOCONNECT), constant.MakeInt64(int64(q.ENOCONNECT))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTREADY": {reflect.TypeOf(q.ENOTREADY), constant.MakeInt64(int64(q.ENOTREADY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTRUST": {reflect.TypeOf(q.ENOTRUST), constant.MakeInt64(int64(q.ENOTRUST))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESAD": {reflect.TypeOf(q.ESAD), constant.MakeInt64(int64(q.ESAD))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESOFT": {reflect.TypeOf(q.ESOFT), constant.MakeInt64(int64(q.ESOFT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESYSERROR": {reflect.TypeOf(q.ESYSERROR), constant.MakeInt64(int64(q.ESYSERROR))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EWRPROTECT": {reflect.TypeOf(q.EWRPROTECT), constant.MakeInt64(int64(q.EWRPROTECT))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGAIO": {reflect.TypeOf(q.SIGAIO), constant.MakeInt64(int64(q.SIGAIO))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGALRM1": {reflect.TypeOf(q.SIGALRM1), constant.MakeInt64(int64(q.SIGALRM1))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCAPI": {reflect.TypeOf(q.SIGCAPI), constant.MakeInt64(int64(q.SIGCAPI))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGCPUFAIL": {reflect.TypeOf(q.SIGCPUFAIL), constant.MakeInt64(int64(q.SIGCPUFAIL))}, + "SIGDANGER": {reflect.TypeOf(q.SIGDANGER), constant.MakeInt64(int64(q.SIGDANGER))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGGRANT": {reflect.TypeOf(q.SIGGRANT), constant.MakeInt64(int64(q.SIGGRANT))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOINT": {reflect.TypeOf(q.SIGIOINT), constant.MakeInt64(int64(q.SIGIOINT))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKAP": {reflect.TypeOf(q.SIGKAP), constant.MakeInt64(int64(q.SIGKAP))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGLOST": {reflect.TypeOf(q.SIGLOST), constant.MakeInt64(int64(q.SIGLOST))}, + "SIGMAX": {reflect.TypeOf(q.SIGMAX), constant.MakeInt64(int64(q.SIGMAX))}, + "SIGMAX32": {reflect.TypeOf(q.SIGMAX32), constant.MakeInt64(int64(q.SIGMAX32))}, + "SIGMAX64": {reflect.TypeOf(q.SIGMAX64), constant.MakeInt64(int64(q.SIGMAX64))}, + "SIGMIGRATE": {reflect.TypeOf(q.SIGMIGRATE), constant.MakeInt64(int64(q.SIGMIGRATE))}, + "SIGMSG": {reflect.TypeOf(q.SIGMSG), constant.MakeInt64(int64(q.SIGMSG))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPRE": {reflect.TypeOf(q.SIGPRE), constant.MakeInt64(int64(q.SIGPRE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPTY": {reflect.TypeOf(q.SIGPTY), constant.MakeInt64(int64(q.SIGPTY))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGRECONFIG": {reflect.TypeOf(q.SIGRECONFIG), constant.MakeInt64(int64(q.SIGRECONFIG))}, + "SIGRETRACT": {reflect.TypeOf(q.SIGRETRACT), constant.MakeInt64(int64(q.SIGRETRACT))}, + "SIGSAK": {reflect.TypeOf(q.SIGSAK), constant.MakeInt64(int64(q.SIGSAK))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSOUND": {reflect.TypeOf(q.SIGSOUND), constant.MakeInt64(int64(q.SIGSOUND))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGSYSERROR": {reflect.TypeOf(q.SIGSYSERROR), constant.MakeInt64(int64(q.SIGSYSERROR))}, + "SIGTALRM": {reflect.TypeOf(q.SIGTALRM), constant.MakeInt64(int64(q.SIGTALRM))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVIRT": {reflect.TypeOf(q.SIGVIRT), constant.MakeInt64(int64(q.SIGVIRT))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWAITING": {reflect.TypeOf(q.SIGWAITING), constant.MakeInt64(int64(q.SIGWAITING))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_BYPASS": {"untyped int", constant.MakeInt64(int64(q.AF_BYPASS))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_INTF": {"untyped int", constant.MakeInt64(int64(q.AF_INTF))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NDD": {"untyped int", constant.MakeInt64(int64(q.AF_NDD))}, + "AF_NETWARE": {"untyped int", constant.MakeInt64(int64(q.AF_NETWARE))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_RIF": {"untyped int", constant.MakeInt64(int64(q.AF_RIF))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_802_3": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_802_3))}, + "ARPHRD_802_5": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_802_5))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.CSIOCGIFCONF))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSMAP_DIR": {"untyped string", constant.MakeString(string(q.CSMAP_DIR))}, + "CSTART": {"untyped rune", constant.MakeInt64(int64(q.CSTART))}, + "CSTOP": {"untyped rune", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ECH_ICMPID": {"untyped int", constant.MakeInt64(int64(q.ECH_ICMPID))}, + "ETHERNET_CSMACD": {"untyped int", constant.MakeInt64(int64(q.ETHERNET_CSMACD))}, + "EVENP": {"untyped int", constant.MakeInt64(int64(q.EVENP))}, + "EXCONTINUE": {"untyped int", constant.MakeInt64(int64(q.EXCONTINUE))}, + "EXDLOK": {"untyped int", constant.MakeInt64(int64(q.EXDLOK))}, + "EXIO": {"untyped int", constant.MakeInt64(int64(q.EXIO))}, + "EXPGIO": {"untyped int", constant.MakeInt64(int64(q.EXPGIO))}, + "EXRESUME": {"untyped int", constant.MakeInt64(int64(q.EXRESUME))}, + "EXRETURN": {"untyped int", constant.MakeInt64(int64(q.EXRETURN))}, + "EXSIG": {"untyped int", constant.MakeInt64(int64(q.EXSIG))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTRAP": {"untyped int", constant.MakeInt64(int64(q.EXTRAP))}, + "EYEC_RTENTRYA": {"untyped int", constant.MakeInt64(int64(q.EYEC_RTENTRYA))}, + "EYEC_RTENTRYF": {"untyped int", constant.MakeInt64(int64(q.EYEC_RTENTRYF))}, + "E_ACC": {"untyped int", constant.MakeInt64(int64(q.E_ACC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHBAND": {"untyped int", constant.MakeInt64(int64(q.FLUSHBAND))}, + "FLUSHLOW": {"untyped int", constant.MakeInt64(int64(q.FLUSHLOW))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "FLUSHR": {"untyped int", constant.MakeInt64(int64(q.FLUSHR))}, + "FLUSHRW": {"untyped int", constant.MakeInt64(int64(q.FLUSHRW))}, + "FLUSHW": {"untyped int", constant.MakeInt64(int64(q.FLUSHW))}, + "F_CLOSEM": {"untyped int", constant.MakeInt64(int64(q.F_CLOSEM))}, + "F_DUP2FD": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_TSTLK": {"untyped int", constant.MakeInt64(int64(q.F_TSTLK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICMP6_SEC_SEND_DEL": {"untyped int", constant.MakeInt64(int64(q.ICMP6_SEC_SEND_DEL))}, + "ICMP6_SEC_SEND_GET": {"untyped int", constant.MakeInt64(int64(q.ICMP6_SEC_SEND_GET))}, + "ICMP6_SEC_SEND_SET": {"untyped int", constant.MakeInt64(int64(q.ICMP6_SEC_SEND_SET))}, + "ICMP6_SEC_SEND_SET_CGA_ADDR": {"untyped int", constant.MakeInt64(int64(q.ICMP6_SEC_SEND_SET_CGA_ADDR))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_FIRSTALIAS": {"untyped int", constant.MakeInt64(int64(q.IFA_FIRSTALIAS))}, + "IFA_ROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_ROUTE))}, + "IFF_64BIT": {"untyped int", constant.MakeInt64(int64(q.IFF_64BIT))}, + "IFF_ALLCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLCAST))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BPF": {"untyped int", constant.MakeInt64(int64(q.IFF_BPF))}, + "IFF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_BRIDGE))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_CHECKSUM_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.IFF_CHECKSUM_OFFLOAD))}, + "IFF_D1": {"untyped int", constant.MakeInt64(int64(q.IFF_D1))}, + "IFF_D2": {"untyped int", constant.MakeInt64(int64(q.IFF_D2))}, + "IFF_D3": {"untyped int", constant.MakeInt64(int64(q.IFF_D3))}, + "IFF_D4": {"untyped int", constant.MakeInt64(int64(q.IFF_D4))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DEVHEALTH": {"untyped int", constant.MakeInt64(int64(q.IFF_DEVHEALTH))}, + "IFF_DO_HW_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_DO_HW_LOOPBACK))}, + "IFF_GROUP_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IFF_GROUP_ROUTING))}, + "IFF_IFBUFMGT": {"untyped int", constant.MakeInt64(int64(q.IFF_IFBUFMGT))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_NOECHO))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_PSEG": {"untyped int", constant.MakeInt64(int64(q.IFF_PSEG))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_SNAP": {"untyped int", constant.MakeInt64(int64(q.IFF_SNAP))}, + "IFF_TCP_DISABLE_CKSUM": {"untyped int", constant.MakeInt64(int64(q.IFF_TCP_DISABLE_CKSUM))}, + "IFF_TCP_NOCKSUM": {"untyped int", constant.MakeInt64(int64(q.IFF_TCP_NOCKSUM))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VIPA": {"untyped int", constant.MakeInt64(int64(q.IFF_VIPA))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFO_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IFO_FLUSH))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CLUSTER": {"untyped int", constant.MakeInt64(int64(q.IFT_CLUSTER))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FCS": {"untyped int", constant.MakeInt64(int64(q.IFT_FCS))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_GIFTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_GIFTUNNEL))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HF": {"untyped int", constant.MakeInt64(int64(q.IFT_HF))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IB": {"untyped int", constant.MakeInt64(int64(q.IFT_IB))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SN": {"untyped int", constant.MakeInt64(int64(q.IFT_SN))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SP": {"untyped int", constant.MakeInt64(int64(q.IFT_SP))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_VIPA": {"untyped int", constant.MakeInt64(int64(q.IFT_VIPA))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_USE": {"untyped int", constant.MakeInt64(int64(q.IN_USE))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_BIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BIP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GIF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GIF))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LOCAL))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_QOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_QOS))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADDR_PREFERENCES": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDR_PREFERENCES))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AIXRAWSOCKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_AIXRAWSOCKET))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FLOWINFO_FLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_FLOWLABEL))}, + "IPV6_FLOWINFO_PRIFLOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_PRIFLOW))}, + "IPV6_FLOWINFO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_PRIORITY))}, + "IPV6_FLOWINFO_SRFLAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_SRFLAG))}, + "IPV6_FLOWINFO_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_VERSION))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MIPDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIPDSTOPTS))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_NOPROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_NOPROBE))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTOPTIONS))}, + "IPV6_PRIORITY_10": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_10))}, + "IPV6_PRIORITY_11": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_11))}, + "IPV6_PRIORITY_12": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_12))}, + "IPV6_PRIORITY_13": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_13))}, + "IPV6_PRIORITY_14": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_14))}, + "IPV6_PRIORITY_15": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_15))}, + "IPV6_PRIORITY_8": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_8))}, + "IPV6_PRIORITY_9": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_9))}, + "IPV6_PRIORITY_BULK": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_BULK))}, + "IPV6_PRIORITY_CONTROL": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_CONTROL))}, + "IPV6_PRIORITY_FILLER": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_FILLER))}, + "IPV6_PRIORITY_INTERACTIVE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_INTERACTIVE))}, + "IPV6_PRIORITY_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_RESERVED1))}, + "IPV6_PRIORITY_RESERVED2": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_RESERVED2))}, + "IPV6_PRIORITY_UNATTENDED": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_UNATTENDED))}, + "IPV6_PRIORITY_UNCHARACTERIZED": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_UNCHARACTERIZED))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVHOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPS))}, + "IPV6_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVIF))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVSRCRT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVSRCRT))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RTHDR_TYPE_2": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_2))}, + "IPV6_SENDIF": {"untyped int", constant.MakeInt64(int64(q.IPV6_SENDIF))}, + "IPV6_SRFLAG_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_SRFLAG_LOOSE))}, + "IPV6_SRFLAG_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_SRFLAG_STRICT))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_TOKEN_LENGTH": {"untyped int", constant.MakeInt64(int64(q.IPV6_TOKEN_LENGTH))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IP_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IP_ADDRFORM))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_BROADCAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_BROADCAST_IF))}, + "IP_CACHE_LINE_SIZE": {"untyped int", constant.MakeInt64(int64(q.IP_CACHE_LINE_SIZE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DHCPMODE": {"untyped int", constant.MakeInt64(int64(q.IP_DHCPMODE))}, + "IP_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_DONTFRAG))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FINDPMTU": {"untyped int", constant.MakeInt64(int64(q.IP_FINDPMTU))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_INC_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_INC_MEMBERSHIPS))}, + "IP_INIT_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_INIT_MEMBERSHIP))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_HOPS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OPT": {"untyped int", constant.MakeInt64(int64(q.IP_OPT))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PMTUAGE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUAGE))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVIFINFO": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIFINFO))}, + "IP_RECVINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IP_RECVINTERFACE))}, + "IP_RECVMACHDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVMACHDR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_SOURCE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_SOURCE_FILTER))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_HOPS))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "I_FLUSH": {"untyped int", constant.MakeInt64(int64(q.I_FLUSH))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LNOFLSH": {"untyped int", constant.MakeInt64(int64(q.LNOFLSH))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MAP_VARIABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_VARIABLE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_ANY": {"untyped int", constant.MakeInt64(int64(q.MSG_ANY))}, + "MSG_ARGEXT": {"untyped int", constant.MakeInt64(int64(q.MSG_ARGEXT))}, + "MSG_BAND": {"untyped int", constant.MakeInt64(int64(q.MSG_BAND))}, + "MSG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.MSG_COMPAT))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_HIPRI": {"untyped int", constant.MakeInt64(int64(q.MSG_HIPRI))}, + "MSG_MAXIOVLEN": {"untyped int", constant.MakeInt64(int64(q.MSG_MAXIOVLEN))}, + "MSG_MPEG2": {"untyped int", constant.MakeInt64(int64(q.MSG_MPEG2))}, + "MSG_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MSG_NONBLOCK))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_EINTR": {"untyped int", constant.MakeInt64(int64(q.MS_EINTR))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_PER_SEC": {"untyped int", constant.MakeInt64(int64(q.MS_PER_SEC))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOFLUSH": {"untyped int", constant.MakeInt64(int64(q.NOFLUSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_CIO": {"untyped int", constant.MakeInt64(int64(q.O_CIO))}, + "O_CIOR": {"untyped int", constant.MakeInt64(int64(q.O_CIOR))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DEFER": {"untyped int", constant.MakeInt64(int64(q.O_DEFER))}, + "O_DELAY": {"untyped int", constant.MakeInt64(int64(q.O_DELAY))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EFSOFF": {"untyped int", constant.MakeInt64(int64(q.O_EFSOFF))}, + "O_EFSON": {"untyped int", constant.MakeInt64(int64(q.O_EFSON))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXEC": {"untyped int", constant.MakeInt64(int64(q.O_EXEC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.O_NOCACHE))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_NONE": {"untyped int", constant.MakeInt64(int64(q.O_NONE))}, + "O_NSHARE": {"untyped int", constant.MakeInt64(int64(q.O_NSHARE))}, + "O_RAW": {"untyped int", constant.MakeInt64(int64(q.O_RAW))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSHARE": {"untyped int", constant.MakeInt64(int64(q.O_RSHARE))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SEARCH": {"untyped int", constant.MakeInt64(int64(q.O_SEARCH))}, + "O_SNAPSHOT": {"untyped int", constant.MakeInt64(int64(q.O_SNAPSHOT))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_TTY_INIT": {"untyped int", constant.MakeInt64(int64(q.O_TTY_INIT))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PAREXT": {"untyped int", constant.MakeInt64(int64(q.PAREXT))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_64BIT": {"untyped int", constant.MakeInt64(int64(q.PR_64BIT))}, + "PR_ADDR": {"untyped int", constant.MakeInt64(int64(q.PR_ADDR))}, + "PR_ARGEXT": {"untyped int", constant.MakeInt64(int64(q.PR_ARGEXT))}, + "PR_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.PR_ATOMIC))}, + "PR_CONNREQUIRED": {"untyped int", constant.MakeInt64(int64(q.PR_CONNREQUIRED))}, + "PR_FASTHZ": {"untyped int", constant.MakeInt64(int64(q.PR_FASTHZ))}, + "PR_INP": {"untyped int", constant.MakeInt64(int64(q.PR_INP))}, + "PR_INTRLEVEL": {"untyped int", constant.MakeInt64(int64(q.PR_INTRLEVEL))}, + "PR_MLS": {"untyped int", constant.MakeInt64(int64(q.PR_MLS))}, + "PR_MLS_1_LABEL": {"untyped int", constant.MakeInt64(int64(q.PR_MLS_1_LABEL))}, + "PR_NOEOR": {"untyped int", constant.MakeInt64(int64(q.PR_NOEOR))}, + "PR_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.PR_RIGHTS))}, + "PR_SLOWHZ": {"untyped int", constant.MakeInt64(int64(q.PR_SLOWHZ))}, + "PR_WANTRCVD": {"untyped int", constant.MakeInt64(int64(q.PR_WANTRCVD))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PT_ATTACH))}, + "PT_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PT_CLEAR))}, + "PT_COMMAND_MAX": {"untyped int", constant.MakeInt64(int64(q.PT_COMMAND_MAX))}, + "PT_CONTINUE": {"untyped int", constant.MakeInt64(int64(q.PT_CONTINUE))}, + "PT_DETACH": {"untyped int", constant.MakeInt64(int64(q.PT_DETACH))}, + "PT_GET_UKEY": {"untyped int", constant.MakeInt64(int64(q.PT_GET_UKEY))}, + "PT_KILL": {"untyped int", constant.MakeInt64(int64(q.PT_KILL))}, + "PT_LDINFO": {"untyped int", constant.MakeInt64(int64(q.PT_LDINFO))}, + "PT_LDXINFO": {"untyped int", constant.MakeInt64(int64(q.PT_LDXINFO))}, + "PT_MULTI": {"untyped int", constant.MakeInt64(int64(q.PT_MULTI))}, + "PT_NEXT": {"untyped int", constant.MakeInt64(int64(q.PT_NEXT))}, + "PT_QUERY": {"untyped int", constant.MakeInt64(int64(q.PT_QUERY))}, + "PT_READ_BLOCK": {"untyped int", constant.MakeInt64(int64(q.PT_READ_BLOCK))}, + "PT_READ_D": {"untyped int", constant.MakeInt64(int64(q.PT_READ_D))}, + "PT_READ_FPR": {"untyped int", constant.MakeInt64(int64(q.PT_READ_FPR))}, + "PT_READ_GPR": {"untyped int", constant.MakeInt64(int64(q.PT_READ_GPR))}, + "PT_READ_I": {"untyped int", constant.MakeInt64(int64(q.PT_READ_I))}, + "PT_REATT": {"untyped int", constant.MakeInt64(int64(q.PT_REATT))}, + "PT_REGSET": {"untyped int", constant.MakeInt64(int64(q.PT_REGSET))}, + "PT_SET": {"untyped int", constant.MakeInt64(int64(q.PT_SET))}, + "PT_STEP": {"untyped int", constant.MakeInt64(int64(q.PT_STEP))}, + "PT_TRACE_ME": {"untyped int", constant.MakeInt64(int64(q.PT_TRACE_ME))}, + "PT_WATCH": {"untyped int", constant.MakeInt64(int64(q.PT_WATCH))}, + "PT_WRITE_BLOCK": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_BLOCK))}, + "PT_WRITE_D": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_D))}, + "PT_WRITE_FPR": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_FPR))}, + "PT_WRITE_GPR": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_GPR))}, + "PT_WRITE_I": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_I))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.RTA_DOWNSTREAM))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_ACTIVE_DGD": {"untyped int", constant.MakeInt64(int64(q.RTF_ACTIVE_DGD))}, + "RTF_BCE": {"untyped int", constant.MakeInt64(int64(q.RTF_BCE))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_BUL": {"untyped int", constant.MakeInt64(int64(q.RTF_BUL))}, + "RTF_CLONE": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONE))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FREE_IN_PROG": {"untyped int", constant.MakeInt64(int64(q.RTF_FREE_IN_PROG))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PERMANENT6": {"untyped int", constant.MakeInt64(int64(q.RTF_PERMANENT6))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_SMALLMTU": {"untyped int", constant.MakeInt64(int64(q.RTF_SMALLMTU))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_STOPSRCH": {"untyped int", constant.MakeInt64(int64(q.RTF_STOPSRCH))}, + "RTF_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTF_UNREACHABLE))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTM_EXPIRE))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_GETNEXT": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEXT))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTLOST": {"untyped int", constant.MakeInt64(int64(q.RTM_RTLOST))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_SAMEADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_SAMEADDR))}, + "RTM_SET": {"untyped int", constant.MakeInt64(int64(q.RTM_SET))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTM_VERSION_GR": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION_GR))}, + "RTM_VERSION_GR_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION_GR_COMPAT))}, + "RTM_VERSION_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION_POLICY))}, + "RTM_VERSION_POLICY_EXT": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION_POLICY_EXT))}, + "RTM_VERSION_POLICY_PRFN": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION_POLICY_PRFN))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIGQUEUE_MAX": {"untyped int", constant.MakeInt64(int64(q.SIGQUEUE_MAX))}, + "SIOCADDIFVIPA": {"untyped int", constant.MakeInt64(int64(q.SIOCADDIFVIPA))}, + "SIOCADDMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMTU))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCADDNETID))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELIFVIPA": {"untyped int", constant.MakeInt64(int64(q.SIOCDELIFVIPA))}, + "SIOCDELMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMTU))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELPMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCDELPMTU))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDNETOPT": {"untyped int", constant.MakeInt64(int64(q.SIOCDNETOPT))}, + "SIOCDX25XLATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDX25XLATE))}, + "SIOCFIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCFIFADDR))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGETMTUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGETMTUS))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFADDRS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDRS))}, + "SIOCGIFBAUDRATE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBAUDRATE))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCONFGLOB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONFGLOB))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGIDLIST": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGIDLIST))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFOPTIONS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFOPTIONS))}, + "SIOCGISNO": {"untyped int", constant.MakeInt64(int64(q.SIOCGISNO))}, + "SIOCGLOADF": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOADF))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGNETOPT": {"untyped int", constant.MakeInt64(int64(q.SIOCGNETOPT))}, + "SIOCGNETOPT1": {"untyped int", constant.MakeInt64(int64(q.SIOCGNETOPT1))}, + "SIOCGNMTUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGNMTUS))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGSIZIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGSIZIFCONF))}, + "SIOCGSRCFILTER": {"untyped int", constant.MakeInt64(int64(q.SIOCGSRCFILTER))}, + "SIOCGTUNEPHASE": {"untyped int", constant.MakeInt64(int64(q.SIOCGTUNEPHASE))}, + "SIOCGX25XLATE": {"untyped int", constant.MakeInt64(int64(q.SIOCGX25XLATE))}, + "SIOCIFATTACH": {"untyped int", constant.MakeInt64(int64(q.SIOCIFATTACH))}, + "SIOCIFDETACH": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDETACH))}, + "SIOCIFGETPKEY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGETPKEY))}, + "SIOCIF_ATM_DARP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_ATM_DARP))}, + "SIOCIF_ATM_DUMPARP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_ATM_DUMPARP))}, + "SIOCIF_ATM_GARP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_ATM_GARP))}, + "SIOCIF_ATM_IDLE": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_ATM_IDLE))}, + "SIOCIF_ATM_SARP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_ATM_SARP))}, + "SIOCIF_ATM_SNMPARP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_ATM_SNMPARP))}, + "SIOCIF_ATM_SVC": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_ATM_SVC))}, + "SIOCIF_ATM_UBR": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_ATM_UBR))}, + "SIOCIF_DEVHEALTH": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_DEVHEALTH))}, + "SIOCIF_IB_ARP_INCOMP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_ARP_INCOMP))}, + "SIOCIF_IB_ARP_TIMER": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_ARP_TIMER))}, + "SIOCIF_IB_CLEAR_PINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_CLEAR_PINFO))}, + "SIOCIF_IB_DEL_ARP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_DEL_ARP))}, + "SIOCIF_IB_DEL_PINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_DEL_PINFO))}, + "SIOCIF_IB_DUMP_ARP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_DUMP_ARP))}, + "SIOCIF_IB_GET_ARP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_GET_ARP))}, + "SIOCIF_IB_GET_INFO": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_GET_INFO))}, + "SIOCIF_IB_GET_STATS": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_GET_STATS))}, + "SIOCIF_IB_NOTIFY_ADDR_REM": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_NOTIFY_ADDR_REM))}, + "SIOCIF_IB_RESET_STATS": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_RESET_STATS))}, + "SIOCIF_IB_RESIZE_CQ": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_RESIZE_CQ))}, + "SIOCIF_IB_SET_ARP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_SET_ARP))}, + "SIOCIF_IB_SET_PKEY": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_SET_PKEY))}, + "SIOCIF_IB_SET_PORT": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_SET_PORT))}, + "SIOCIF_IB_SET_QKEY": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_SET_QKEY))}, + "SIOCIF_IB_SET_QSIZE": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_SET_QSIZE))}, + "SIOCLISTIFVIPA": {"untyped int", constant.MakeInt64(int64(q.SIOCLISTIFVIPA))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSHIWAT": {"untyped int", constant.MakeUint64(uint64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFADDRORI": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDRORI))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGIDLIST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGIDLIST))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETDUMP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETDUMP))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFOPTIONS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFOPTIONS))}, + "SIOCSIFSUBCHAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSUBCHAN))}, + "SIOCSISNO": {"untyped int", constant.MakeInt64(int64(q.SIOCSISNO))}, + "SIOCSLOADF": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOADF))}, + "SIOCSLOWAT": {"untyped int", constant.MakeUint64(uint64(q.SIOCSLOWAT))}, + "SIOCSNETOPT": {"untyped int", constant.MakeInt64(int64(q.SIOCSNETOPT))}, + "SIOCSPGRP": {"untyped int", constant.MakeUint64(uint64(q.SIOCSPGRP))}, + "SIOCSX25XLATE": {"untyped int", constant.MakeInt64(int64(q.SIOCSX25XLATE))}, + "SOCK_CONN_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_CONN_DGRAM))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SO_AUDIT))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_CKSUMRECV": {"untyped int", constant.MakeInt64(int64(q.SO_CKSUMRECV))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_KERNACCEPT": {"untyped int", constant.MakeInt64(int64(q.SO_KERNACCEPT))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NOMULTIPATH": {"untyped int", constant.MakeInt64(int64(q.SO_NOMULTIPATH))}, + "SO_NOREUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_NOREUSEADDR))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERID": {"untyped int", constant.MakeInt64(int64(q.SO_PEERID))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_USE_IFBUFS": {"untyped int", constant.MakeInt64(int64(q.SO_USE_IFBUFS))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "S_BANDURG": {"untyped int", constant.MakeInt64(int64(q.S_BANDURG))}, + "S_EMODFMT": {"untyped int", constant.MakeInt64(int64(q.S_EMODFMT))}, + "S_ENFMT": {"untyped int", constant.MakeInt64(int64(q.S_ENFMT))}, + "S_ERROR": {"untyped int", constant.MakeInt64(int64(q.S_ERROR))}, + "S_HANGUP": {"untyped int", constant.MakeInt64(int64(q.S_HANGUP))}, + "S_HIPRI": {"untyped int", constant.MakeInt64(int64(q.S_HIPRI))}, + "S_ICRYPTO": {"untyped int", constant.MakeInt64(int64(q.S_ICRYPTO))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFJOURNAL": {"untyped int", constant.MakeInt64(int64(q.S_IFJOURNAL))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMPX": {"untyped int", constant.MakeInt64(int64(q.S_IFMPX))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFPDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFPDIR))}, + "S_IFPSDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFPSDIR))}, + "S_IFPSSDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFPSSDIR))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFSYSEA": {"untyped int", constant.MakeInt64(int64(q.S_IFSYSEA))}, + "S_INPUT": {"untyped int", constant.MakeInt64(int64(q.S_INPUT))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_ITCB": {"untyped int", constant.MakeInt64(int64(q.S_ITCB))}, + "S_ITP": {"untyped int", constant.MakeInt64(int64(q.S_ITP))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXACL": {"untyped int", constant.MakeInt64(int64(q.S_IXACL))}, + "S_IXATTR": {"untyped int", constant.MakeInt64(int64(q.S_IXATTR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXINTERFACE": {"untyped int", constant.MakeInt64(int64(q.S_IXINTERFACE))}, + "S_IXMOD": {"untyped int", constant.MakeInt64(int64(q.S_IXMOD))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "S_MSG": {"untyped int", constant.MakeInt64(int64(q.S_MSG))}, + "S_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.S_OUTPUT))}, + "S_RDBAND": {"untyped int", constant.MakeInt64(int64(q.S_RDBAND))}, + "S_RDNORM": {"untyped int", constant.MakeInt64(int64(q.S_RDNORM))}, + "S_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.S_RESERVED1))}, + "S_RESERVED2": {"untyped int", constant.MakeInt64(int64(q.S_RESERVED2))}, + "S_RESERVED3": {"untyped int", constant.MakeInt64(int64(q.S_RESERVED3))}, + "S_RESERVED4": {"untyped int", constant.MakeInt64(int64(q.S_RESERVED4))}, + "S_RESFMT1": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT1))}, + "S_RESFMT10": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT10))}, + "S_RESFMT11": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT11))}, + "S_RESFMT12": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT12))}, + "S_RESFMT2": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT2))}, + "S_RESFMT3": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT3))}, + "S_RESFMT4": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT4))}, + "S_RESFMT5": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT5))}, + "S_RESFMT6": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT6))}, + "S_RESFMT7": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT7))}, + "S_RESFMT8": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT8))}, + "S_WRBAND": {"untyped int", constant.MakeInt64(int64(q.S_WRBAND))}, + "S_WRNORM": {"untyped int", constant.MakeInt64(int64(q.S_WRNORM))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_24DAYS_WORTH_OF_SLOWTICKS": {"untyped int", constant.MakeInt64(int64(q.TCP_24DAYS_WORTH_OF_SLOWTICKS))}, + "TCP_ACLADD": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLADD))}, + "TCP_ACLBIND": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLBIND))}, + "TCP_ACLCLEAR": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLCLEAR))}, + "TCP_ACLDEL": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLDEL))}, + "TCP_ACLDENY": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLDENY))}, + "TCP_ACLFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLFLUSH))}, + "TCP_ACLGID": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLGID))}, + "TCP_ACLLS": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLLS))}, + "TCP_ACLSUBNET": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLSUBNET))}, + "TCP_ACLUID": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLUID))}, + "TCP_CWND_DF": {"untyped int", constant.MakeInt64(int64(q.TCP_CWND_DF))}, + "TCP_CWND_IF": {"untyped int", constant.MakeInt64(int64(q.TCP_CWND_IF))}, + "TCP_DELAY_ACK_FIN": {"untyped int", constant.MakeInt64(int64(q.TCP_DELAY_ACK_FIN))}, + "TCP_DELAY_ACK_SYN": {"untyped int", constant.MakeInt64(int64(q.TCP_DELAY_ACK_SYN))}, + "TCP_FASTNAME": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTNAME))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LSPRIV": {"untyped int", constant.MakeInt64(int64(q.TCP_LSPRIV))}, + "TCP_LUID": {"untyped int", constant.MakeInt64(int64(q.TCP_LUID))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXDF": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXDF))}, + "TCP_MAXIF": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXIF))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAXWINDOWSCALE": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWINDOWSCALE))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NODELAYACK": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAYACK))}, + "TCP_NOREDUCE_CWND_EXIT_FRXMT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOREDUCE_CWND_EXIT_FRXMT))}, + "TCP_NOREDUCE_CWND_IN_FRXMT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOREDUCE_CWND_IN_FRXMT))}, + "TCP_NOTENTER_SSTART": {"untyped int", constant.MakeInt64(int64(q.TCP_NOTENTER_SSTART))}, + "TCP_OPT": {"untyped int", constant.MakeInt64(int64(q.TCP_OPT))}, + "TCP_RFC1323": {"untyped int", constant.MakeInt64(int64(q.TCP_RFC1323))}, + "TCP_SETPRIV": {"untyped int", constant.MakeInt64(int64(q.TCP_SETPRIV))}, + "TCP_STDURG": {"untyped int", constant.MakeInt64(int64(q.TCP_STDURG))}, + "TCP_TIMESTAMP_OPTLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_TIMESTAMP_OPTLEN))}, + "TCP_UNSETPRIV": {"untyped int", constant.MakeInt64(int64(q.TCP_UNSETPRIV))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeUint64(uint64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCFLUSH": {"untyped int", constant.MakeUint64(uint64(q.TIOCFLUSH))}, + "TIOCGETC": {"untyped int", constant.MakeInt64(int64(q.TIOCGETC))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGETP": {"untyped int", constant.MakeInt64(int64(q.TIOCGETP))}, + "TIOCGLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCGLTC))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGSIZE))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCHPCL": {"untyped int", constant.MakeInt64(int64(q.TIOCHPCL))}, + "TIOCLBIC": {"untyped int", constant.MakeUint64(uint64(q.TIOCLBIC))}, + "TIOCLBIS": {"untyped int", constant.MakeUint64(uint64(q.TIOCLBIS))}, + "TIOCLGET": {"untyped int", constant.MakeInt64(int64(q.TIOCLGET))}, + "TIOCLSET": {"untyped int", constant.MakeUint64(uint64(q.TIOCLSET))}, + "TIOCMBIC": {"untyped int", constant.MakeUint64(uint64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeUint64(uint64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeUint64(uint64(q.TIOCMIWAIT))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeUint64(uint64(q.TIOCMODS))}, + "TIOCMSET": {"untyped int", constant.MakeUint64(uint64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeUint64(uint64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCREMOTE": {"untyped int", constant.MakeUint64(uint64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETC": {"untyped int", constant.MakeUint64(uint64(q.TIOCSETC))}, + "TIOCSETD": {"untyped int", constant.MakeUint64(uint64(q.TIOCSETD))}, + "TIOCSETN": {"untyped int", constant.MakeUint64(uint64(q.TIOCSETN))}, + "TIOCSETP": {"untyped int", constant.MakeUint64(uint64(q.TIOCSETP))}, + "TIOCSLTC": {"untyped int", constant.MakeUint64(uint64(q.TIOCSLTC))}, + "TIOCSPGRP": {"untyped int", constant.MakeUint64(uint64(q.TIOCSPGRP))}, + "TIOCSSIZE": {"untyped int", constant.MakeUint64(uint64(q.TIOCSSIZE))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTI": {"untyped int", constant.MakeUint64(uint64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeUint64(uint64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeUint64(uint64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCRD": {"untyped int", constant.MakeInt64(int64(q.VDISCRD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSTRT": {"untyped int", constant.MakeInt64(int64(q.VSTRT))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDELAY": {"untyped int", constant.MakeInt64(int64(q.VTDELAY))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERSE": {"untyped int", constant.MakeInt64(int64(q.VWERSE))}, + "WPARSTART": {"untyped int", constant.MakeInt64(int64(q.WPARSTART))}, + "WPARSTOP": {"untyped int", constant.MakeInt64(int64(q.WPARSTOP))}, + "WPARTTYNAME": {"untyped string", constant.MakeString(string(q.WPARTTYNAME))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_android_386.go b/pkg/syscall/go122_export_android_386.go new file mode 100755 index 00000000..e1c02161 --- /dev/null +++ b/pkg/syscall/go122_export_android_386.go @@ -0,0 +1,2266 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_PHY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_PHY))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "EPOLL_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.EPOLL_NONBLOCK))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_32BIT": {"untyped int", constant.MakeInt64(int64(q.MAP_32BIT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETFPXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPXREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETFPXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPXREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_THREAD_AREA))}, + "PTRACE_SINGLEBLOCK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLEBLOCK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_SYSEMU": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU))}, + "PTRACE_SYSEMU_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU_SINGLESTEP))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_BDFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_BDFLUSH))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN32))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FADVISE64_64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64_64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN32))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL64": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL64))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTATAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT64))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_FTIME))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FTRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE64))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID32))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETEUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID32))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID32))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETGROUPS32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS32))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID32))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRESUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID32))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID32))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_THREAD_AREA))}, + "SYS_GTTY": {"untyped int", constant.MakeInt64(int64(q.SYS_GTTY))}, + "SYS_IDLE": {"untyped int", constant.MakeInt64(int64(q.SYS_IDLE))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPERM": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPERM))}, + "SYS_IOPL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IPC": {"untyped int", constant.MakeInt64(int64(q.SYS_IPC))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LCHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN32))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_LOCK))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MADVISE1": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE1))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MMAP2": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP2))}, + "SYS_MODIFY_LDT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODIFY_LDT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MPX": {"untyped int", constant.MakeInt64(int64(q.SYS_MPX))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_NICE": {"untyped int", constant.MakeInt64(int64(q.SYS_NICE))}, + "SYS_OLDFSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDFSTAT))}, + "SYS_OLDLSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDLSTAT))}, + "SYS_OLDOLDUNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDOLDUNAME))}, + "SYS_OLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDSTAT))}, + "SYS_OLDUNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDUNAME))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROF": {"untyped int", constant.MakeInt64(int64(q.SYS_PROF))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_READDIR))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDFILE64": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE64))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID32))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETFSUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID32))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID32))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETGROUPS32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS32))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID32))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID32))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETRESUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID32))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETREUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID32))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID32))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_THREAD_AREA))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SGETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SGETMASK))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNAL))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKETCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETCALL))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_SSETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSETMASK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STIME": {"untyped int", constant.MakeInt64(int64(q.SYS_STIME))}, + "SYS_STTY": {"untyped int", constant.MakeInt64(int64(q.SYS_STTY))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE64))}, + "SYS_UGETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_UGETRLIMIT))}, + "SYS_ULIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_ULIMIT))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VM86": {"untyped int", constant.MakeInt64(int64(q.SYS_VM86))}, + "SYS_VM86OLD": {"untyped int", constant.MakeInt64(int64(q.SYS_VM86OLD))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITPID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITPID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LLSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS__LLSEEK))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_android_amd64.go b/pkg/syscall/go122_export_android_amd64.go new file mode 100755 index 00000000..3c7729f0 --- /dev/null +++ b/pkg/syscall/go122_export_android_amd64.go @@ -0,0 +1,2232 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_PHY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_PHY))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "EPOLL_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.EPOLL_NONBLOCK))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_32BIT": {"untyped int", constant.MakeInt64(int64(q.MAP_32BIT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ARCH_PRCTL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ARCH_PRCTL))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETFPXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPXREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETFPXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPXREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_THREAD_AREA))}, + "PTRACE_SINGLEBLOCK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLEBLOCK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_SYSEMU": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU))}, + "PTRACE_SYSEMU_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU_SINGLESTEP))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_ARCH_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_ARCH_PRCTL))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_CTL_OLD": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL_OLD))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EPOLL_WAIT_OLD": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT_OLD))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_THREAD_AREA))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPERM": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPERM))}, + "SYS_IOPL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODIFY_LDT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODIFY_LDT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NEWFSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NEWFSTATAT))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SECURITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SECURITY))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_THREAD_AREA))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TUXCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_TUXCALL))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_android_arm.go b/pkg/syscall/go122_export_android_arm.go new file mode 100755 index 00000000..4f5c57b3 --- /dev/null +++ b/pkg/syscall/go122_export_android_arm.go @@ -0,0 +1,2285 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_PHY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_PHY))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ELF_NGREG": {"untyped int", constant.MakeInt64(int64(q.ELF_NGREG))}, + "ELF_PRARGSZ": {"untyped int", constant.MakeInt64(int64(q.ELF_PRARGSZ))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "EPOLL_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.EPOLL_NONBLOCK))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_CLEAR_SECCOMP_FILTER": {"untyped int", constant.MakeInt64(int64(q.PR_CLEAR_SECCOMP_FILTER))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECCOMP_FILTER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP_FILTER))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SECCOMP_FILTER_EVENT": {"untyped int", constant.MakeInt64(int64(q.PR_SECCOMP_FILTER_EVENT))}, + "PR_SECCOMP_FILTER_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PR_SECCOMP_FILTER_SYSCALL))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECCOMP_FILTER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP_FILTER))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETCRUNCHREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETCRUNCHREGS))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETHBPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETHBPREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETVFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETVFPREGS))}, + "PTRACE_GETWMMXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETWMMXREGS))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SETCRUNCHREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETCRUNCHREGS))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETHBPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETHBPREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETVFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETVFPREGS))}, + "PTRACE_SETWMMXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETWMMXREGS))}, + "PTRACE_SET_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_SYSCALL))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_DATA_ADDR": {"untyped int", constant.MakeInt64(int64(q.PT_DATA_ADDR))}, + "PT_TEXT_ADDR": {"untyped int", constant.MakeInt64(int64(q.PT_TEXT_ADDR))}, + "PT_TEXT_END_ADDR": {"untyped int", constant.MakeInt64(int64(q.PT_TEXT_END_ADDR))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_ARM_FADVISE64_64": {"untyped int", constant.MakeInt64(int64(q.SYS_ARM_FADVISE64_64))}, + "SYS_ARM_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_ARM_SYNC_FILE_RANGE))}, + "SYS_BDFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_BDFLUSH))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN32))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN32))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL64": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL64))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTATAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT64))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FTRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE64))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID32))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETEUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID32))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID32))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETGROUPS32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS32))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID32))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRESUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID32))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID32))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IPC": {"untyped int", constant.MakeInt64(int64(q.SYS_IPC))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LCHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN32))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MMAP2": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP2))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_NICE": {"untyped int", constant.MakeInt64(int64(q.SYS_NICE))}, + "SYS_OABI_SYSCALL_BASE": {"untyped int", constant.MakeInt64(int64(q.SYS_OABI_SYSCALL_BASE))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PCICONFIG_IOBASE": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_IOBASE))}, + "SYS_PCICONFIG_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_READ))}, + "SYS_PCICONFIG_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_WRITE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_READDIR))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECV": {"untyped int", constant.MakeInt64(int64(q.SYS_RECV))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SEND))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDFILE64": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE64))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID32))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETFSUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID32))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID32))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETGROUPS32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS32))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID32))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID32))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETRESUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID32))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETREUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID32))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID32))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETCALL))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STIME": {"untyped int", constant.MakeInt64(int64(q.SYS_STIME))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL))}, + "SYS_SYSCALL_BASE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL_BASE))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE64))}, + "SYS_UGETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_UGETRLIMIT))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LLSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS__LLSEEK))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_android_arm64.go b/pkg/syscall/go122_export_android_arm64.go new file mode 100755 index 00000000..f05d4384 --- /dev/null +++ b/pkg/syscall/go122_export_android_arm64.go @@ -0,0 +1,2376 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatat": reflect.ValueOf(q.Fstatat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VSOCK": {"untyped int", constant.MakeInt64(int64(q.AF_VSOCK))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PRP))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_802_1Q_VLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_802_1Q_VLAN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BONDING": {"untyped int", constant.MakeInt64(int64(q.IFF_BONDING))}, + "IFF_BRIDGE_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_BRIDGE_PORT))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DISABLE_NETPOLL": {"untyped int", constant.MakeInt64(int64(q.IFF_DISABLE_NETPOLL))}, + "IFF_DONT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_DONT_BRIDGE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_EBRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_EBRIDGE))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_ISATAP": {"untyped int", constant.MakeInt64(int64(q.IFF_ISATAP))}, + "IFF_LIVE_ADDR_CHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_LIVE_ADDR_CHANGE))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MACVLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN))}, + "IFF_MACVLAN_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN_PORT))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MASTER_8023AD": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_8023AD))}, + "IFF_MASTER_ALB": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ALB))}, + "IFF_MASTER_ARPMON": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ARPMON))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_OVS_DATAPATH": {"untyped int", constant.MakeInt64(int64(q.IFF_OVS_DATAPATH))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_SLAVE_INACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_INACTIVE))}, + "IFF_SLAVE_NEEDARP": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_NEEDARP))}, + "IFF_SUPP_NOFCS": {"untyped int", constant.MakeInt64(int64(q.IFF_SUPP_NOFCS))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TEAM_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_TEAM_PORT))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_TX_SKB_SHARING": {"untyped int", constant.MakeInt64(int64(q.IFF_TX_SKB_SHARING))}, + "IFF_UNICAST_FLT": {"untyped int", constant.MakeInt64(int64(q.IFF_UNICAST_FLT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFF_WAN_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFF_WAN_HDLC))}, + "IFF_XMIT_DST_RELEASE": {"untyped int", constant.MakeInt64(int64(q.IFF_XMIT_DST_RELEASE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_BEETPH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BEETPH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_HUGE_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_MASK))}, + "MAP_HUGE_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_SHIFT))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TMPFILE": {"untyped int", constant.MakeInt64(int64(q.O_TMPFILE))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_MAX_PACING_RATE": {"untyped int", constant.MakeInt64(int64(q.SO_MAX_PACING_RATE))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_ARCH_SPECIFIC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_ARCH_SPECIFIC_SYSCALL))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BPF": {"untyped int", constant.MakeInt64(int64(q.SYS_BPF))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXECVEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVEAT))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FINIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_FINIT_MODULE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRANDOM": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRANDOM))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_KCMP": {"untyped int", constant.MakeInt64(int64(q.SYS_KCMP))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MEMFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_MEMFD_CREATE))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_RENAMEAT2": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT2))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETATTR))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETATTR))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.SYS_SECCOMP))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYNC_FILE_RANGE2": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE2))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_COOKIE_IN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_IN_ALWAYS))}, + "TCP_COOKIE_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MAX))}, + "TCP_COOKIE_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MIN))}, + "TCP_COOKIE_OUT_NEVER": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_OUT_NEVER))}, + "TCP_COOKIE_PAIR_SIZE": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_PAIR_SIZE))}, + "TCP_COOKIE_TRANSACTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_TRANSACTIONS))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_MSS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DEFAULT))}, + "TCP_MSS_DESIRED": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DESIRED))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUEUE_SEQ": {"untyped int", constant.MakeInt64(int64(q.TCP_QUEUE_SEQ))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_REPAIR": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR))}, + "TCP_REPAIR_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OPTIONS))}, + "TCP_REPAIR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_QUEUE))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_S_DATA_IN": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_IN))}, + "TCP_S_DATA_OUT": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_OUT))}, + "TCP_THIN_DUPACK": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_DUPACK))}, + "TCP_THIN_LINEAR_TIMEOUTS": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_LINEAR_TIMEOUTS))}, + "TCP_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_TIMESTAMP))}, + "TCP_USER_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_USER_TIMEOUT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_darwin_amd64.go b/pkg/syscall/go122_export_darwin_amd64.go new file mode 100755 index 00000000..b4e7dcb3 --- /dev/null +++ b/pkg/syscall/go122_export_darwin_amd64.go @@ -0,0 +1,1946 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "Fbootstraptransfer_t": reflect.TypeOf((*q.Fbootstraptransfer_t)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "Fstore_t": reflect.TypeOf((*q.Fstore_t)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "IfmaMsghdr2": reflect.TypeOf((*q.IfmaMsghdr2)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Log2phys_t": reflect.TypeOf((*q.Log2phys_t)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Radvisory_t": reflect.TypeOf((*q.Radvisory_t)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timeval32": reflect.TypeOf((*q.Timeval32)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exchangedata": reflect.ValueOf(q.Exchangedata), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setprivexec": reflect.ValueOf(q.Setprivexec), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADARCH": {reflect.TypeOf(q.EBADARCH), constant.MakeInt64(int64(q.EBADARCH))}, + "EBADEXEC": {reflect.TypeOf(q.EBADEXEC), constant.MakeInt64(int64(q.EBADEXEC))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMACHO": {reflect.TypeOf(q.EBADMACHO), constant.MakeInt64(int64(q.EBADMACHO))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDEVERR": {reflect.TypeOf(q.EDEVERR), constant.MakeInt64(int64(q.EDEVERR))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPOLICY": {reflect.TypeOf(q.ENOPOLICY), constant.MakeInt64(int64(q.ENOPOLICY))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "EPWROFF": {reflect.TypeOf(q.EPWROFF), constant.MakeInt64(int64(q.EPWROFF))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHLIBVERS": {reflect.TypeOf(q.ESHLIBVERS), constant.MakeInt64(int64(q.ESHLIBVERS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NDRV": {"untyped int", constant.MakeInt64(int64(q.AF_NDRV))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PPP": {"untyped int", constant.MakeInt64(int64(q.AF_PPP))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_RESERVED_36": {"untyped int", constant.MakeInt64(int64(q.AF_RESERVED_36))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.AF_SYSTEM))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_FS": {"untyped int", constant.MakeInt64(int64(q.EVFILT_FS))}, + "EVFILT_MACHPORT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_MACHPORT))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_THREADMARKER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_THREADMARKER))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_USER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_USER))}, + "EVFILT_VM": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VM))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG0": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG0))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_OOBAND": {"untyped int", constant.MakeInt64(int64(q.EV_OOBAND))}, + "EV_POLL": {"untyped int", constant.MakeInt64(int64(q.EV_POLL))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_ADDFILESIGS": {"untyped int", constant.MakeInt64(int64(q.F_ADDFILESIGS))}, + "F_ADDSIGS": {"untyped int", constant.MakeInt64(int64(q.F_ADDSIGS))}, + "F_ALLOCATEALL": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCATEALL))}, + "F_ALLOCATECONTIG": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCATECONTIG))}, + "F_CHKCLEAN": {"untyped int", constant.MakeInt64(int64(q.F_CHKCLEAN))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FLUSH_DATA": {"untyped int", constant.MakeInt64(int64(q.F_FLUSH_DATA))}, + "F_FREEZE_FS": {"untyped int", constant.MakeInt64(int64(q.F_FREEZE_FS))}, + "F_FULLFSYNC": {"untyped int", constant.MakeInt64(int64(q.F_FULLFSYNC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLKPID": {"untyped int", constant.MakeInt64(int64(q.F_GETLKPID))}, + "F_GETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_GETNOSIGPIPE))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETPATH": {"untyped int", constant.MakeInt64(int64(q.F_GETPATH))}, + "F_GETPATH_MTMINFO": {"untyped int", constant.MakeInt64(int64(q.F_GETPATH_MTMINFO))}, + "F_GETPROTECTIONCLASS": {"untyped int", constant.MakeInt64(int64(q.F_GETPROTECTIONCLASS))}, + "F_GLOBAL_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.F_GLOBAL_NOCACHE))}, + "F_LOG2PHYS": {"untyped int", constant.MakeInt64(int64(q.F_LOG2PHYS))}, + "F_LOG2PHYS_EXT": {"untyped int", constant.MakeInt64(int64(q.F_LOG2PHYS_EXT))}, + "F_MARKDEPENDENCY": {"untyped int", constant.MakeInt64(int64(q.F_MARKDEPENDENCY))}, + "F_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.F_NOCACHE))}, + "F_NODIRECT": {"untyped int", constant.MakeInt64(int64(q.F_NODIRECT))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_PATHPKG_CHECK": {"untyped int", constant.MakeInt64(int64(q.F_PATHPKG_CHECK))}, + "F_PEOFPOSMODE": {"untyped int", constant.MakeInt64(int64(q.F_PEOFPOSMODE))}, + "F_PREALLOCATE": {"untyped int", constant.MakeInt64(int64(q.F_PREALLOCATE))}, + "F_RDADVISE": {"untyped int", constant.MakeInt64(int64(q.F_RDADVISE))}, + "F_RDAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_RDAHEAD))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_READBOOTSTRAP": {"untyped int", constant.MakeInt64(int64(q.F_READBOOTSTRAP))}, + "F_SETBACKINGSTORE": {"untyped int", constant.MakeInt64(int64(q.F_SETBACKINGSTORE))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_SETNOSIGPIPE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETPROTECTIONCLASS": {"untyped int", constant.MakeInt64(int64(q.F_SETPROTECTIONCLASS))}, + "F_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.F_SETSIZE))}, + "F_THAW_FS": {"untyped int", constant.MakeInt64(int64(q.F_THAW_FS))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_VOLPOSMODE": {"untyped int", constant.MakeInt64(int64(q.F_VOLPOSMODE))}, + "F_WRITEBOOTSTRAP": {"untyped int", constant.MakeInt64(int64(q.F_WRITEBOOTSTRAP))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CELLULAR": {"untyped int", constant.MakeInt64(int64(q.IFT_CELLULAR))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PDP": {"untyped int", constant.MakeInt64(int64(q.IFT_PDP))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LINKLOCALNETNUM": {"untyped int", constant.MakeInt64(int64(q.IN_LINKLOCALNETNUM))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292NEXTHOP))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_BOUND_IF))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXOPTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXOPTHDR))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_GROUP_SRC_FILTER))}, + "IPV6_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_MEMBERSHIPS))}, + "IPV6_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_SOCK_SRC_FILTER))}, + "IPV6_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIN_MEMBERSHIPS))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IP_BOUND_IF))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_GROUP_SRC_FILTER))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MAX_SOCK_MUTE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_MUTE_FILTER))}, + "IP_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_SRC_FILTER))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_IFINDEX": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IFINDEX))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_NAT__XXX": {"untyped int", constant.MakeInt64(int64(q.IP_NAT__XXX))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OLD_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_ADD))}, + "IP_OLD_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_DEL))}, + "IP_OLD_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_FLUSH))}, + "IP_OLD_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_GET))}, + "IP_OLD_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_RESETLOG))}, + "IP_OLD_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_ZERO))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_RECVPKTINFO))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_STRIPHDR": {"untyped int", constant.MakeInt64(int64(q.IP_STRIPHDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRAFFIC_MGT_BACKGROUND": {"untyped int", constant.MakeInt64(int64(q.IP_TRAFFIC_MGT_BACKGROUND))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_CAN_REUSE": {"untyped int", constant.MakeInt64(int64(q.MADV_CAN_REUSE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_FREE_REUSABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE_REUSABLE))}, + "MADV_FREE_REUSE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE_REUSE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MADV_ZERO_WIRED_PAGES": {"untyped int", constant.MakeInt64(int64(q.MADV_ZERO_WIRED_PAGES))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_JIT": {"untyped int", constant.MakeInt64(int64(q.MAP_JIT))}, + "MAP_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCACHE))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_RESERVED0080": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0080))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_FLUSH": {"untyped int", constant.MakeInt64(int64(q.MSG_FLUSH))}, + "MSG_HAVEMORE": {"untyped int", constant.MakeInt64(int64(q.MSG_HAVEMORE))}, + "MSG_HOLD": {"untyped int", constant.MakeInt64(int64(q.MSG_HOLD))}, + "MSG_NEEDSA": {"untyped int", constant.MakeInt64(int64(q.MSG_NEEDSA))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_RCVMORE": {"untyped int", constant.MakeInt64(int64(q.MSG_RCVMORE))}, + "MSG_SEND": {"untyped int", constant.MakeInt64(int64(q.MSG_SEND))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITSTREAM": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITSTREAM))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_DEACTIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_DEACTIVATE))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_KILLPAGES": {"untyped int", constant.MakeInt64(int64(q.MS_KILLPAGES))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_DUMP2": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP2))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFLIST2": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST2))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_STAT": {"untyped int", constant.MakeInt64(int64(q.NET_RT_STAT))}, + "NET_RT_TRASH": {"untyped int", constant.MakeInt64(int64(q.NET_RT_TRASH))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ABSOLUTE": {"untyped int", constant.MakeInt64(int64(q.NOTE_ABSOLUTE))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXITSTATUS": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXITSTATUS))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FFAND": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFAND))}, + "NOTE_FFCOPY": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCOPY))}, + "NOTE_FFCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCTRLMASK))}, + "NOTE_FFLAGSMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFLAGSMASK))}, + "NOTE_FFNOP": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFNOP))}, + "NOTE_FFOR": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFOR))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_NONE": {"untyped int", constant.MakeInt64(int64(q.NOTE_NONE))}, + "NOTE_NSECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_NSECONDS))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_REAP": {"untyped int", constant.MakeInt64(int64(q.NOTE_REAP))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_RESOURCEEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_RESOURCEEND))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_SECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_SECONDS))}, + "NOTE_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.NOTE_SIGNAL))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRIGGER": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRIGGER))}, + "NOTE_USECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_USECONDS))}, + "NOTE_VM_ERROR": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_ERROR))}, + "NOTE_VM_PRESSURE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE))}, + "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE_SUDDEN_TERMINATE))}, + "NOTE_VM_PRESSURE_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE_TERMINATE))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_ALERT": {"untyped int", constant.MakeInt64(int64(q.O_ALERT))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EVTONLY": {"untyped int", constant.MakeInt64(int64(q.O_EVTONLY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_POPUP": {"untyped int", constant.MakeInt64(int64(q.O_POPUP))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.O_SYMLINK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PT_ATTACH))}, + "PT_ATTACHEXC": {"untyped int", constant.MakeInt64(int64(q.PT_ATTACHEXC))}, + "PT_CONTINUE": {"untyped int", constant.MakeInt64(int64(q.PT_CONTINUE))}, + "PT_DENY_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PT_DENY_ATTACH))}, + "PT_DETACH": {"untyped int", constant.MakeInt64(int64(q.PT_DETACH))}, + "PT_FIRSTMACH": {"untyped int", constant.MakeInt64(int64(q.PT_FIRSTMACH))}, + "PT_FORCEQUOTA": {"untyped int", constant.MakeInt64(int64(q.PT_FORCEQUOTA))}, + "PT_KILL": {"untyped int", constant.MakeInt64(int64(q.PT_KILL))}, + "PT_READ_D": {"untyped int", constant.MakeInt64(int64(q.PT_READ_D))}, + "PT_READ_I": {"untyped int", constant.MakeInt64(int64(q.PT_READ_I))}, + "PT_READ_U": {"untyped int", constant.MakeInt64(int64(q.PT_READ_U))}, + "PT_SIGEXC": {"untyped int", constant.MakeInt64(int64(q.PT_SIGEXC))}, + "PT_STEP": {"untyped int", constant.MakeInt64(int64(q.PT_STEP))}, + "PT_THUPDATE": {"untyped int", constant.MakeInt64(int64(q.PT_THUPDATE))}, + "PT_TRACE_ME": {"untyped int", constant.MakeInt64(int64(q.PT_TRACE_ME))}, + "PT_WRITE_D": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_D))}, + "PT_WRITE_I": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_I))}, + "PT_WRITE_U": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_U))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_CONDEMNED": {"untyped int", constant.MakeInt64(int64(q.RTF_CONDEMNED))}, + "RTF_DELCLONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DELCLONE))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_IFREF": {"untyped int", constant.MakeInt64(int64(q.RTF_IFREF))}, + "RTF_IFSCOPE": {"untyped int", constant.MakeInt64(int64(q.RTF_IFSCOPE))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WASCLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_WASCLONED))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_GET2": {"untyped int", constant.MakeInt64(int64(q.RTM_GET2))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_IFINFO2": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO2))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_NEWMADDR2": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR2))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMP_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP_MONOTONIC))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCARPIPLL": {"untyped int", constant.MakeInt64(int64(q.SIOCARPIPLL))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCAUTOADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAUTOADDR))}, + "SIOCAUTONETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCAUTONETMASK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVLAN))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFALTMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFALTMTU))}, + "SIOCGIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFASYNCMAP))}, + "SIOCGIFBOND": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBOND))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDEVMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDEVMTU))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFKPI": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFKPI))}, + "SIOCGIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGIFVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFVLAN))}, + "SIOCGIFWAKEFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFWAKEFLAGS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCRSLVMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCRSLVMULTI))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSETVLAN))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFALTMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFALTMTU))}, + "SIOCSIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFASYNCMAP))}, + "SIOCSIFBOND": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBOND))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFKPI": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFKPI))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFVLAN))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_DONTTRUNC": {"untyped int", constant.MakeInt64(int64(q.SO_DONTTRUNC))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LABEL": {"untyped int", constant.MakeInt64(int64(q.SO_LABEL))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LINGER_SEC": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER_SEC))}, + "SO_NKE": {"untyped int", constant.MakeInt64(int64(q.SO_NKE))}, + "SO_NOADDRERR": {"untyped int", constant.MakeInt64(int64(q.SO_NOADDRERR))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_NOTIFYCONFLICT": {"untyped int", constant.MakeInt64(int64(q.SO_NOTIFYCONFLICT))}, + "SO_NP_EXTENSIONS": {"untyped int", constant.MakeInt64(int64(q.SO_NP_EXTENSIONS))}, + "SO_NREAD": {"untyped int", constant.MakeInt64(int64(q.SO_NREAD))}, + "SO_NWRITE": {"untyped int", constant.MakeInt64(int64(q.SO_NWRITE))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERLABEL": {"untyped int", constant.MakeInt64(int64(q.SO_PEERLABEL))}, + "SO_RANDOMPORT": {"untyped int", constant.MakeInt64(int64(q.SO_RANDOMPORT))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_RESTRICTIONS": {"untyped int", constant.MakeInt64(int64(q.SO_RESTRICTIONS))}, + "SO_RESTRICT_DENYIN": {"untyped int", constant.MakeInt64(int64(q.SO_RESTRICT_DENYIN))}, + "SO_RESTRICT_DENYOUT": {"untyped int", constant.MakeInt64(int64(q.SO_RESTRICT_DENYOUT))}, + "SO_RESTRICT_DENYSET": {"untyped int", constant.MakeInt64(int64(q.SO_RESTRICT_DENYSET))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_REUSESHAREUID": {"untyped int", constant.MakeInt64(int64(q.SO_REUSESHAREUID))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMP_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP_MONOTONIC))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_UPCALLCLOSEWAIT": {"untyped int", constant.MakeInt64(int64(q.SO_UPCALLCLOSEWAIT))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_WANTMORE": {"untyped int", constant.MakeInt64(int64(q.SO_WANTMORE))}, + "SO_WANTOOBFLAG": {"untyped int", constant.MakeInt64(int64(q.SO_WANTOOBFLAG))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT_NOCANCEL))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCESS_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS_EXTENDED))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_PROFIL))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AIO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_CANCEL))}, + "SYS_AIO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_ERROR))}, + "SYS_AIO_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_FSYNC))}, + "SYS_AIO_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_READ))}, + "SYS_AIO_RETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_RETURN))}, + "SYS_AIO_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND))}, + "SYS_AIO_SUSPEND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND_NOCANCEL))}, + "SYS_AIO_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WRITE))}, + "SYS_ATGETMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_ATGETMSG))}, + "SYS_ATPGETREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPGETREQ))}, + "SYS_ATPGETRSP": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPGETRSP))}, + "SYS_ATPSNDREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPSNDREQ))}, + "SYS_ATPSNDRSP": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPSNDRSP))}, + "SYS_ATPUTMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPUTMSG))}, + "SYS_ATSOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_ATSOCKET))}, + "SYS_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT))}, + "SYS_AUDITCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITCTL))}, + "SYS_AUDITON": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITON))}, + "SYS_AUDIT_SESSION_JOIN": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_JOIN))}, + "SYS_AUDIT_SESSION_PORT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_PORT))}, + "SYS_AUDIT_SESSION_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_SELF))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BSDTHREAD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_CREATE))}, + "SYS_BSDTHREAD_REGISTER": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_REGISTER))}, + "SYS_BSDTHREAD_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_TERMINATE))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHMOD_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD_EXTENDED))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CHUD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHUD))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE_NOCANCEL))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CONNECT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT_NOCANCEL))}, + "SYS_COPYFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_COPYFILE))}, + "SYS_CSOPS": {"untyped int", constant.MakeInt64(int64(q.SYS_CSOPS))}, + "SYS_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EXCHANGEDATA": {"untyped int", constant.MakeInt64(int64(q.SYS_EXCHANGEDATA))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMOD_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD_EXTENDED))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL_NOCANCEL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FFSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FFSCTL))}, + "SYS_FGETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETATTRLIST))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FILEPORT_MAKEFD": {"untyped int", constant.MakeInt64(int64(q.SYS_FILEPORT_MAKEFD))}, + "SYS_FILEPORT_MAKEPORT": {"untyped int", constant.MakeInt64(int64(q.SYS_FILEPORT_MAKEPORT))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FSCTL))}, + "SYS_FSETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETATTRLIST))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSGETPATH": {"untyped int", constant.MakeInt64(int64(q.SYS_FSGETPATH))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64_EXTENDED))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSTATV": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATV))}, + "SYS_FSTAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT_EXTENDED))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FSYNC_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC_NOCANCEL))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GETATTRLIST))}, + "SYS_GETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT))}, + "SYS_GETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT_ADDR))}, + "SYS_GETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUID))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDIRENTRIES64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES64))}, + "SYS_GETDIRENTRIESATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIESATTR))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETFSSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT64))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETHOSTUUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETHOSTUUID))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLCID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLCID))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSGROUPS))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETWGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETWGROUPS))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_IDENTITYSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_IDENTITYSVC))}, + "SYS_INITGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_INITGROUPS))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPOLICYSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPOLICYSYS))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KDEBUG_TRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KDEBUG_TRACE))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KEVENT64": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT64))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LIO_LISTIO": {"untyped int", constant.MakeInt64(int64(q.SYS_LIO_LISTIO))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_LSTAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64_EXTENDED))}, + "SYS_LSTATV": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTATV))}, + "SYS_LSTAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT_EXTENDED))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MAXSYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MAXSYSCALL))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKCOMPLEX": {"untyped int", constant.MakeInt64(int64(q.SYS_MKCOMPLEX))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIR_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR_EXTENDED))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFO_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO_EXTENDED))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODWATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_MODWATCH))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGRCV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV_NOCANCEL))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSGSND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND_NOCANCEL))}, + "SYS_MSGSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSYS))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MSYNC_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC_NOCANCEL))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NFSCLNT": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSCLNT))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPEN_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_EXTENDED))}, + "SYS_OPEN_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_NOCANCEL))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PID_HIBERNATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_HIBERNATE))}, + "SYS_PID_RESUME": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_RESUME))}, + "SYS_PID_SHUTDOWN_SOCKETS": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_SHUTDOWN_SOCKETS))}, + "SYS_PID_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_SUSPEND))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POLL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL_NOCANCEL))}, + "SYS_POSIX_SPAWN": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_SPAWN))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREAD_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD_NOCANCEL))}, + "SYS_PROCESS_POLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_POLICY))}, + "SYS_PROC_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_PROC_INFO))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSYNCH_CVBROAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVBROAD))}, + "SYS_PSYNCH_CVCLRPREPOST": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVCLRPREPOST))}, + "SYS_PSYNCH_CVSIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVSIGNAL))}, + "SYS_PSYNCH_CVWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVWAIT))}, + "SYS_PSYNCH_MUTEXDROP": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_MUTEXDROP))}, + "SYS_PSYNCH_MUTEXWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_MUTEXWAIT))}, + "SYS_PSYNCH_RW_DOWNGRADE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_DOWNGRADE))}, + "SYS_PSYNCH_RW_LONGRDLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_LONGRDLOCK))}, + "SYS_PSYNCH_RW_RDLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_RDLOCK))}, + "SYS_PSYNCH_RW_UNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UNLOCK))}, + "SYS_PSYNCH_RW_UNLOCK2": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UNLOCK2))}, + "SYS_PSYNCH_RW_UPGRADE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UPGRADE))}, + "SYS_PSYNCH_RW_WRLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_WRLOCK))}, + "SYS_PSYNCH_RW_YIELDWRLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_YIELDWRLOCK))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE_NOCANCEL))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_READV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_READV_NOCANCEL))}, + "SYS_READ_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_READ_NOCANCEL))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVFROM_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM_NOCANCEL))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RECVMSG_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG_NOCANCEL))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SEARCHFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEARCHFS))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SELECT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT_NOCANCEL))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMSYS))}, + "SYS_SEM_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_CLOSE))}, + "SYS_SEM_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_DESTROY))}, + "SYS_SEM_GETVALUE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_GETVALUE))}, + "SYS_SEM_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_INIT))}, + "SYS_SEM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_OPEN))}, + "SYS_SEM_POST": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_POST))}, + "SYS_SEM_TRYWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_TRYWAIT))}, + "SYS_SEM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_UNLINK))}, + "SYS_SEM_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_WAIT))}, + "SYS_SEM_WAIT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_WAIT_NOCANCEL))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDMSG_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG_NOCANCEL))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SENDTO_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO_NOCANCEL))}, + "SYS_SETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SETATTRLIST))}, + "SYS_SETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT))}, + "SYS_SETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT_ADDR))}, + "SYS_SETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUID))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLCID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLCID))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETPRIVEXEC": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIVEXEC))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSGROUPS))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTID))}, + "SYS_SETTID_WITH_PID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTID_WITH_PID))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETWGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETWGROUPS))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SHARED_REGION_CHECK_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_SHARED_REGION_CHECK_NP))}, + "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_SHARED_REGION_MAP_AND_SLIDE_NP))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMSYS))}, + "SYS_SHM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_OPEN))}, + "SYS_SHM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_UNLINK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGSUSPEND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND_NOCANCEL))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_STACK_SNAPSHOT": {"untyped int", constant.MakeInt64(int64(q.SYS_STACK_SNAPSHOT))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64_EXTENDED))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STATV": {"untyped int", constant.MakeInt64(int64(q.SYS_STATV))}, + "SYS_STAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT_EXTENDED))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL))}, + "SYS_THREAD_SELFID": {"untyped int", constant.MakeInt64(int64(q.SYS_THREAD_SELFID))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMASK_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK_EXTENDED))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VM_PRESSURE_MONITOR": {"untyped int", constant.MakeInt64(int64(q.SYS_VM_PRESSURE_MONITOR))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT4_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4_NOCANCEL))}, + "SYS_WAITEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITEVENT))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITID_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID_NOCANCEL))}, + "SYS_WATCHEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_WATCHEVENT))}, + "SYS_WORKQ_KERNRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_WORKQ_KERNRETURN))}, + "SYS_WORKQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_WORKQ_OPEN))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_WRITEV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV_NOCANCEL))}, + "SYS_WRITE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE_NOCANCEL))}, + "SYS___DISABLE_THREADSIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___DISABLE_THREADSIGNAL))}, + "SYS___MAC_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_EXECVE))}, + "SYS___MAC_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GETFSSTAT))}, + "SYS___MAC_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FD))}, + "SYS___MAC_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FILE))}, + "SYS___MAC_GET_LCID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LCID))}, + "SYS___MAC_GET_LCTX": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LCTX))}, + "SYS___MAC_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LINK))}, + "SYS___MAC_GET_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_MOUNT))}, + "SYS___MAC_GET_PID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PID))}, + "SYS___MAC_GET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PROC))}, + "SYS___MAC_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_MOUNT))}, + "SYS___MAC_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FD))}, + "SYS___MAC_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FILE))}, + "SYS___MAC_SET_LCTX": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LCTX))}, + "SYS___MAC_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LINK))}, + "SYS___MAC_SET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_PROC))}, + "SYS___MAC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SYSCALL))}, + "SYS___OLD_SEMWAIT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___OLD_SEMWAIT_SIGNAL))}, + "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL))}, + "SYS___PTHREAD_CANCELED": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_CANCELED))}, + "SYS___PTHREAD_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_CHDIR))}, + "SYS___PTHREAD_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_FCHDIR))}, + "SYS___PTHREAD_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_KILL))}, + "SYS___PTHREAD_MARKCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_MARKCANCEL))}, + "SYS___PTHREAD_SIGMASK": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_SIGMASK))}, + "SYS___SEMWAIT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMWAIT_SIGNAL))}, + "SYS___SEMWAIT_SIGNAL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMWAIT_SIGNAL_NOCANCEL))}, + "SYS___SIGWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGWAIT))}, + "SYS___SIGWAIT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGWAIT_NOCANCEL))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFWHT": {"untyped int", constant.MakeInt64(int64(q.S_IFWHT))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISTXT": {"untyped int", constant.MakeInt64(int64(q.S_ISTXT))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofIfmaMsghdr2": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr2))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONNECTIONTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_CONNECTIONTIMEOUT))}, + "TCP_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MINMSSOVERLOAD": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSSOVERLOAD))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_RXT_CONNDROPTIME": {"untyped int", constant.MakeInt64(int64(q.TCP_RXT_CONNDROPTIME))}, + "TCP_RXT_FINDROP": {"untyped int", constant.MakeInt64(int64(q.TCP_RXT_FINDROP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDCDTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCDCDTIMESTAMP))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCDSIMICROCODE": {"untyped int", constant.MakeInt64(int64(q.TIOCDSIMICROCODE))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCIXOFF": {"untyped int", constant.MakeInt64(int64(q.TIOCIXOFF))}, + "TIOCIXON": {"untyped int", constant.MakeInt64(int64(q.TIOCIXON))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTYGNAME": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYGNAME))}, + "TIOCPTYGRANT": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYGRANT))}, + "TIOCPTYUNLK": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYUNLK))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCSCONS))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_darwin_arm64.go b/pkg/syscall/go122_export_darwin_arm64.go new file mode 100755 index 00000000..9ef90c11 --- /dev/null +++ b/pkg/syscall/go122_export_darwin_arm64.go @@ -0,0 +1,1954 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "Fbootstraptransfer_t": reflect.TypeOf((*q.Fbootstraptransfer_t)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "Fstore_t": reflect.TypeOf((*q.Fstore_t)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "IfmaMsghdr2": reflect.TypeOf((*q.IfmaMsghdr2)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Log2phys_t": reflect.TypeOf((*q.Log2phys_t)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Radvisory_t": reflect.TypeOf((*q.Radvisory_t)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timeval32": reflect.TypeOf((*q.Timeval32)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exchangedata": reflect.ValueOf(q.Exchangedata), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setprivexec": reflect.ValueOf(q.Setprivexec), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADARCH": {reflect.TypeOf(q.EBADARCH), constant.MakeInt64(int64(q.EBADARCH))}, + "EBADEXEC": {reflect.TypeOf(q.EBADEXEC), constant.MakeInt64(int64(q.EBADEXEC))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMACHO": {reflect.TypeOf(q.EBADMACHO), constant.MakeInt64(int64(q.EBADMACHO))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDEVERR": {reflect.TypeOf(q.EDEVERR), constant.MakeInt64(int64(q.EDEVERR))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPOLICY": {reflect.TypeOf(q.ENOPOLICY), constant.MakeInt64(int64(q.ENOPOLICY))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "EPWROFF": {reflect.TypeOf(q.EPWROFF), constant.MakeInt64(int64(q.EPWROFF))}, + "EQFULL": {reflect.TypeOf(q.EQFULL), constant.MakeInt64(int64(q.EQFULL))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHLIBVERS": {reflect.TypeOf(q.ESHLIBVERS), constant.MakeInt64(int64(q.ESHLIBVERS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NDRV": {"untyped int", constant.MakeInt64(int64(q.AF_NDRV))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PPP": {"untyped int", constant.MakeInt64(int64(q.AF_PPP))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_RESERVED_36": {"untyped int", constant.MakeInt64(int64(q.AF_RESERVED_36))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.AF_SYSTEM))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_UTUN": {"untyped int", constant.MakeInt64(int64(q.AF_UTUN))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_FS": {"untyped int", constant.MakeInt64(int64(q.EVFILT_FS))}, + "EVFILT_MACHPORT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_MACHPORT))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_THREADMARKER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_THREADMARKER))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_USER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_USER))}, + "EVFILT_VM": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VM))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG0": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG0))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_OOBAND": {"untyped int", constant.MakeInt64(int64(q.EV_OOBAND))}, + "EV_POLL": {"untyped int", constant.MakeInt64(int64(q.EV_POLL))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_ADDFILESIGS": {"untyped int", constant.MakeInt64(int64(q.F_ADDFILESIGS))}, + "F_ADDSIGS": {"untyped int", constant.MakeInt64(int64(q.F_ADDSIGS))}, + "F_ALLOCATEALL": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCATEALL))}, + "F_ALLOCATECONTIG": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCATECONTIG))}, + "F_CHKCLEAN": {"untyped int", constant.MakeInt64(int64(q.F_CHKCLEAN))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FINDSIGS": {"untyped int", constant.MakeInt64(int64(q.F_FINDSIGS))}, + "F_FLUSH_DATA": {"untyped int", constant.MakeInt64(int64(q.F_FLUSH_DATA))}, + "F_FREEZE_FS": {"untyped int", constant.MakeInt64(int64(q.F_FREEZE_FS))}, + "F_FULLFSYNC": {"untyped int", constant.MakeInt64(int64(q.F_FULLFSYNC))}, + "F_GETCODEDIR": {"untyped int", constant.MakeInt64(int64(q.F_GETCODEDIR))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLKPID": {"untyped int", constant.MakeInt64(int64(q.F_GETLKPID))}, + "F_GETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_GETNOSIGPIPE))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETPATH": {"untyped int", constant.MakeInt64(int64(q.F_GETPATH))}, + "F_GETPATH_MTMINFO": {"untyped int", constant.MakeInt64(int64(q.F_GETPATH_MTMINFO))}, + "F_GETPROTECTIONCLASS": {"untyped int", constant.MakeInt64(int64(q.F_GETPROTECTIONCLASS))}, + "F_GETPROTECTIONLEVEL": {"untyped int", constant.MakeInt64(int64(q.F_GETPROTECTIONLEVEL))}, + "F_GLOBAL_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.F_GLOBAL_NOCACHE))}, + "F_LOG2PHYS": {"untyped int", constant.MakeInt64(int64(q.F_LOG2PHYS))}, + "F_LOG2PHYS_EXT": {"untyped int", constant.MakeInt64(int64(q.F_LOG2PHYS_EXT))}, + "F_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.F_NOCACHE))}, + "F_NODIRECT": {"untyped int", constant.MakeInt64(int64(q.F_NODIRECT))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_PATHPKG_CHECK": {"untyped int", constant.MakeInt64(int64(q.F_PATHPKG_CHECK))}, + "F_PEOFPOSMODE": {"untyped int", constant.MakeInt64(int64(q.F_PEOFPOSMODE))}, + "F_PREALLOCATE": {"untyped int", constant.MakeInt64(int64(q.F_PREALLOCATE))}, + "F_RDADVISE": {"untyped int", constant.MakeInt64(int64(q.F_RDADVISE))}, + "F_RDAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_RDAHEAD))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETBACKINGSTORE": {"untyped int", constant.MakeInt64(int64(q.F_SETBACKINGSTORE))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKWTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.F_SETLKWTIMEOUT))}, + "F_SETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_SETNOSIGPIPE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETPROTECTIONCLASS": {"untyped int", constant.MakeInt64(int64(q.F_SETPROTECTIONCLASS))}, + "F_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.F_SETSIZE))}, + "F_SINGLE_WRITER": {"untyped int", constant.MakeInt64(int64(q.F_SINGLE_WRITER))}, + "F_THAW_FS": {"untyped int", constant.MakeInt64(int64(q.F_THAW_FS))}, + "F_TRANSCODEKEY": {"untyped int", constant.MakeInt64(int64(q.F_TRANSCODEKEY))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_VOLPOSMODE": {"untyped int", constant.MakeInt64(int64(q.F_VOLPOSMODE))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CELLULAR": {"untyped int", constant.MakeInt64(int64(q.IFT_CELLULAR))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PDP": {"untyped int", constant.MakeInt64(int64(q.IFT_PDP))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LINKLOCALNETNUM": {"untyped int", constant.MakeInt64(int64(q.IN_LINKLOCALNETNUM))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292NEXTHOP))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_BOUND_IF))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXOPTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXOPTHDR))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_GROUP_SRC_FILTER))}, + "IPV6_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_MEMBERSHIPS))}, + "IPV6_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_SOCK_SRC_FILTER))}, + "IPV6_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIN_MEMBERSHIPS))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IP_BOUND_IF))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_GROUP_SRC_FILTER))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MAX_SOCK_MUTE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_MUTE_FILTER))}, + "IP_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_SRC_FILTER))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_IFINDEX": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IFINDEX))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_NAT__XXX": {"untyped int", constant.MakeInt64(int64(q.IP_NAT__XXX))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OLD_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_ADD))}, + "IP_OLD_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_DEL))}, + "IP_OLD_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_FLUSH))}, + "IP_OLD_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_GET))}, + "IP_OLD_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_RESETLOG))}, + "IP_OLD_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_ZERO))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_RECVPKTINFO))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_STRIPHDR": {"untyped int", constant.MakeInt64(int64(q.IP_STRIPHDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRAFFIC_MGT_BACKGROUND": {"untyped int", constant.MakeInt64(int64(q.IP_TRAFFIC_MGT_BACKGROUND))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_CAN_REUSE": {"untyped int", constant.MakeInt64(int64(q.MADV_CAN_REUSE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_FREE_REUSABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE_REUSABLE))}, + "MADV_FREE_REUSE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE_REUSE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MADV_ZERO_WIRED_PAGES": {"untyped int", constant.MakeInt64(int64(q.MADV_ZERO_WIRED_PAGES))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_JIT": {"untyped int", constant.MakeInt64(int64(q.MAP_JIT))}, + "MAP_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCACHE))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_RESERVED0080": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0080))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_FLUSH": {"untyped int", constant.MakeInt64(int64(q.MSG_FLUSH))}, + "MSG_HAVEMORE": {"untyped int", constant.MakeInt64(int64(q.MSG_HAVEMORE))}, + "MSG_HOLD": {"untyped int", constant.MakeInt64(int64(q.MSG_HOLD))}, + "MSG_NEEDSA": {"untyped int", constant.MakeInt64(int64(q.MSG_NEEDSA))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_RCVMORE": {"untyped int", constant.MakeInt64(int64(q.MSG_RCVMORE))}, + "MSG_SEND": {"untyped int", constant.MakeInt64(int64(q.MSG_SEND))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITSTREAM": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITSTREAM))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_DEACTIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_DEACTIVATE))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_KILLPAGES": {"untyped int", constant.MakeInt64(int64(q.MS_KILLPAGES))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_DUMP2": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP2))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFLIST2": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST2))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_STAT": {"untyped int", constant.MakeInt64(int64(q.NET_RT_STAT))}, + "NET_RT_TRASH": {"untyped int", constant.MakeInt64(int64(q.NET_RT_TRASH))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ABSOLUTE": {"untyped int", constant.MakeInt64(int64(q.NOTE_ABSOLUTE))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_BACKGROUND": {"untyped int", constant.MakeInt64(int64(q.NOTE_BACKGROUND))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_CRITICAL": {"untyped int", constant.MakeInt64(int64(q.NOTE_CRITICAL))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXITSTATUS": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXITSTATUS))}, + "NOTE_EXIT_CSERROR": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_CSERROR))}, + "NOTE_EXIT_DECRYPTFAIL": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_DECRYPTFAIL))}, + "NOTE_EXIT_DETAIL": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_DETAIL))}, + "NOTE_EXIT_DETAIL_MASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_DETAIL_MASK))}, + "NOTE_EXIT_MEMORY": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_MEMORY))}, + "NOTE_EXIT_REPARENTED": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_REPARENTED))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FFAND": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFAND))}, + "NOTE_FFCOPY": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCOPY))}, + "NOTE_FFCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCTRLMASK))}, + "NOTE_FFLAGSMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFLAGSMASK))}, + "NOTE_FFNOP": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFNOP))}, + "NOTE_FFOR": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFOR))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LEEWAY": {"untyped int", constant.MakeInt64(int64(q.NOTE_LEEWAY))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_NONE": {"untyped int", constant.MakeInt64(int64(q.NOTE_NONE))}, + "NOTE_NSECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_NSECONDS))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_REAP": {"untyped int", constant.MakeInt64(int64(q.NOTE_REAP))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_SECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_SECONDS))}, + "NOTE_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.NOTE_SIGNAL))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRIGGER": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRIGGER))}, + "NOTE_USECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_USECONDS))}, + "NOTE_VM_ERROR": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_ERROR))}, + "NOTE_VM_PRESSURE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE))}, + "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE_SUDDEN_TERMINATE))}, + "NOTE_VM_PRESSURE_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE_TERMINATE))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_ALERT": {"untyped int", constant.MakeInt64(int64(q.O_ALERT))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DP_GETRAWENCRYPTED": {"untyped int", constant.MakeInt64(int64(q.O_DP_GETRAWENCRYPTED))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EVTONLY": {"untyped int", constant.MakeInt64(int64(q.O_EVTONLY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_POPUP": {"untyped int", constant.MakeInt64(int64(q.O_POPUP))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.O_SYMLINK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PT_ATTACH))}, + "PT_ATTACHEXC": {"untyped int", constant.MakeInt64(int64(q.PT_ATTACHEXC))}, + "PT_CONTINUE": {"untyped int", constant.MakeInt64(int64(q.PT_CONTINUE))}, + "PT_DENY_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PT_DENY_ATTACH))}, + "PT_DETACH": {"untyped int", constant.MakeInt64(int64(q.PT_DETACH))}, + "PT_FIRSTMACH": {"untyped int", constant.MakeInt64(int64(q.PT_FIRSTMACH))}, + "PT_FORCEQUOTA": {"untyped int", constant.MakeInt64(int64(q.PT_FORCEQUOTA))}, + "PT_KILL": {"untyped int", constant.MakeInt64(int64(q.PT_KILL))}, + "PT_READ_D": {"untyped int", constant.MakeInt64(int64(q.PT_READ_D))}, + "PT_READ_I": {"untyped int", constant.MakeInt64(int64(q.PT_READ_I))}, + "PT_READ_U": {"untyped int", constant.MakeInt64(int64(q.PT_READ_U))}, + "PT_SIGEXC": {"untyped int", constant.MakeInt64(int64(q.PT_SIGEXC))}, + "PT_STEP": {"untyped int", constant.MakeInt64(int64(q.PT_STEP))}, + "PT_THUPDATE": {"untyped int", constant.MakeInt64(int64(q.PT_THUPDATE))}, + "PT_TRACE_ME": {"untyped int", constant.MakeInt64(int64(q.PT_TRACE_ME))}, + "PT_WRITE_D": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_D))}, + "PT_WRITE_I": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_I))}, + "PT_WRITE_U": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_U))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_CPU_USAGE_MONITOR": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU_USAGE_MONITOR))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_CONDEMNED": {"untyped int", constant.MakeInt64(int64(q.RTF_CONDEMNED))}, + "RTF_DELCLONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DELCLONE))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_IFREF": {"untyped int", constant.MakeInt64(int64(q.RTF_IFREF))}, + "RTF_IFSCOPE": {"untyped int", constant.MakeInt64(int64(q.RTF_IFSCOPE))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_PROXY": {"untyped int", constant.MakeInt64(int64(q.RTF_PROXY))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_ROUTER": {"untyped int", constant.MakeInt64(int64(q.RTF_ROUTER))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WASCLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_WASCLONED))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_GET2": {"untyped int", constant.MakeInt64(int64(q.RTM_GET2))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_IFINFO2": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO2))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_NEWMADDR2": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR2))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMP_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP_MONOTONIC))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCARPIPLL": {"untyped int", constant.MakeInt64(int64(q.SIOCARPIPLL))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCAUTOADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAUTOADDR))}, + "SIOCAUTONETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCAUTONETMASK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVLAN))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFALTMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFALTMTU))}, + "SIOCGIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFASYNCMAP))}, + "SIOCGIFBOND": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBOND))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDEVMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDEVMTU))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFKPI": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFKPI))}, + "SIOCGIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGIFVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFVLAN))}, + "SIOCGIFWAKEFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFWAKEFLAGS))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCRSLVMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCRSLVMULTI))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSETVLAN))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFALTMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFALTMTU))}, + "SIOCSIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFASYNCMAP))}, + "SIOCSIFBOND": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBOND))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFKPI": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFKPI))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFVLAN))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_DONTTRUNC": {"untyped int", constant.MakeInt64(int64(q.SO_DONTTRUNC))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LABEL": {"untyped int", constant.MakeInt64(int64(q.SO_LABEL))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LINGER_SEC": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER_SEC))}, + "SO_NKE": {"untyped int", constant.MakeInt64(int64(q.SO_NKE))}, + "SO_NOADDRERR": {"untyped int", constant.MakeInt64(int64(q.SO_NOADDRERR))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_NOTIFYCONFLICT": {"untyped int", constant.MakeInt64(int64(q.SO_NOTIFYCONFLICT))}, + "SO_NP_EXTENSIONS": {"untyped int", constant.MakeInt64(int64(q.SO_NP_EXTENSIONS))}, + "SO_NREAD": {"untyped int", constant.MakeInt64(int64(q.SO_NREAD))}, + "SO_NUMRCVPKT": {"untyped int", constant.MakeInt64(int64(q.SO_NUMRCVPKT))}, + "SO_NWRITE": {"untyped int", constant.MakeInt64(int64(q.SO_NWRITE))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERLABEL": {"untyped int", constant.MakeInt64(int64(q.SO_PEERLABEL))}, + "SO_RANDOMPORT": {"untyped int", constant.MakeInt64(int64(q.SO_RANDOMPORT))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_REUSESHAREUID": {"untyped int", constant.MakeInt64(int64(q.SO_REUSESHAREUID))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMP_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP_MONOTONIC))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_UPCALLCLOSEWAIT": {"untyped int", constant.MakeInt64(int64(q.SO_UPCALLCLOSEWAIT))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_WANTMORE": {"untyped int", constant.MakeInt64(int64(q.SO_WANTMORE))}, + "SO_WANTOOBFLAG": {"untyped int", constant.MakeInt64(int64(q.SO_WANTOOBFLAG))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT_NOCANCEL))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCESS_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS_EXTENDED))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AIO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_CANCEL))}, + "SYS_AIO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_ERROR))}, + "SYS_AIO_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_FSYNC))}, + "SYS_AIO_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_READ))}, + "SYS_AIO_RETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_RETURN))}, + "SYS_AIO_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND))}, + "SYS_AIO_SUSPEND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND_NOCANCEL))}, + "SYS_AIO_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WRITE))}, + "SYS_ATGETMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_ATGETMSG))}, + "SYS_ATPGETREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPGETREQ))}, + "SYS_ATPGETRSP": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPGETRSP))}, + "SYS_ATPSNDREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPSNDREQ))}, + "SYS_ATPSNDRSP": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPSNDRSP))}, + "SYS_ATPUTMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPUTMSG))}, + "SYS_ATSOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_ATSOCKET))}, + "SYS_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT))}, + "SYS_AUDITCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITCTL))}, + "SYS_AUDITON": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITON))}, + "SYS_AUDIT_SESSION_JOIN": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_JOIN))}, + "SYS_AUDIT_SESSION_PORT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_PORT))}, + "SYS_AUDIT_SESSION_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_SELF))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BSDTHREAD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_CREATE))}, + "SYS_BSDTHREAD_REGISTER": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_REGISTER))}, + "SYS_BSDTHREAD_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_TERMINATE))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHMOD_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD_EXTENDED))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CHUD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHUD))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE_NOCANCEL))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CONNECT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT_NOCANCEL))}, + "SYS_COPYFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_COPYFILE))}, + "SYS_CSOPS": {"untyped int", constant.MakeInt64(int64(q.SYS_CSOPS))}, + "SYS_CSOPS_AUDITTOKEN": {"untyped int", constant.MakeInt64(int64(q.SYS_CSOPS_AUDITTOKEN))}, + "SYS_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EXCHANGEDATA": {"untyped int", constant.MakeInt64(int64(q.SYS_EXCHANGEDATA))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMOD_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD_EXTENDED))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL_NOCANCEL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FFSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FFSCTL))}, + "SYS_FGETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETATTRLIST))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FILEPORT_MAKEFD": {"untyped int", constant.MakeInt64(int64(q.SYS_FILEPORT_MAKEFD))}, + "SYS_FILEPORT_MAKEPORT": {"untyped int", constant.MakeInt64(int64(q.SYS_FILEPORT_MAKEPORT))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FSCTL))}, + "SYS_FSETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETATTRLIST))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSGETPATH": {"untyped int", constant.MakeInt64(int64(q.SYS_FSGETPATH))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64_EXTENDED))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSTAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT_EXTENDED))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FSYNC_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC_NOCANCEL))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GETATTRLIST))}, + "SYS_GETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT_ADDR))}, + "SYS_GETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUID))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDIRENTRIES64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES64))}, + "SYS_GETDIRENTRIESATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIESATTR))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETFSSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT64))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETHOSTUUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETHOSTUUID))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLCID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLCID))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSGROUPS))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETWGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETWGROUPS))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_IDENTITYSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_IDENTITYSVC))}, + "SYS_INITGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_INITGROUPS))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPOLICYSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPOLICYSYS))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KAS_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_KAS_INFO))}, + "SYS_KDEBUG_TRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KDEBUG_TRACE))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KEVENT64": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT64))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LEDGER": {"untyped int", constant.MakeInt64(int64(q.SYS_LEDGER))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LIO_LISTIO": {"untyped int", constant.MakeInt64(int64(q.SYS_LIO_LISTIO))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_LSTAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64_EXTENDED))}, + "SYS_LSTAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT_EXTENDED))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MAXSYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MAXSYSCALL))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIR_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR_EXTENDED))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFO_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO_EXTENDED))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODWATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_MODWATCH))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGRCV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV_NOCANCEL))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSGSND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND_NOCANCEL))}, + "SYS_MSGSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSYS))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MSYNC_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC_NOCANCEL))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NFSCLNT": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSCLNT))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPEN_DPROTECTED_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_DPROTECTED_NP))}, + "SYS_OPEN_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_EXTENDED))}, + "SYS_OPEN_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_NOCANCEL))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PID_HIBERNATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_HIBERNATE))}, + "SYS_PID_RESUME": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_RESUME))}, + "SYS_PID_SHUTDOWN_SOCKETS": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_SHUTDOWN_SOCKETS))}, + "SYS_PID_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_SUSPEND))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POLL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL_NOCANCEL))}, + "SYS_POSIX_SPAWN": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_SPAWN))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREAD_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD_NOCANCEL))}, + "SYS_PROCESS_POLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_POLICY))}, + "SYS_PROC_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_PROC_INFO))}, + "SYS_PSYNCH_CVBROAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVBROAD))}, + "SYS_PSYNCH_CVCLRPREPOST": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVCLRPREPOST))}, + "SYS_PSYNCH_CVSIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVSIGNAL))}, + "SYS_PSYNCH_CVWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVWAIT))}, + "SYS_PSYNCH_MUTEXDROP": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_MUTEXDROP))}, + "SYS_PSYNCH_MUTEXWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_MUTEXWAIT))}, + "SYS_PSYNCH_RW_DOWNGRADE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_DOWNGRADE))}, + "SYS_PSYNCH_RW_LONGRDLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_LONGRDLOCK))}, + "SYS_PSYNCH_RW_RDLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_RDLOCK))}, + "SYS_PSYNCH_RW_UNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UNLOCK))}, + "SYS_PSYNCH_RW_UNLOCK2": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UNLOCK2))}, + "SYS_PSYNCH_RW_UPGRADE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UPGRADE))}, + "SYS_PSYNCH_RW_WRLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_WRLOCK))}, + "SYS_PSYNCH_RW_YIELDWRLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_YIELDWRLOCK))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE_NOCANCEL))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_READV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_READV_NOCANCEL))}, + "SYS_READ_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_READ_NOCANCEL))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVFROM_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM_NOCANCEL))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RECVMSG_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG_NOCANCEL))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SEARCHFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEARCHFS))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SELECT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT_NOCANCEL))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMSYS))}, + "SYS_SEM_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_CLOSE))}, + "SYS_SEM_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_DESTROY))}, + "SYS_SEM_GETVALUE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_GETVALUE))}, + "SYS_SEM_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_INIT))}, + "SYS_SEM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_OPEN))}, + "SYS_SEM_POST": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_POST))}, + "SYS_SEM_TRYWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_TRYWAIT))}, + "SYS_SEM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_UNLINK))}, + "SYS_SEM_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_WAIT))}, + "SYS_SEM_WAIT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_WAIT_NOCANCEL))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDMSG_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG_NOCANCEL))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SENDTO_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO_NOCANCEL))}, + "SYS_SETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SETATTRLIST))}, + "SYS_SETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT_ADDR))}, + "SYS_SETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUID))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLCID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLCID))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETPRIVEXEC": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIVEXEC))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSGROUPS))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTID))}, + "SYS_SETTID_WITH_PID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTID_WITH_PID))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETWGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETWGROUPS))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SHARED_REGION_CHECK_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_SHARED_REGION_CHECK_NP))}, + "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_SHARED_REGION_MAP_AND_SLIDE_NP))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMSYS))}, + "SYS_SHM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_OPEN))}, + "SYS_SHM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_UNLINK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGSUSPEND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND_NOCANCEL))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_STACK_SNAPSHOT": {"untyped int", constant.MakeInt64(int64(q.SYS_STACK_SNAPSHOT))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64_EXTENDED))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT_EXTENDED))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL))}, + "SYS_THREAD_SELFID": {"untyped int", constant.MakeInt64(int64(q.SYS_THREAD_SELFID))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMASK_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK_EXTENDED))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VM_PRESSURE_MONITOR": {"untyped int", constant.MakeInt64(int64(q.SYS_VM_PRESSURE_MONITOR))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT4_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4_NOCANCEL))}, + "SYS_WAITEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITEVENT))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITID_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID_NOCANCEL))}, + "SYS_WATCHEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_WATCHEVENT))}, + "SYS_WORKQ_KERNRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_WORKQ_KERNRETURN))}, + "SYS_WORKQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_WORKQ_OPEN))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_WRITEV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV_NOCANCEL))}, + "SYS_WRITE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE_NOCANCEL))}, + "SYS___DISABLE_THREADSIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___DISABLE_THREADSIGNAL))}, + "SYS___MAC_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_EXECVE))}, + "SYS___MAC_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GETFSSTAT))}, + "SYS___MAC_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FD))}, + "SYS___MAC_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FILE))}, + "SYS___MAC_GET_LCID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LCID))}, + "SYS___MAC_GET_LCTX": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LCTX))}, + "SYS___MAC_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LINK))}, + "SYS___MAC_GET_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_MOUNT))}, + "SYS___MAC_GET_PID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PID))}, + "SYS___MAC_GET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PROC))}, + "SYS___MAC_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_MOUNT))}, + "SYS___MAC_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FD))}, + "SYS___MAC_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FILE))}, + "SYS___MAC_SET_LCTX": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LCTX))}, + "SYS___MAC_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LINK))}, + "SYS___MAC_SET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_PROC))}, + "SYS___MAC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SYSCALL))}, + "SYS___OLD_SEMWAIT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___OLD_SEMWAIT_SIGNAL))}, + "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL))}, + "SYS___PTHREAD_CANCELED": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_CANCELED))}, + "SYS___PTHREAD_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_CHDIR))}, + "SYS___PTHREAD_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_FCHDIR))}, + "SYS___PTHREAD_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_KILL))}, + "SYS___PTHREAD_MARKCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_MARKCANCEL))}, + "SYS___PTHREAD_SIGMASK": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_SIGMASK))}, + "SYS___SEMWAIT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMWAIT_SIGNAL))}, + "SYS___SEMWAIT_SIGNAL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMWAIT_SIGNAL_NOCANCEL))}, + "SYS___SIGWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGWAIT))}, + "SYS___SIGWAIT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGWAIT_NOCANCEL))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFWHT": {"untyped int", constant.MakeInt64(int64(q.S_IFWHT))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISTXT": {"untyped int", constant.MakeInt64(int64(q.S_ISTXT))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofIfmaMsghdr2": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr2))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONNECTIONTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_CONNECTIONTIMEOUT))}, + "TCP_ENABLE_ECN": {"untyped int", constant.MakeInt64(int64(q.TCP_ENABLE_ECN))}, + "TCP_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_NOTSENT_LOWAT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOTSENT_LOWAT))}, + "TCP_RXT_CONNDROPTIME": {"untyped int", constant.MakeInt64(int64(q.TCP_RXT_CONNDROPTIME))}, + "TCP_RXT_FINDROP": {"untyped int", constant.MakeInt64(int64(q.TCP_RXT_FINDROP))}, + "TCP_SENDMOREACKS": {"untyped int", constant.MakeInt64(int64(q.TCP_SENDMOREACKS))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDCDTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCDCDTIMESTAMP))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCDSIMICROCODE": {"untyped int", constant.MakeInt64(int64(q.TIOCDSIMICROCODE))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCIXOFF": {"untyped int", constant.MakeInt64(int64(q.TIOCIXOFF))}, + "TIOCIXON": {"untyped int", constant.MakeInt64(int64(q.TIOCIXON))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTYGNAME": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYGNAME))}, + "TIOCPTYGRANT": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYGRANT))}, + "TIOCPTYUNLK": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYUNLK))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCSCONS))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_dragonfly_amd64.go b/pkg/syscall/go122_export_dragonfly_amd64.go new file mode 100755 index 00000000..648fb0a5 --- /dev/null +++ b/pkg/syscall/go122_export_dragonfly_amd64.go @@ -0,0 +1,2006 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EASYNC": {reflect.TypeOf(q.EASYNC), constant.MakeInt64(int64(q.EASYNC))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOOFUS": {reflect.TypeOf(q.EDOOFUS), constant.MakeInt64(int64(q.EDOOFUS))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUNUSED94": {reflect.TypeOf(q.EUNUSED94), constant.MakeInt64(int64(q.EUNUSED94))}, + "EUNUSED95": {reflect.TypeOf(q.EUNUSED95), constant.MakeInt64(int64(q.EUNUSED95))}, + "EUNUSED96": {reflect.TypeOf(q.EUNUSED96), constant.MakeInt64(int64(q.EUNUSED96))}, + "EUNUSED97": {reflect.TypeOf(q.EUNUSED97), constant.MakeInt64(int64(q.EUNUSED97))}, + "EUNUSED98": {reflect.TypeOf(q.EUNUSED98), constant.MakeInt64(int64(q.EUNUSED98))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCKPT": {reflect.TypeOf(q.SIGCKPT), constant.MakeInt64(int64(q.SIGCKPT))}, + "SIGCKPTEXIT": {reflect.TypeOf(q.SIGCKPTEXIT), constant.MakeInt64(int64(q.SIGCKPTEXIT))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ATM": {"untyped int", constant.MakeInt64(int64(q.AF_ATM))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NETGRAPH": {"untyped int", constant.MakeInt64(int64(q.AF_NETGRAPH))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DEFAULTBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_DEFAULTBUFSIZE))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MAX_CLONES": {"untyped int", constant.MakeInt64(int64(q.BPF_MAX_CLONES))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPFILTER": {"untyped int", constant.MakeInt64(int64(q.DLT_IPFILTER))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_REDBACK_SMARTEDGE": {"untyped int", constant.MakeInt64(int64(q.DLT_REDBACK_SMARTEDGE))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DBF": {"untyped int", constant.MakeInt64(int64(q.DT_DBF))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_EXCEPT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_EXCEPT))}, + "EVFILT_MARKER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_MARKER))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_NODATA": {"untyped int", constant.MakeInt64(int64(q.EV_NODATA))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTEXIT_LWP": {"untyped int", constant.MakeInt64(int64(q.EXTEXIT_LWP))}, + "EXTEXIT_PROC": {"untyped int", constant.MakeInt64(int64(q.EXTEXIT_PROC))}, + "EXTEXIT_SETINT": {"untyped int", constant.MakeInt64(int64(q.EXTEXIT_SETINT))}, + "EXTEXIT_SIMPLE": {"untyped int", constant.MakeInt64(int64(q.EXTEXIT_SIMPLE))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUP2FD": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD))}, + "F_DUP2FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD_CLOEXEC))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MONITOR": {"untyped int", constant.MakeInt64(int64(q.IFF_MONITOR))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NPOLLING": {"untyped int", constant.MakeInt64(int64(q.IFF_NPOLLING))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_OACTIVE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE_COMPAT))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_POLLING": {"untyped int", constant.MakeInt64(int64(q.IFF_POLLING))}, + "IFF_POLLING_COMPAT": {"untyped int", constant.MakeInt64(int64(q.IFF_POLLING_COMPAT))}, + "IFF_PPROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PPROMISC))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_SMART": {"untyped int", constant.MakeInt64(int64(q.IFF_SMART))}, + "IFF_STATICARP": {"untyped int", constant.MakeInt64(int64(q.IFF_STATICARP))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SKIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SKIP))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TLSP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UNKNOWN))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MSFILTER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTOPTIONS))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_PREFER_TEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_TEMPADDR))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_AUTOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_AUTOSYNC))}, + "MADV_CONTROL_END": {"untyped int", constant.MakeInt64(int64(q.MADV_CONTROL_END))}, + "MADV_CONTROL_START": {"untyped int", constant.MakeInt64(int64(q.MADV_CONTROL_START))}, + "MADV_CORE": {"untyped int", constant.MakeInt64(int64(q.MADV_CORE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_INVAL": {"untyped int", constant.MakeInt64(int64(q.MADV_INVAL))}, + "MADV_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOCORE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_NOSYNC))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SETMAP": {"untyped int", constant.MakeInt64(int64(q.MADV_SETMAP))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCORE))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MAP_NOSYNC))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_SIZEALIGN": {"untyped int", constant.MakeInt64(int64(q.MAP_SIZEALIGN))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MAP_VPAGETABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_VPAGETABLE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_FBLOCKING": {"untyped int", constant.MakeInt64(int64(q.MSG_FBLOCKING))}, + "MSG_FMASK": {"untyped int", constant.MakeInt64(int64(q.MSG_FMASK))}, + "MSG_FNONBLOCKING": {"untyped int", constant.MakeInt64(int64(q.MSG_FNONBLOCKING))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_NOTIFICATION": {"untyped int", constant.MakeInt64(int64(q.MSG_NOTIFICATION))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_SYNC": {"untyped int", constant.MakeInt64(int64(q.MSG_SYNC))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_OOB": {"untyped int", constant.MakeInt64(int64(q.NOTE_OOB))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FAPPEND": {"untyped int", constant.MakeInt64(int64(q.O_FAPPEND))}, + "O_FASYNCWRITE": {"untyped int", constant.MakeInt64(int64(q.O_FASYNCWRITE))}, + "O_FBLOCKING": {"untyped int", constant.MakeInt64(int64(q.O_FBLOCKING))}, + "O_FBUFFERED": {"untyped int", constant.MakeInt64(int64(q.O_FBUFFERED))}, + "O_FMASK": {"untyped int", constant.MakeInt64(int64(q.O_FMASK))}, + "O_FNONBLOCKING": {"untyped int", constant.MakeInt64(int64(q.O_FNONBLOCKING))}, + "O_FOFFSET": {"untyped int", constant.MakeInt64(int64(q.O_FOFFSET))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_FSYNCWRITE": {"untyped int", constant.MakeInt64(int64(q.O_FSYNCWRITE))}, + "O_FUNBUFFERED": {"untyped int", constant.MakeInt64(int64(q.O_FUNBUFFERED))}, + "O_MAPONREAD": {"untyped int", constant.MakeInt64(int64(q.O_MAPONREAD))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MPLS1": {"untyped int", constant.MakeInt64(int64(q.RTAX_MPLS1))}, + "RTAX_MPLS2": {"untyped int", constant.MakeInt64(int64(q.RTAX_MPLS2))}, + "RTAX_MPLS3": {"untyped int", constant.MakeInt64(int64(q.RTAX_MPLS3))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_MPLS1": {"untyped int", constant.MakeInt64(int64(q.RTA_MPLS1))}, + "RTA_MPLS2": {"untyped int", constant.MakeInt64(int64(q.RTA_MPLS2))}, + "RTA_MPLS3": {"untyped int", constant.MakeInt64(int64(q.RTA_MPLS3))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MPLSOPS": {"untyped int", constant.MakeInt64(int64(q.RTF_MPLSOPS))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WASCLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_WASCLONED))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_IWCAPSEGS": {"untyped int", constant.MakeInt64(int64(q.RTV_IWCAPSEGS))}, + "RTV_IWMAXSEGS": {"untyped int", constant.MakeInt64(int64(q.RTV_IWMAXSEGS))}, + "RTV_MSL": {"untyped int", constant.MakeInt64(int64(q.RTV_MSL))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPOLLCPU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPOLLCPU))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGIFTSOLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTSOLEN))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGPRIVATE_0": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_0))}, + "SIOCGPRIVATE_1": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_1))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFPOLLCPU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPOLLCPU))}, + "SIOCSIFTSOLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTSOLEN))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDSPACE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDSPACE))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AIO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_CANCEL))}, + "SYS_AIO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_ERROR))}, + "SYS_AIO_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_READ))}, + "SYS_AIO_RETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_RETURN))}, + "SYS_AIO_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND))}, + "SYS_AIO_WAITCOMPLETE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WAITCOMPLETE))}, + "SYS_AIO_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WRITE))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CHROOT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT_KERNEL))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_EACCESS))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXEC_SYS_REGISTER": {"untyped int", constant.MakeInt64(int64(q.SYS_EXEC_SYS_REGISTER))}, + "SYS_EXEC_SYS_UNREGISTER": {"untyped int", constant.MakeInt64(int64(q.SYS_EXEC_SYS_UNREGISTER))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTACCEPT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTCONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTCONNECT))}, + "SYS_EXTEXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTEXIT))}, + "SYS_EXTPREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTPREAD))}, + "SYS_EXTPREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTPREADV))}, + "SYS_EXTPWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTPWRITE))}, + "SYS_EXTPWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTPWRITEV))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FHSTATVFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATVFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATVFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATVFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDOMAINNAME))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETVFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETVFSSTAT))}, + "SYS_GET_TLS_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_TLS_AREA))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_JAIL": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL))}, + "SYS_JAIL_ATTACH": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_ATTACH))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KLDFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIND))}, + "SYS_KLDFIRSTMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIRSTMOD))}, + "SYS_KLDLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDLOAD))}, + "SYS_KLDNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDNEXT))}, + "SYS_KLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSTAT))}, + "SYS_KLDSYM": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSYM))}, + "SYS_KLDUNLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOAD))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LIO_LISTIO": {"untyped int", constant.MakeInt64(int64(q.SYS_LIO_LISTIO))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_LPATHCONF))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_LWP_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_LWP_CREATE))}, + "SYS_LWP_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_LWP_GETTID))}, + "SYS_LWP_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_LWP_KILL))}, + "SYS_LWP_RTPRIO": {"untyped int", constant.MakeInt64(int64(q.SYS_LWP_RTPRIO))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MCONTROL": {"untyped int", constant.MakeInt64(int64(q.SYS_MCONTROL))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFIND))}, + "SYS_MODFNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFNEXT))}, + "SYS_MODNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODNEXT))}, + "SYS_MODSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODSTAT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOUNTCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNTCTL))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_CLOSE))}, + "SYS_MQ_GETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_RECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_RECEIVE))}, + "SYS_MQ_SEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_SEND))}, + "SYS_MQ_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_SETATTR))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPENBSD_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENBSD_POLL))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_RFORK))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RTPRIO": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SCTP_PEELOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_PEELOFF))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SET_TLS_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TLS_AREA))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGTIMEDWAIT))}, + "SYS_SIGWAITINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAITINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATVFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATVFS))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_SYS_CHECKPOINT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYS_CHECKPOINT))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMTX_SLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_UMTX_SLEEP))}, + "SYS_UMTX_WAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS_UMTX_WAKEUP))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_USCHED_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_USCHED_SET))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VARSYM_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_VARSYM_GET))}, + "SYS_VARSYM_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_VARSYM_LIST))}, + "SYS_VARSYM_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_VARSYM_SET))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VMM_GUEST_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_VMM_GUEST_CTL))}, + "SYS_VMM_GUEST_SYNC_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_VMM_GUEST_SYNC_ADDR))}, + "SYS_VMSPACE_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPACE_CREATE))}, + "SYS_VMSPACE_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPACE_CTL))}, + "SYS_VMSPACE_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPACE_DESTROY))}, + "SYS_VMSPACE_MCONTROL": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPACE_MCONTROL))}, + "SYS_VMSPACE_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPACE_MMAP))}, + "SYS_VMSPACE_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPACE_MUNMAP))}, + "SYS_VMSPACE_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPACE_PREAD))}, + "SYS_VMSPACE_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPACE_PWRITE))}, + "SYS_VQUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_VQUOTACTL))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_YIELD))}, + "SYS___ACL_ACLCHECK_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FD))}, + "SYS___ACL_ACLCHECK_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FILE))}, + "SYS___ACL_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FD))}, + "SYS___ACL_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FILE))}, + "SYS___ACL_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FD))}, + "SYS___ACL_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FILE))}, + "SYS___ACL_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FD))}, + "SYS___ACL_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FILE))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_FASTKEEP": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTKEEP))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MIN_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MIN_WINSHIFT))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_SIGNATURE_ENABLE": {"untyped int", constant.MakeInt64(int64(q.TCP_SIGNATURE_ENABLE))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDCDTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCDCDTIMESTAMP))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGSIZE))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCISPTMASTER": {"untyped int", constant.MakeInt64(int64(q.TIOCISPTMASTER))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCSSIZE))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VCHECKPT": {"untyped int", constant.MakeInt64(int64(q.VCHECKPT))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VERASE2": {"untyped int", constant.MakeInt64(int64(q.VERASE2))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WLINUXCLONE": {"untyped int", constant.MakeInt64(int64(q.WLINUXCLONE))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_freebsd_386.go b/pkg/syscall/go122_export_freebsd_386.go new file mode 100755 index 00000000..8ce2bd6a --- /dev/null +++ b/pkg/syscall/go122_export_freebsd_386.go @@ -0,0 +1,2245 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "BpfZbuf": reflect.TypeOf((*q.BpfZbuf)(nil)).Elem(), + "BpfZbufHeader": reflect.TypeOf((*q.BpfZbufHeader)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatat": reflect.ValueOf(q.Fstatat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECAPMODE": {reflect.TypeOf(q.ECAPMODE), constant.MakeInt64(int64(q.ECAPMODE))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOOFUS": {reflect.TypeOf(q.EDOOFUS), constant.MakeInt64(int64(q.EDOOFUS))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCAPABLE": {reflect.TypeOf(q.ENOTCAPABLE), constant.MakeInt64(int64(q.ENOTCAPABLE))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGLIBRT": {reflect.TypeOf(q.SIGLIBRT), constant.MakeInt64(int64(q.SIGLIBRT))}, + "SIGLWP": {reflect.TypeOf(q.SIGLWP), constant.MakeInt64(int64(q.SIGLWP))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ARP": {"untyped int", constant.MakeInt64(int64(q.AF_ARP))}, + "AF_ATM": {"untyped int", constant.MakeInt64(int64(q.AF_ATM))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_INET6_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET6_SDP))}, + "AF_INET_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET_SDP))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_NETGRAPH": {"untyped int", constant.MakeInt64(int64(q.AF_NETGRAPH))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SCLUSTER": {"untyped int", constant.MakeInt64(int64(q.AF_SCLUSTER))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SLOW": {"untyped int", constant.MakeInt64(int64(q.AF_SLOW))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VENDOR00": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR00))}, + "AF_VENDOR01": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR01))}, + "AF_VENDOR02": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR02))}, + "AF_VENDOR03": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR03))}, + "AF_VENDOR04": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR04))}, + "AF_VENDOR05": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR05))}, + "AF_VENDOR06": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR06))}, + "AF_VENDOR07": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR07))}, + "AF_VENDOR08": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR08))}, + "AF_VENDOR09": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR09))}, + "AF_VENDOR10": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR10))}, + "AF_VENDOR11": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR11))}, + "AF_VENDOR12": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR12))}, + "AF_VENDOR13": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR13))}, + "AF_VENDOR14": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR14))}, + "AF_VENDOR15": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR15))}, + "AF_VENDOR16": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR16))}, + "AF_VENDOR17": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR17))}, + "AF_VENDOR18": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR18))}, + "AF_VENDOR19": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR19))}, + "AF_VENDOR20": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR20))}, + "AF_VENDOR21": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR21))}, + "AF_VENDOR22": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR22))}, + "AF_VENDOR23": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR23))}, + "AF_VENDOR24": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR24))}, + "AF_VENDOR25": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR25))}, + "AF_VENDOR26": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR26))}, + "AF_VENDOR27": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR27))}, + "AF_VENDOR28": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR28))}, + "AF_VENDOR29": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR29))}, + "AF_VENDOR30": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR30))}, + "AF_VENDOR31": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR31))}, + "AF_VENDOR32": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR32))}, + "AF_VENDOR33": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR33))}, + "AF_VENDOR34": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR34))}, + "AF_VENDOR35": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR35))}, + "AF_VENDOR36": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR36))}, + "AF_VENDOR37": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR37))}, + "AF_VENDOR38": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR38))}, + "AF_VENDOR39": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR39))}, + "AF_VENDOR40": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR40))}, + "AF_VENDOR41": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR41))}, + "AF_VENDOR42": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR42))}, + "AF_VENDOR43": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR43))}, + "AF_VENDOR44": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR44))}, + "AF_VENDOR45": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR45))}, + "AF_VENDOR46": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR46))}, + "AF_VENDOR47": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR47))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCFEEDBACK))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRECTION))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCGETBUFMODE))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGETZMAX": {"untyped int", constant.MakeInt64(int64(q.BIOCGETZMAX))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCGTSTAMP))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCROTZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCROTZBUF))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRECTION))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCSETBUFMODE))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETFNR": {"untyped int", constant.MakeInt64(int64(q.BIOCSETFNR))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSETZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETZBUF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCSTSTAMP))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_BUFMODE_BUFFER": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_BUFFER))}, + "BPF_BUFMODE_ZBUF": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_ZBUF))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_T_BINTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME))}, + "BPF_T_BINTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_FAST))}, + "BPF_T_BINTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC))}, + "BPF_T_BINTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC_FAST))}, + "BPF_T_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FAST))}, + "BPF_T_FLAG_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FLAG_MASK))}, + "BPF_T_FORMAT_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FORMAT_MASK))}, + "BPF_T_MICROTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME))}, + "BPF_T_MICROTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_FAST))}, + "BPF_T_MICROTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC))}, + "BPF_T_MICROTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC_FAST))}, + "BPF_T_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC))}, + "BPF_T_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC_FAST))}, + "BPF_T_NANOTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME))}, + "BPF_T_NANOTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_FAST))}, + "BPF_T_NANOTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC))}, + "BPF_T_NANOTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC_FAST))}, + "BPF_T_NONE": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NONE))}, + "BPF_T_NORMAL": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NORMAL))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_AOS": {"untyped int", constant.MakeInt64(int64(q.DLT_AOS))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CAN_SOCKETCAN": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN_SOCKETCAN))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DBUS": {"untyped int", constant.MakeInt64(int64(q.DLT_DBUS))}, + "DLT_DECT": {"untyped int", constant.MakeInt64(int64(q.DLT_DECT))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_DVB_CI": {"untyped int", constant.MakeInt64(int64(q.DLT_DVB_CI))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FC_2": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2))}, + "DLT_FC_2_WITH_FRAME_DELIMS": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2_WITH_FRAME_DELIMS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_GSMTAP_ABIS": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_ABIS))}, + "DLT_GSMTAP_UM": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_UM))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NOFCS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NOFCS))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPFILTER": {"untyped int", constant.MakeInt64(int64(q.DLT_IPFILTER))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPOIB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPOIB))}, + "DLT_IPV4": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV4))}, + "DLT_IPV6": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV6))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_ATM_CEMIC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM_CEMIC))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FIBRECHANNEL))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_SRX_E2E": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SRX_E2E))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_JUNIPER_VS": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VS))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_EVDEV": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_EVDEV))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_PPP_WITHDIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_PPP_WITHDIRECTION))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MATCHING_MAX": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MAX))}, + "DLT_MATCHING_MIN": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MIN))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MPEG_2_TS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPEG_2_TS))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_MUX27010": {"untyped int", constant.MakeInt64(int64(q.DLT_MUX27010))}, + "DLT_NETANALYZER": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER))}, + "DLT_NETANALYZER_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER_TRANSPARENT))}, + "DLT_NFC_LLCP": {"untyped int", constant.MakeInt64(int64(q.DLT_NFC_LLCP))}, + "DLT_NFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_NFLOG))}, + "DLT_NG40": {"untyped int", constant.MakeInt64(int64(q.DLT_NG40))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PPP_WITH_DIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIRECTION))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_STANAG_5066_D_PDU": {"untyped int", constant.MakeInt64(int64(q.DLT_STANAG_5066_D_PDU))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_USB_LINUX_MMAPPED": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX_MMAPPED))}, + "DLT_USER0": {"untyped int", constant.MakeInt64(int64(q.DLT_USER0))}, + "DLT_USER1": {"untyped int", constant.MakeInt64(int64(q.DLT_USER1))}, + "DLT_USER10": {"untyped int", constant.MakeInt64(int64(q.DLT_USER10))}, + "DLT_USER11": {"untyped int", constant.MakeInt64(int64(q.DLT_USER11))}, + "DLT_USER12": {"untyped int", constant.MakeInt64(int64(q.DLT_USER12))}, + "DLT_USER13": {"untyped int", constant.MakeInt64(int64(q.DLT_USER13))}, + "DLT_USER14": {"untyped int", constant.MakeInt64(int64(q.DLT_USER14))}, + "DLT_USER15": {"untyped int", constant.MakeInt64(int64(q.DLT_USER15))}, + "DLT_USER2": {"untyped int", constant.MakeInt64(int64(q.DLT_USER2))}, + "DLT_USER3": {"untyped int", constant.MakeInt64(int64(q.DLT_USER3))}, + "DLT_USER4": {"untyped int", constant.MakeInt64(int64(q.DLT_USER4))}, + "DLT_USER5": {"untyped int", constant.MakeInt64(int64(q.DLT_USER5))}, + "DLT_USER6": {"untyped int", constant.MakeInt64(int64(q.DLT_USER6))}, + "DLT_USER7": {"untyped int", constant.MakeInt64(int64(q.DLT_USER7))}, + "DLT_USER8": {"untyped int", constant.MakeInt64(int64(q.DLT_USER8))}, + "DLT_USER9": {"untyped int", constant.MakeInt64(int64(q.DLT_USER9))}, + "DLT_WIHART": {"untyped int", constant.MakeInt64(int64(q.DLT_WIHART))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_FS": {"untyped int", constant.MakeInt64(int64(q.EVFILT_FS))}, + "EVFILT_LIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_LIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_USER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_USER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_DROP": {"untyped int", constant.MakeInt64(int64(q.EV_DROP))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_CANCEL": {"untyped int", constant.MakeInt64(int64(q.F_CANCEL))}, + "F_DUP2FD": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD))}, + "F_DUP2FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD_CLOEXEC))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_OGETLK": {"untyped int", constant.MakeInt64(int64(q.F_OGETLK))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_OSETLK": {"untyped int", constant.MakeInt64(int64(q.F_OSETLK))}, + "F_OSETLKW": {"untyped int", constant.MakeInt64(int64(q.F_OSETLKW))}, + "F_RDAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_RDAHEAD))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_READAHEAD))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLK_REMOTE": {"untyped int", constant.MakeInt64(int64(q.F_SETLK_REMOTE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_UNLCKSYS": {"untyped int", constant.MakeInt64(int64(q.F_UNLCKSYS))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_CANTCONFIG": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCONFIG))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DRV_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_OACTIVE))}, + "IFF_DRV_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_RUNNING))}, + "IFF_DYING": {"untyped int", constant.MakeInt64(int64(q.IFF_DYING))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MONITOR": {"untyped int", constant.MakeInt64(int64(q.IFF_MONITOR))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PPROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PPROMISC))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RENAMING": {"untyped int", constant.MakeInt64(int64(q.IFF_RENAMING))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_SMART": {"untyped int", constant.MakeInt64(int64(q.IFF_SMART))}, + "IFF_STATICARP": {"untyped int", constant.MakeInt64(int64(q.IFF_STATICARP))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_IPXIP": {"untyped int", constant.MakeInt64(int64(q.IFT_IPXIP))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_MASK))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OLD_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OLD_DIVERT))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEND))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SKIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SKIP))}, + "IPPROTO_SPACER": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SPACER))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TLSP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDANY))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXOPTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXOPTHDR))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_GROUP_SRC_FILTER))}, + "IPV6_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_MEMBERSHIPS))}, + "IPV6_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_SOCK_SRC_FILTER))}, + "IPV6_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIN_MEMBERSHIPS))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MSFILTER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_PREFER_TEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_TEMPADDR))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IP_BINDANY))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_DONTFRAG))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_DUMMYNET3": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET3))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW3": {"untyped int", constant.MakeInt64(int64(q.IP_FW3))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_NAT_CFG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_CFG))}, + "IP_FW_NAT_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_DEL))}, + "IP_FW_NAT_GET_CONFIG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_CONFIG))}, + "IP_FW_NAT_GET_LOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_LOG))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_TABLE_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_ADD))}, + "IP_FW_TABLE_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_DEL))}, + "IP_FW_TABLE_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_FLUSH))}, + "IP_FW_TABLE_GETSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_GETSIZE))}, + "IP_FW_TABLE_LIST": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_LIST))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_GROUP_SRC_FILTER))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MAX_SOCK_MUTE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_MUTE_FILTER))}, + "IP_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_SRC_FILTER))}, + "IP_MAX_SOURCE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOURCE_FILTER))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_ONESBCAST": {"untyped int", constant.MakeInt64(int64(q.IP_ONESBCAST))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_SENDSRCADDR": {"untyped int", constant.MakeInt64(int64(q.IP_SENDSRCADDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_AUTOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_AUTOSYNC))}, + "MADV_CORE": {"untyped int", constant.MakeInt64(int64(q.MADV_CORE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOCORE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_NOSYNC))}, + "MADV_PROTECT": {"untyped int", constant.MakeInt64(int64(q.MADV_PROTECT))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ALIGNED_SUPER": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNED_SUPER))}, + "MAP_ALIGNMENT_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_MASK))}, + "MAP_ALIGNMENT_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_SHIFT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCORE))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MAP_NOSYNC))}, + "MAP_PREFAULT_READ": {"untyped int", constant.MakeInt64(int64(q.MAP_PREFAULT_READ))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_RESERVED0080": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0080))}, + "MAP_RESERVED0100": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0100))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.MSG_COMPAT))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_NBIO": {"untyped int", constant.MakeInt64(int64(q.MSG_NBIO))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_NOTIFICATION": {"untyped int", constant.MakeInt64(int64(q.MSG_NOTIFICATION))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFLISTL": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLISTL))}, + "NET_RT_IFMALIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFMALIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FFAND": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFAND))}, + "NOTE_FFCOPY": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCOPY))}, + "NOTE_FFCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCTRLMASK))}, + "NOTE_FFLAGSMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFLAGSMASK))}, + "NOTE_FFNOP": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFNOP))}, + "NOTE_FFOR": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFOR))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRIGGER": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRIGGER))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXEC": {"untyped int", constant.MakeInt64(int64(q.O_EXEC))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_TTY_INIT": {"untyped int", constant.MakeInt64(int64(q.O_TTY_INIT))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_GWFLAG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RTF_GWFLAG_COMPAT))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLDATA": {"untyped int", constant.MakeInt64(int64(q.RTF_LLDATA))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_RNH_LOCKED": {"untyped int", constant.MakeInt64(int64(q.RTF_RNH_LOCKED))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_STICKY": {"untyped int", constant.MakeInt64(int64(q.RTF_STICKY))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RTV_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.RTV_WEIGHT))}, + "RT_CACHING_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.RT_CACHING_CONTEXT))}, + "RT_DEFAULT_FIB": {"untyped int", constant.MakeInt64(int64(q.RT_DEFAULT_FIB))}, + "RT_NORTREF": {"untyped int", constant.MakeInt64(int64(q.RT_NORTREF))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SCM_BINTIME))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFIB))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGPRIVATE_0": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_0))}, + "SIOCGPRIVATE_1": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_1))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFIB))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFRVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRVNET))}, + "SIOCSIFVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFVNET))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SO_BINTIME))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LABEL": {"untyped int", constant.MakeInt64(int64(q.SO_LABEL))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LISTENINCQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENINCQLEN))}, + "SO_LISTENQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLEN))}, + "SO_LISTENQLIMIT": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLIMIT))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_NO_DDP": {"untyped int", constant.MakeInt64(int64(q.SO_NO_DDP))}, + "SO_NO_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.SO_NO_OFFLOAD))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERLABEL": {"untyped int", constant.MakeInt64(int64(q.SO_PEERLABEL))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_PROTOTYPE": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOTYPE))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SO_SETFIB))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_USER_COOKIE": {"untyped int", constant.MakeInt64(int64(q.SO_USER_COOKIE))}, + "SO_VENDOR": {"untyped int", constant.MakeInt64(int64(q.SO_VENDOR))}, + "SYS_ABORT2": {"untyped int", constant.MakeInt64(int64(q.SYS_ABORT2))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT))}, + "SYS_AUDITCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITCTL))}, + "SYS_AUDITON": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITON))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BINDAT": {"untyped int", constant.MakeInt64(int64(q.SYS_BINDAT))}, + "SYS_CAP_ENTER": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_ENTER))}, + "SYS_CAP_GETMODE": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_GETMODE))}, + "SYS_CAP_GETRIGHTS": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_GETRIGHTS))}, + "SYS_CAP_NEW": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_NEW))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHFLAGSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGSAT))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETCPUCLOCKID2": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETCPUCLOCKID2))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CONNECTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECTAT))}, + "SYS_CPUSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET))}, + "SYS_CPUSET_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETAFFINITY))}, + "SYS_CPUSET_GETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETID))}, + "SYS_CPUSET_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETAFFINITY))}, + "SYS_CPUSET_SETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETID))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_EACCESS))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FD))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_LINK))}, + "SYS_EXTATTR_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FD))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_LINK))}, + "SYS_EXTATTR_LIST_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FD))}, + "SYS_EXTATTR_LIST_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FILE))}, + "SYS_EXTATTR_LIST_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_LINK))}, + "SYS_EXTATTR_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FD))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTATTR_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_LINK))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FEXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_FEXECVE))}, + "SYS_FFCLOCK_GETCOUNTER": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETCOUNTER))}, + "SYS_FFCLOCK_GETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETESTIMATE))}, + "SYS_FFCLOCK_SETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_SETESTIMATE))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREEBSD6_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_FTRUNCATE))}, + "SYS_FREEBSD6_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_LSEEK))}, + "SYS_FREEBSD6_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_MMAP))}, + "SYS_FREEBSD6_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_PREAD))}, + "SYS_FREEBSD6_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_PWRITE))}, + "SYS_FREEBSD6_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_TRUNCATE))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT))}, + "SYS_GETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT_ADDR))}, + "SYS_GETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUID))}, + "SYS_GETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCONTEXT))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGINCLASS))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_JAIL": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL))}, + "SYS_JAIL_ATTACH": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_ATTACH))}, + "SYS_JAIL_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_GET))}, + "SYS_JAIL_REMOVE": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_REMOVE))}, + "SYS_JAIL_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_SET))}, + "SYS_KENV": {"untyped int", constant.MakeInt64(int64(q.SYS_KENV))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KLDFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIND))}, + "SYS_KLDFIRSTMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIRSTMOD))}, + "SYS_KLDLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDLOAD))}, + "SYS_KLDNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDNEXT))}, + "SYS_KLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSTAT))}, + "SYS_KLDSYM": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSYM))}, + "SYS_KLDUNLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOAD))}, + "SYS_KLDUNLOADF": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOADF))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KTIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_CREATE))}, + "SYS_KTIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_DELETE))}, + "SYS_KTIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETOVERRUN))}, + "SYS_KTIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETTIME))}, + "SYS_KTIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_SETTIME))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETFH))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_LPATHCONF))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_MAC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MAC_SYSCALL))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFIND))}, + "SYS_MODFNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFNEXT))}, + "SYS_MODNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODNEXT))}, + "SYS_MODSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODSTAT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSTAT))}, + "SYS_NLSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NLSTAT))}, + "SYS_NMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_NMOUNT))}, + "SYS_NSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NSTAT))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_NTP_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_GETTIME))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPENBSD_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENBSD_POLL))}, + "SYS_OVADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_OVADVISE))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PDFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_PDFORK))}, + "SYS_PDGETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_PDGETPID))}, + "SYS_PDKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_PDKILL))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POSIX_FADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FADVISE))}, + "SYS_POSIX_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FALLOCATE))}, + "SYS_POSIX_OPENPT": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_OPENPT))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROCCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCCTL))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_RCTL_ADD_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_ADD_RULE))}, + "SYS_RCTL_GET_LIMITS": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_LIMITS))}, + "SYS_RCTL_GET_RACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RACCT))}, + "SYS_RCTL_GET_RULES": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RULES))}, + "SYS_RCTL_REMOVE_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_REMOVE_RULE))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_RFORK))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RTPRIO": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO))}, + "SYS_RTPRIO_THREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO_THREAD))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SCTP_GENERIC_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_RECVMSG))}, + "SYS_SCTP_GENERIC_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG))}, + "SYS_SCTP_GENERIC_SENDMSG_IOV": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG_IOV))}, + "SYS_SCTP_PEELOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_PEELOFF))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT))}, + "SYS_SETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT_ADDR))}, + "SYS_SETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUID))}, + "SYS_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETCONTEXT))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFIB))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGINCLASS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_OPEN))}, + "SYS_SHM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_UNLINK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGQUEUE))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGTIMEDWAIT))}, + "SYS_SIGWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAIT))}, + "SYS_SIGWAITINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAITINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCONTEXT))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_THR_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_CREATE))}, + "SYS_THR_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_EXIT))}, + "SYS_THR_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL))}, + "SYS_THR_KILL2": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL2))}, + "SYS_THR_NEW": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_NEW))}, + "SYS_THR_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SELF))}, + "SYS_THR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SET_NAME))}, + "SYS_THR_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SUSPEND))}, + "SYS_THR_WAKE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_WAKE))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_YIELD))}, + "SYS__UMTX_LOCK": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_LOCK))}, + "SYS__UMTX_OP": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_OP))}, + "SYS__UMTX_UNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_UNLOCK))}, + "SYS___ACL_ACLCHECK_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FD))}, + "SYS___ACL_ACLCHECK_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FILE))}, + "SYS___ACL_ACLCHECK_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_LINK))}, + "SYS___ACL_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FD))}, + "SYS___ACL_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FILE))}, + "SYS___ACL_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_LINK))}, + "SYS___ACL_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FD))}, + "SYS___ACL_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FILE))}, + "SYS___ACL_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_LINK))}, + "SYS___ACL_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FD))}, + "SYS___ACL_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FILE))}, + "SYS___ACL_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_LINK))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___MAC_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_EXECVE))}, + "SYS___MAC_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FD))}, + "SYS___MAC_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FILE))}, + "SYS___MAC_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LINK))}, + "SYS___MAC_GET_PID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PID))}, + "SYS___MAC_GET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PROC))}, + "SYS___MAC_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FD))}, + "SYS___MAC_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FILE))}, + "SYS___MAC_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LINK))}, + "SYS___MAC_SET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_PROC))}, + "SYS___SETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS___SETUGID))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofBpfZbuf": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbuf))}, + "SizeofBpfZbufHeader": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbufHeader))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CA_NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_CA_NAME_MAX))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_VENDOR": {"untyped int", constant.MakeInt64(int64(q.TCP_VENDOR))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DCD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DCD))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTMASTER": {"untyped int", constant.MakeInt64(int64(q.TIOCPTMASTER))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VERASE2": {"untyped int", constant.MakeInt64(int64(q.VERASE2))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WLINUXCLONE": {"untyped int", constant.MakeInt64(int64(q.WLINUXCLONE))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WTRAPPED": {"untyped int", constant.MakeInt64(int64(q.WTRAPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_freebsd_amd64.go b/pkg/syscall/go122_export_freebsd_amd64.go new file mode 100755 index 00000000..bc959709 --- /dev/null +++ b/pkg/syscall/go122_export_freebsd_amd64.go @@ -0,0 +1,2246 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "BpfZbuf": reflect.TypeOf((*q.BpfZbuf)(nil)).Elem(), + "BpfZbufHeader": reflect.TypeOf((*q.BpfZbufHeader)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatat": reflect.ValueOf(q.Fstatat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECAPMODE": {reflect.TypeOf(q.ECAPMODE), constant.MakeInt64(int64(q.ECAPMODE))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOOFUS": {reflect.TypeOf(q.EDOOFUS), constant.MakeInt64(int64(q.EDOOFUS))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCAPABLE": {reflect.TypeOf(q.ENOTCAPABLE), constant.MakeInt64(int64(q.ENOTCAPABLE))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGLIBRT": {reflect.TypeOf(q.SIGLIBRT), constant.MakeInt64(int64(q.SIGLIBRT))}, + "SIGLWP": {reflect.TypeOf(q.SIGLWP), constant.MakeInt64(int64(q.SIGLWP))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ARP": {"untyped int", constant.MakeInt64(int64(q.AF_ARP))}, + "AF_ATM": {"untyped int", constant.MakeInt64(int64(q.AF_ATM))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_INET6_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET6_SDP))}, + "AF_INET_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET_SDP))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_NETGRAPH": {"untyped int", constant.MakeInt64(int64(q.AF_NETGRAPH))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SCLUSTER": {"untyped int", constant.MakeInt64(int64(q.AF_SCLUSTER))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SLOW": {"untyped int", constant.MakeInt64(int64(q.AF_SLOW))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VENDOR00": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR00))}, + "AF_VENDOR01": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR01))}, + "AF_VENDOR02": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR02))}, + "AF_VENDOR03": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR03))}, + "AF_VENDOR04": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR04))}, + "AF_VENDOR05": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR05))}, + "AF_VENDOR06": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR06))}, + "AF_VENDOR07": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR07))}, + "AF_VENDOR08": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR08))}, + "AF_VENDOR09": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR09))}, + "AF_VENDOR10": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR10))}, + "AF_VENDOR11": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR11))}, + "AF_VENDOR12": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR12))}, + "AF_VENDOR13": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR13))}, + "AF_VENDOR14": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR14))}, + "AF_VENDOR15": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR15))}, + "AF_VENDOR16": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR16))}, + "AF_VENDOR17": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR17))}, + "AF_VENDOR18": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR18))}, + "AF_VENDOR19": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR19))}, + "AF_VENDOR20": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR20))}, + "AF_VENDOR21": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR21))}, + "AF_VENDOR22": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR22))}, + "AF_VENDOR23": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR23))}, + "AF_VENDOR24": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR24))}, + "AF_VENDOR25": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR25))}, + "AF_VENDOR26": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR26))}, + "AF_VENDOR27": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR27))}, + "AF_VENDOR28": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR28))}, + "AF_VENDOR29": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR29))}, + "AF_VENDOR30": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR30))}, + "AF_VENDOR31": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR31))}, + "AF_VENDOR32": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR32))}, + "AF_VENDOR33": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR33))}, + "AF_VENDOR34": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR34))}, + "AF_VENDOR35": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR35))}, + "AF_VENDOR36": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR36))}, + "AF_VENDOR37": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR37))}, + "AF_VENDOR38": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR38))}, + "AF_VENDOR39": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR39))}, + "AF_VENDOR40": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR40))}, + "AF_VENDOR41": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR41))}, + "AF_VENDOR42": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR42))}, + "AF_VENDOR43": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR43))}, + "AF_VENDOR44": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR44))}, + "AF_VENDOR45": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR45))}, + "AF_VENDOR46": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR46))}, + "AF_VENDOR47": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR47))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCFEEDBACK))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRECTION))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCGETBUFMODE))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGETZMAX": {"untyped int", constant.MakeInt64(int64(q.BIOCGETZMAX))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCGTSTAMP))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCROTZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCROTZBUF))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRECTION))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCSETBUFMODE))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETFNR": {"untyped int", constant.MakeInt64(int64(q.BIOCSETFNR))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSETZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETZBUF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCSTSTAMP))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_BUFMODE_BUFFER": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_BUFFER))}, + "BPF_BUFMODE_ZBUF": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_ZBUF))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_T_BINTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME))}, + "BPF_T_BINTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_FAST))}, + "BPF_T_BINTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC))}, + "BPF_T_BINTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC_FAST))}, + "BPF_T_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FAST))}, + "BPF_T_FLAG_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FLAG_MASK))}, + "BPF_T_FORMAT_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FORMAT_MASK))}, + "BPF_T_MICROTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME))}, + "BPF_T_MICROTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_FAST))}, + "BPF_T_MICROTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC))}, + "BPF_T_MICROTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC_FAST))}, + "BPF_T_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC))}, + "BPF_T_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC_FAST))}, + "BPF_T_NANOTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME))}, + "BPF_T_NANOTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_FAST))}, + "BPF_T_NANOTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC))}, + "BPF_T_NANOTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC_FAST))}, + "BPF_T_NONE": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NONE))}, + "BPF_T_NORMAL": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NORMAL))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_AOS": {"untyped int", constant.MakeInt64(int64(q.DLT_AOS))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CAN_SOCKETCAN": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN_SOCKETCAN))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DBUS": {"untyped int", constant.MakeInt64(int64(q.DLT_DBUS))}, + "DLT_DECT": {"untyped int", constant.MakeInt64(int64(q.DLT_DECT))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_DVB_CI": {"untyped int", constant.MakeInt64(int64(q.DLT_DVB_CI))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FC_2": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2))}, + "DLT_FC_2_WITH_FRAME_DELIMS": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2_WITH_FRAME_DELIMS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_GSMTAP_ABIS": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_ABIS))}, + "DLT_GSMTAP_UM": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_UM))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NOFCS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NOFCS))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPFILTER": {"untyped int", constant.MakeInt64(int64(q.DLT_IPFILTER))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPOIB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPOIB))}, + "DLT_IPV4": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV4))}, + "DLT_IPV6": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV6))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_ATM_CEMIC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM_CEMIC))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FIBRECHANNEL))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_SRX_E2E": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SRX_E2E))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_JUNIPER_VS": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VS))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_EVDEV": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_EVDEV))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_PPP_WITHDIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_PPP_WITHDIRECTION))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MATCHING_MAX": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MAX))}, + "DLT_MATCHING_MIN": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MIN))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MPEG_2_TS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPEG_2_TS))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_MUX27010": {"untyped int", constant.MakeInt64(int64(q.DLT_MUX27010))}, + "DLT_NETANALYZER": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER))}, + "DLT_NETANALYZER_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER_TRANSPARENT))}, + "DLT_NFC_LLCP": {"untyped int", constant.MakeInt64(int64(q.DLT_NFC_LLCP))}, + "DLT_NFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_NFLOG))}, + "DLT_NG40": {"untyped int", constant.MakeInt64(int64(q.DLT_NG40))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PPP_WITH_DIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIRECTION))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_STANAG_5066_D_PDU": {"untyped int", constant.MakeInt64(int64(q.DLT_STANAG_5066_D_PDU))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_USB_LINUX_MMAPPED": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX_MMAPPED))}, + "DLT_USER0": {"untyped int", constant.MakeInt64(int64(q.DLT_USER0))}, + "DLT_USER1": {"untyped int", constant.MakeInt64(int64(q.DLT_USER1))}, + "DLT_USER10": {"untyped int", constant.MakeInt64(int64(q.DLT_USER10))}, + "DLT_USER11": {"untyped int", constant.MakeInt64(int64(q.DLT_USER11))}, + "DLT_USER12": {"untyped int", constant.MakeInt64(int64(q.DLT_USER12))}, + "DLT_USER13": {"untyped int", constant.MakeInt64(int64(q.DLT_USER13))}, + "DLT_USER14": {"untyped int", constant.MakeInt64(int64(q.DLT_USER14))}, + "DLT_USER15": {"untyped int", constant.MakeInt64(int64(q.DLT_USER15))}, + "DLT_USER2": {"untyped int", constant.MakeInt64(int64(q.DLT_USER2))}, + "DLT_USER3": {"untyped int", constant.MakeInt64(int64(q.DLT_USER3))}, + "DLT_USER4": {"untyped int", constant.MakeInt64(int64(q.DLT_USER4))}, + "DLT_USER5": {"untyped int", constant.MakeInt64(int64(q.DLT_USER5))}, + "DLT_USER6": {"untyped int", constant.MakeInt64(int64(q.DLT_USER6))}, + "DLT_USER7": {"untyped int", constant.MakeInt64(int64(q.DLT_USER7))}, + "DLT_USER8": {"untyped int", constant.MakeInt64(int64(q.DLT_USER8))}, + "DLT_USER9": {"untyped int", constant.MakeInt64(int64(q.DLT_USER9))}, + "DLT_WIHART": {"untyped int", constant.MakeInt64(int64(q.DLT_WIHART))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_FS": {"untyped int", constant.MakeInt64(int64(q.EVFILT_FS))}, + "EVFILT_LIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_LIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_USER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_USER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_DROP": {"untyped int", constant.MakeInt64(int64(q.EV_DROP))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_CANCEL": {"untyped int", constant.MakeInt64(int64(q.F_CANCEL))}, + "F_DUP2FD": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD))}, + "F_DUP2FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD_CLOEXEC))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_OGETLK": {"untyped int", constant.MakeInt64(int64(q.F_OGETLK))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_OSETLK": {"untyped int", constant.MakeInt64(int64(q.F_OSETLK))}, + "F_OSETLKW": {"untyped int", constant.MakeInt64(int64(q.F_OSETLKW))}, + "F_RDAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_RDAHEAD))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_READAHEAD))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLK_REMOTE": {"untyped int", constant.MakeInt64(int64(q.F_SETLK_REMOTE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_UNLCKSYS": {"untyped int", constant.MakeInt64(int64(q.F_UNLCKSYS))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_CANTCONFIG": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCONFIG))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DRV_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_OACTIVE))}, + "IFF_DRV_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_RUNNING))}, + "IFF_DYING": {"untyped int", constant.MakeInt64(int64(q.IFF_DYING))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MONITOR": {"untyped int", constant.MakeInt64(int64(q.IFF_MONITOR))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PPROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PPROMISC))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RENAMING": {"untyped int", constant.MakeInt64(int64(q.IFF_RENAMING))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_SMART": {"untyped int", constant.MakeInt64(int64(q.IFF_SMART))}, + "IFF_STATICARP": {"untyped int", constant.MakeInt64(int64(q.IFF_STATICARP))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_IPXIP": {"untyped int", constant.MakeInt64(int64(q.IFT_IPXIP))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_MASK))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OLD_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OLD_DIVERT))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEND))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SKIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SKIP))}, + "IPPROTO_SPACER": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SPACER))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TLSP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDANY))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXOPTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXOPTHDR))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_GROUP_SRC_FILTER))}, + "IPV6_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_MEMBERSHIPS))}, + "IPV6_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_SOCK_SRC_FILTER))}, + "IPV6_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIN_MEMBERSHIPS))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MSFILTER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_PREFER_TEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_TEMPADDR))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IP_BINDANY))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_DONTFRAG))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_DUMMYNET3": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET3))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW3": {"untyped int", constant.MakeInt64(int64(q.IP_FW3))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_NAT_CFG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_CFG))}, + "IP_FW_NAT_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_DEL))}, + "IP_FW_NAT_GET_CONFIG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_CONFIG))}, + "IP_FW_NAT_GET_LOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_LOG))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_TABLE_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_ADD))}, + "IP_FW_TABLE_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_DEL))}, + "IP_FW_TABLE_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_FLUSH))}, + "IP_FW_TABLE_GETSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_GETSIZE))}, + "IP_FW_TABLE_LIST": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_LIST))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_GROUP_SRC_FILTER))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MAX_SOCK_MUTE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_MUTE_FILTER))}, + "IP_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_SRC_FILTER))}, + "IP_MAX_SOURCE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOURCE_FILTER))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_ONESBCAST": {"untyped int", constant.MakeInt64(int64(q.IP_ONESBCAST))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_SENDSRCADDR": {"untyped int", constant.MakeInt64(int64(q.IP_SENDSRCADDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_AUTOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_AUTOSYNC))}, + "MADV_CORE": {"untyped int", constant.MakeInt64(int64(q.MADV_CORE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOCORE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_NOSYNC))}, + "MADV_PROTECT": {"untyped int", constant.MakeInt64(int64(q.MADV_PROTECT))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_32BIT": {"untyped int", constant.MakeInt64(int64(q.MAP_32BIT))}, + "MAP_ALIGNED_SUPER": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNED_SUPER))}, + "MAP_ALIGNMENT_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_MASK))}, + "MAP_ALIGNMENT_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_SHIFT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCORE))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MAP_NOSYNC))}, + "MAP_PREFAULT_READ": {"untyped int", constant.MakeInt64(int64(q.MAP_PREFAULT_READ))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_RESERVED0080": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0080))}, + "MAP_RESERVED0100": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0100))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.MSG_COMPAT))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_NBIO": {"untyped int", constant.MakeInt64(int64(q.MSG_NBIO))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_NOTIFICATION": {"untyped int", constant.MakeInt64(int64(q.MSG_NOTIFICATION))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFLISTL": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLISTL))}, + "NET_RT_IFMALIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFMALIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FFAND": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFAND))}, + "NOTE_FFCOPY": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCOPY))}, + "NOTE_FFCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCTRLMASK))}, + "NOTE_FFLAGSMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFLAGSMASK))}, + "NOTE_FFNOP": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFNOP))}, + "NOTE_FFOR": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFOR))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRIGGER": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRIGGER))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXEC": {"untyped int", constant.MakeInt64(int64(q.O_EXEC))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_TTY_INIT": {"untyped int", constant.MakeInt64(int64(q.O_TTY_INIT))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_GWFLAG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RTF_GWFLAG_COMPAT))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLDATA": {"untyped int", constant.MakeInt64(int64(q.RTF_LLDATA))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_RNH_LOCKED": {"untyped int", constant.MakeInt64(int64(q.RTF_RNH_LOCKED))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_STICKY": {"untyped int", constant.MakeInt64(int64(q.RTF_STICKY))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RTV_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.RTV_WEIGHT))}, + "RT_CACHING_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.RT_CACHING_CONTEXT))}, + "RT_DEFAULT_FIB": {"untyped int", constant.MakeInt64(int64(q.RT_DEFAULT_FIB))}, + "RT_NORTREF": {"untyped int", constant.MakeInt64(int64(q.RT_NORTREF))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SCM_BINTIME))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFIB))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGPRIVATE_0": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_0))}, + "SIOCGPRIVATE_1": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_1))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFIB))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFRVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRVNET))}, + "SIOCSIFVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFVNET))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SO_BINTIME))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LABEL": {"untyped int", constant.MakeInt64(int64(q.SO_LABEL))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LISTENINCQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENINCQLEN))}, + "SO_LISTENQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLEN))}, + "SO_LISTENQLIMIT": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLIMIT))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_NO_DDP": {"untyped int", constant.MakeInt64(int64(q.SO_NO_DDP))}, + "SO_NO_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.SO_NO_OFFLOAD))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERLABEL": {"untyped int", constant.MakeInt64(int64(q.SO_PEERLABEL))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_PROTOTYPE": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOTYPE))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SO_SETFIB))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_USER_COOKIE": {"untyped int", constant.MakeInt64(int64(q.SO_USER_COOKIE))}, + "SO_VENDOR": {"untyped int", constant.MakeInt64(int64(q.SO_VENDOR))}, + "SYS_ABORT2": {"untyped int", constant.MakeInt64(int64(q.SYS_ABORT2))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT))}, + "SYS_AUDITCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITCTL))}, + "SYS_AUDITON": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITON))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BINDAT": {"untyped int", constant.MakeInt64(int64(q.SYS_BINDAT))}, + "SYS_CAP_ENTER": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_ENTER))}, + "SYS_CAP_GETMODE": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_GETMODE))}, + "SYS_CAP_GETRIGHTS": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_GETRIGHTS))}, + "SYS_CAP_NEW": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_NEW))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHFLAGSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGSAT))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETCPUCLOCKID2": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETCPUCLOCKID2))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CONNECTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECTAT))}, + "SYS_CPUSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET))}, + "SYS_CPUSET_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETAFFINITY))}, + "SYS_CPUSET_GETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETID))}, + "SYS_CPUSET_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETAFFINITY))}, + "SYS_CPUSET_SETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETID))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_EACCESS))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FD))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_LINK))}, + "SYS_EXTATTR_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FD))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_LINK))}, + "SYS_EXTATTR_LIST_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FD))}, + "SYS_EXTATTR_LIST_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FILE))}, + "SYS_EXTATTR_LIST_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_LINK))}, + "SYS_EXTATTR_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FD))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTATTR_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_LINK))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FEXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_FEXECVE))}, + "SYS_FFCLOCK_GETCOUNTER": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETCOUNTER))}, + "SYS_FFCLOCK_GETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETESTIMATE))}, + "SYS_FFCLOCK_SETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_SETESTIMATE))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREEBSD6_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_FTRUNCATE))}, + "SYS_FREEBSD6_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_LSEEK))}, + "SYS_FREEBSD6_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_MMAP))}, + "SYS_FREEBSD6_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_PREAD))}, + "SYS_FREEBSD6_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_PWRITE))}, + "SYS_FREEBSD6_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_TRUNCATE))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT))}, + "SYS_GETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT_ADDR))}, + "SYS_GETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUID))}, + "SYS_GETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCONTEXT))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGINCLASS))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_JAIL": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL))}, + "SYS_JAIL_ATTACH": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_ATTACH))}, + "SYS_JAIL_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_GET))}, + "SYS_JAIL_REMOVE": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_REMOVE))}, + "SYS_JAIL_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_SET))}, + "SYS_KENV": {"untyped int", constant.MakeInt64(int64(q.SYS_KENV))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KLDFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIND))}, + "SYS_KLDFIRSTMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIRSTMOD))}, + "SYS_KLDLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDLOAD))}, + "SYS_KLDNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDNEXT))}, + "SYS_KLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSTAT))}, + "SYS_KLDSYM": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSYM))}, + "SYS_KLDUNLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOAD))}, + "SYS_KLDUNLOADF": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOADF))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KTIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_CREATE))}, + "SYS_KTIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_DELETE))}, + "SYS_KTIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETOVERRUN))}, + "SYS_KTIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETTIME))}, + "SYS_KTIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_SETTIME))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETFH))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_LPATHCONF))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_MAC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MAC_SYSCALL))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFIND))}, + "SYS_MODFNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFNEXT))}, + "SYS_MODNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODNEXT))}, + "SYS_MODSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODSTAT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSTAT))}, + "SYS_NLSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NLSTAT))}, + "SYS_NMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_NMOUNT))}, + "SYS_NSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NSTAT))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_NTP_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_GETTIME))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPENBSD_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENBSD_POLL))}, + "SYS_OVADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_OVADVISE))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PDFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_PDFORK))}, + "SYS_PDGETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_PDGETPID))}, + "SYS_PDKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_PDKILL))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POSIX_FADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FADVISE))}, + "SYS_POSIX_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FALLOCATE))}, + "SYS_POSIX_OPENPT": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_OPENPT))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROCCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCCTL))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_RCTL_ADD_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_ADD_RULE))}, + "SYS_RCTL_GET_LIMITS": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_LIMITS))}, + "SYS_RCTL_GET_RACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RACCT))}, + "SYS_RCTL_GET_RULES": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RULES))}, + "SYS_RCTL_REMOVE_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_REMOVE_RULE))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_RFORK))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RTPRIO": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO))}, + "SYS_RTPRIO_THREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO_THREAD))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SCTP_GENERIC_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_RECVMSG))}, + "SYS_SCTP_GENERIC_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG))}, + "SYS_SCTP_GENERIC_SENDMSG_IOV": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG_IOV))}, + "SYS_SCTP_PEELOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_PEELOFF))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT))}, + "SYS_SETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT_ADDR))}, + "SYS_SETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUID))}, + "SYS_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETCONTEXT))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFIB))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGINCLASS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_OPEN))}, + "SYS_SHM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_UNLINK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGQUEUE))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGTIMEDWAIT))}, + "SYS_SIGWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAIT))}, + "SYS_SIGWAITINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAITINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCONTEXT))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_THR_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_CREATE))}, + "SYS_THR_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_EXIT))}, + "SYS_THR_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL))}, + "SYS_THR_KILL2": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL2))}, + "SYS_THR_NEW": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_NEW))}, + "SYS_THR_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SELF))}, + "SYS_THR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SET_NAME))}, + "SYS_THR_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SUSPEND))}, + "SYS_THR_WAKE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_WAKE))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_YIELD))}, + "SYS__UMTX_LOCK": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_LOCK))}, + "SYS__UMTX_OP": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_OP))}, + "SYS__UMTX_UNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_UNLOCK))}, + "SYS___ACL_ACLCHECK_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FD))}, + "SYS___ACL_ACLCHECK_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FILE))}, + "SYS___ACL_ACLCHECK_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_LINK))}, + "SYS___ACL_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FD))}, + "SYS___ACL_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FILE))}, + "SYS___ACL_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_LINK))}, + "SYS___ACL_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FD))}, + "SYS___ACL_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FILE))}, + "SYS___ACL_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_LINK))}, + "SYS___ACL_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FD))}, + "SYS___ACL_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FILE))}, + "SYS___ACL_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_LINK))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___MAC_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_EXECVE))}, + "SYS___MAC_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FD))}, + "SYS___MAC_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FILE))}, + "SYS___MAC_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LINK))}, + "SYS___MAC_GET_PID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PID))}, + "SYS___MAC_GET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PROC))}, + "SYS___MAC_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FD))}, + "SYS___MAC_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FILE))}, + "SYS___MAC_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LINK))}, + "SYS___MAC_SET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_PROC))}, + "SYS___SETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS___SETUGID))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofBpfZbuf": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbuf))}, + "SizeofBpfZbufHeader": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbufHeader))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CA_NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_CA_NAME_MAX))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_VENDOR": {"untyped int", constant.MakeInt64(int64(q.TCP_VENDOR))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DCD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DCD))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTMASTER": {"untyped int", constant.MakeInt64(int64(q.TIOCPTMASTER))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VERASE2": {"untyped int", constant.MakeInt64(int64(q.VERASE2))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WLINUXCLONE": {"untyped int", constant.MakeInt64(int64(q.WLINUXCLONE))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WTRAPPED": {"untyped int", constant.MakeInt64(int64(q.WTRAPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_freebsd_arm.go b/pkg/syscall/go122_export_freebsd_arm.go new file mode 100755 index 00000000..8ce2bd6a --- /dev/null +++ b/pkg/syscall/go122_export_freebsd_arm.go @@ -0,0 +1,2245 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "BpfZbuf": reflect.TypeOf((*q.BpfZbuf)(nil)).Elem(), + "BpfZbufHeader": reflect.TypeOf((*q.BpfZbufHeader)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatat": reflect.ValueOf(q.Fstatat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECAPMODE": {reflect.TypeOf(q.ECAPMODE), constant.MakeInt64(int64(q.ECAPMODE))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOOFUS": {reflect.TypeOf(q.EDOOFUS), constant.MakeInt64(int64(q.EDOOFUS))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCAPABLE": {reflect.TypeOf(q.ENOTCAPABLE), constant.MakeInt64(int64(q.ENOTCAPABLE))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGLIBRT": {reflect.TypeOf(q.SIGLIBRT), constant.MakeInt64(int64(q.SIGLIBRT))}, + "SIGLWP": {reflect.TypeOf(q.SIGLWP), constant.MakeInt64(int64(q.SIGLWP))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ARP": {"untyped int", constant.MakeInt64(int64(q.AF_ARP))}, + "AF_ATM": {"untyped int", constant.MakeInt64(int64(q.AF_ATM))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_INET6_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET6_SDP))}, + "AF_INET_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET_SDP))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_NETGRAPH": {"untyped int", constant.MakeInt64(int64(q.AF_NETGRAPH))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SCLUSTER": {"untyped int", constant.MakeInt64(int64(q.AF_SCLUSTER))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SLOW": {"untyped int", constant.MakeInt64(int64(q.AF_SLOW))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VENDOR00": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR00))}, + "AF_VENDOR01": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR01))}, + "AF_VENDOR02": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR02))}, + "AF_VENDOR03": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR03))}, + "AF_VENDOR04": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR04))}, + "AF_VENDOR05": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR05))}, + "AF_VENDOR06": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR06))}, + "AF_VENDOR07": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR07))}, + "AF_VENDOR08": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR08))}, + "AF_VENDOR09": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR09))}, + "AF_VENDOR10": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR10))}, + "AF_VENDOR11": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR11))}, + "AF_VENDOR12": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR12))}, + "AF_VENDOR13": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR13))}, + "AF_VENDOR14": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR14))}, + "AF_VENDOR15": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR15))}, + "AF_VENDOR16": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR16))}, + "AF_VENDOR17": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR17))}, + "AF_VENDOR18": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR18))}, + "AF_VENDOR19": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR19))}, + "AF_VENDOR20": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR20))}, + "AF_VENDOR21": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR21))}, + "AF_VENDOR22": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR22))}, + "AF_VENDOR23": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR23))}, + "AF_VENDOR24": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR24))}, + "AF_VENDOR25": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR25))}, + "AF_VENDOR26": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR26))}, + "AF_VENDOR27": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR27))}, + "AF_VENDOR28": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR28))}, + "AF_VENDOR29": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR29))}, + "AF_VENDOR30": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR30))}, + "AF_VENDOR31": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR31))}, + "AF_VENDOR32": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR32))}, + "AF_VENDOR33": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR33))}, + "AF_VENDOR34": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR34))}, + "AF_VENDOR35": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR35))}, + "AF_VENDOR36": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR36))}, + "AF_VENDOR37": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR37))}, + "AF_VENDOR38": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR38))}, + "AF_VENDOR39": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR39))}, + "AF_VENDOR40": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR40))}, + "AF_VENDOR41": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR41))}, + "AF_VENDOR42": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR42))}, + "AF_VENDOR43": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR43))}, + "AF_VENDOR44": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR44))}, + "AF_VENDOR45": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR45))}, + "AF_VENDOR46": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR46))}, + "AF_VENDOR47": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR47))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCFEEDBACK))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRECTION))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCGETBUFMODE))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGETZMAX": {"untyped int", constant.MakeInt64(int64(q.BIOCGETZMAX))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCGTSTAMP))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCROTZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCROTZBUF))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRECTION))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCSETBUFMODE))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETFNR": {"untyped int", constant.MakeInt64(int64(q.BIOCSETFNR))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSETZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETZBUF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCSTSTAMP))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_BUFMODE_BUFFER": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_BUFFER))}, + "BPF_BUFMODE_ZBUF": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_ZBUF))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_T_BINTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME))}, + "BPF_T_BINTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_FAST))}, + "BPF_T_BINTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC))}, + "BPF_T_BINTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC_FAST))}, + "BPF_T_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FAST))}, + "BPF_T_FLAG_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FLAG_MASK))}, + "BPF_T_FORMAT_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FORMAT_MASK))}, + "BPF_T_MICROTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME))}, + "BPF_T_MICROTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_FAST))}, + "BPF_T_MICROTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC))}, + "BPF_T_MICROTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC_FAST))}, + "BPF_T_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC))}, + "BPF_T_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC_FAST))}, + "BPF_T_NANOTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME))}, + "BPF_T_NANOTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_FAST))}, + "BPF_T_NANOTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC))}, + "BPF_T_NANOTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC_FAST))}, + "BPF_T_NONE": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NONE))}, + "BPF_T_NORMAL": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NORMAL))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_AOS": {"untyped int", constant.MakeInt64(int64(q.DLT_AOS))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CAN_SOCKETCAN": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN_SOCKETCAN))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DBUS": {"untyped int", constant.MakeInt64(int64(q.DLT_DBUS))}, + "DLT_DECT": {"untyped int", constant.MakeInt64(int64(q.DLT_DECT))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_DVB_CI": {"untyped int", constant.MakeInt64(int64(q.DLT_DVB_CI))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FC_2": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2))}, + "DLT_FC_2_WITH_FRAME_DELIMS": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2_WITH_FRAME_DELIMS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_GSMTAP_ABIS": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_ABIS))}, + "DLT_GSMTAP_UM": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_UM))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NOFCS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NOFCS))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPFILTER": {"untyped int", constant.MakeInt64(int64(q.DLT_IPFILTER))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPOIB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPOIB))}, + "DLT_IPV4": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV4))}, + "DLT_IPV6": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV6))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_ATM_CEMIC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM_CEMIC))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FIBRECHANNEL))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_SRX_E2E": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SRX_E2E))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_JUNIPER_VS": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VS))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_EVDEV": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_EVDEV))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_PPP_WITHDIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_PPP_WITHDIRECTION))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MATCHING_MAX": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MAX))}, + "DLT_MATCHING_MIN": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MIN))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MPEG_2_TS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPEG_2_TS))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_MUX27010": {"untyped int", constant.MakeInt64(int64(q.DLT_MUX27010))}, + "DLT_NETANALYZER": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER))}, + "DLT_NETANALYZER_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER_TRANSPARENT))}, + "DLT_NFC_LLCP": {"untyped int", constant.MakeInt64(int64(q.DLT_NFC_LLCP))}, + "DLT_NFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_NFLOG))}, + "DLT_NG40": {"untyped int", constant.MakeInt64(int64(q.DLT_NG40))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PPP_WITH_DIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIRECTION))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_STANAG_5066_D_PDU": {"untyped int", constant.MakeInt64(int64(q.DLT_STANAG_5066_D_PDU))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_USB_LINUX_MMAPPED": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX_MMAPPED))}, + "DLT_USER0": {"untyped int", constant.MakeInt64(int64(q.DLT_USER0))}, + "DLT_USER1": {"untyped int", constant.MakeInt64(int64(q.DLT_USER1))}, + "DLT_USER10": {"untyped int", constant.MakeInt64(int64(q.DLT_USER10))}, + "DLT_USER11": {"untyped int", constant.MakeInt64(int64(q.DLT_USER11))}, + "DLT_USER12": {"untyped int", constant.MakeInt64(int64(q.DLT_USER12))}, + "DLT_USER13": {"untyped int", constant.MakeInt64(int64(q.DLT_USER13))}, + "DLT_USER14": {"untyped int", constant.MakeInt64(int64(q.DLT_USER14))}, + "DLT_USER15": {"untyped int", constant.MakeInt64(int64(q.DLT_USER15))}, + "DLT_USER2": {"untyped int", constant.MakeInt64(int64(q.DLT_USER2))}, + "DLT_USER3": {"untyped int", constant.MakeInt64(int64(q.DLT_USER3))}, + "DLT_USER4": {"untyped int", constant.MakeInt64(int64(q.DLT_USER4))}, + "DLT_USER5": {"untyped int", constant.MakeInt64(int64(q.DLT_USER5))}, + "DLT_USER6": {"untyped int", constant.MakeInt64(int64(q.DLT_USER6))}, + "DLT_USER7": {"untyped int", constant.MakeInt64(int64(q.DLT_USER7))}, + "DLT_USER8": {"untyped int", constant.MakeInt64(int64(q.DLT_USER8))}, + "DLT_USER9": {"untyped int", constant.MakeInt64(int64(q.DLT_USER9))}, + "DLT_WIHART": {"untyped int", constant.MakeInt64(int64(q.DLT_WIHART))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_FS": {"untyped int", constant.MakeInt64(int64(q.EVFILT_FS))}, + "EVFILT_LIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_LIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_USER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_USER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_DROP": {"untyped int", constant.MakeInt64(int64(q.EV_DROP))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_CANCEL": {"untyped int", constant.MakeInt64(int64(q.F_CANCEL))}, + "F_DUP2FD": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD))}, + "F_DUP2FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD_CLOEXEC))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_OGETLK": {"untyped int", constant.MakeInt64(int64(q.F_OGETLK))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_OSETLK": {"untyped int", constant.MakeInt64(int64(q.F_OSETLK))}, + "F_OSETLKW": {"untyped int", constant.MakeInt64(int64(q.F_OSETLKW))}, + "F_RDAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_RDAHEAD))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_READAHEAD))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLK_REMOTE": {"untyped int", constant.MakeInt64(int64(q.F_SETLK_REMOTE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_UNLCKSYS": {"untyped int", constant.MakeInt64(int64(q.F_UNLCKSYS))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_CANTCONFIG": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCONFIG))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DRV_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_OACTIVE))}, + "IFF_DRV_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_RUNNING))}, + "IFF_DYING": {"untyped int", constant.MakeInt64(int64(q.IFF_DYING))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MONITOR": {"untyped int", constant.MakeInt64(int64(q.IFF_MONITOR))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PPROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PPROMISC))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RENAMING": {"untyped int", constant.MakeInt64(int64(q.IFF_RENAMING))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_SMART": {"untyped int", constant.MakeInt64(int64(q.IFF_SMART))}, + "IFF_STATICARP": {"untyped int", constant.MakeInt64(int64(q.IFF_STATICARP))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_IPXIP": {"untyped int", constant.MakeInt64(int64(q.IFT_IPXIP))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_MASK))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OLD_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OLD_DIVERT))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEND))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SKIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SKIP))}, + "IPPROTO_SPACER": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SPACER))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TLSP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDANY))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXOPTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXOPTHDR))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_GROUP_SRC_FILTER))}, + "IPV6_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_MEMBERSHIPS))}, + "IPV6_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_SOCK_SRC_FILTER))}, + "IPV6_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIN_MEMBERSHIPS))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MSFILTER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_PREFER_TEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_TEMPADDR))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IP_BINDANY))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_DONTFRAG))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_DUMMYNET3": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET3))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW3": {"untyped int", constant.MakeInt64(int64(q.IP_FW3))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_NAT_CFG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_CFG))}, + "IP_FW_NAT_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_DEL))}, + "IP_FW_NAT_GET_CONFIG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_CONFIG))}, + "IP_FW_NAT_GET_LOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_LOG))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_TABLE_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_ADD))}, + "IP_FW_TABLE_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_DEL))}, + "IP_FW_TABLE_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_FLUSH))}, + "IP_FW_TABLE_GETSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_GETSIZE))}, + "IP_FW_TABLE_LIST": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_LIST))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_GROUP_SRC_FILTER))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MAX_SOCK_MUTE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_MUTE_FILTER))}, + "IP_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_SRC_FILTER))}, + "IP_MAX_SOURCE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOURCE_FILTER))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_ONESBCAST": {"untyped int", constant.MakeInt64(int64(q.IP_ONESBCAST))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_SENDSRCADDR": {"untyped int", constant.MakeInt64(int64(q.IP_SENDSRCADDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_AUTOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_AUTOSYNC))}, + "MADV_CORE": {"untyped int", constant.MakeInt64(int64(q.MADV_CORE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOCORE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_NOSYNC))}, + "MADV_PROTECT": {"untyped int", constant.MakeInt64(int64(q.MADV_PROTECT))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ALIGNED_SUPER": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNED_SUPER))}, + "MAP_ALIGNMENT_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_MASK))}, + "MAP_ALIGNMENT_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_SHIFT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCORE))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MAP_NOSYNC))}, + "MAP_PREFAULT_READ": {"untyped int", constant.MakeInt64(int64(q.MAP_PREFAULT_READ))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_RESERVED0080": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0080))}, + "MAP_RESERVED0100": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0100))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.MSG_COMPAT))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_NBIO": {"untyped int", constant.MakeInt64(int64(q.MSG_NBIO))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_NOTIFICATION": {"untyped int", constant.MakeInt64(int64(q.MSG_NOTIFICATION))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFLISTL": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLISTL))}, + "NET_RT_IFMALIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFMALIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FFAND": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFAND))}, + "NOTE_FFCOPY": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCOPY))}, + "NOTE_FFCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCTRLMASK))}, + "NOTE_FFLAGSMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFLAGSMASK))}, + "NOTE_FFNOP": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFNOP))}, + "NOTE_FFOR": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFOR))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRIGGER": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRIGGER))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXEC": {"untyped int", constant.MakeInt64(int64(q.O_EXEC))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_TTY_INIT": {"untyped int", constant.MakeInt64(int64(q.O_TTY_INIT))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_GWFLAG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RTF_GWFLAG_COMPAT))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLDATA": {"untyped int", constant.MakeInt64(int64(q.RTF_LLDATA))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_RNH_LOCKED": {"untyped int", constant.MakeInt64(int64(q.RTF_RNH_LOCKED))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_STICKY": {"untyped int", constant.MakeInt64(int64(q.RTF_STICKY))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RTV_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.RTV_WEIGHT))}, + "RT_CACHING_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.RT_CACHING_CONTEXT))}, + "RT_DEFAULT_FIB": {"untyped int", constant.MakeInt64(int64(q.RT_DEFAULT_FIB))}, + "RT_NORTREF": {"untyped int", constant.MakeInt64(int64(q.RT_NORTREF))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SCM_BINTIME))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFIB))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGPRIVATE_0": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_0))}, + "SIOCGPRIVATE_1": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_1))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFIB))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFRVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRVNET))}, + "SIOCSIFVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFVNET))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SO_BINTIME))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LABEL": {"untyped int", constant.MakeInt64(int64(q.SO_LABEL))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LISTENINCQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENINCQLEN))}, + "SO_LISTENQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLEN))}, + "SO_LISTENQLIMIT": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLIMIT))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_NO_DDP": {"untyped int", constant.MakeInt64(int64(q.SO_NO_DDP))}, + "SO_NO_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.SO_NO_OFFLOAD))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERLABEL": {"untyped int", constant.MakeInt64(int64(q.SO_PEERLABEL))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_PROTOTYPE": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOTYPE))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SO_SETFIB))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_USER_COOKIE": {"untyped int", constant.MakeInt64(int64(q.SO_USER_COOKIE))}, + "SO_VENDOR": {"untyped int", constant.MakeInt64(int64(q.SO_VENDOR))}, + "SYS_ABORT2": {"untyped int", constant.MakeInt64(int64(q.SYS_ABORT2))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT))}, + "SYS_AUDITCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITCTL))}, + "SYS_AUDITON": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITON))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BINDAT": {"untyped int", constant.MakeInt64(int64(q.SYS_BINDAT))}, + "SYS_CAP_ENTER": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_ENTER))}, + "SYS_CAP_GETMODE": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_GETMODE))}, + "SYS_CAP_GETRIGHTS": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_GETRIGHTS))}, + "SYS_CAP_NEW": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_NEW))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHFLAGSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGSAT))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETCPUCLOCKID2": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETCPUCLOCKID2))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CONNECTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECTAT))}, + "SYS_CPUSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET))}, + "SYS_CPUSET_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETAFFINITY))}, + "SYS_CPUSET_GETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETID))}, + "SYS_CPUSET_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETAFFINITY))}, + "SYS_CPUSET_SETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETID))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_EACCESS))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FD))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_LINK))}, + "SYS_EXTATTR_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FD))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_LINK))}, + "SYS_EXTATTR_LIST_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FD))}, + "SYS_EXTATTR_LIST_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FILE))}, + "SYS_EXTATTR_LIST_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_LINK))}, + "SYS_EXTATTR_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FD))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTATTR_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_LINK))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FEXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_FEXECVE))}, + "SYS_FFCLOCK_GETCOUNTER": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETCOUNTER))}, + "SYS_FFCLOCK_GETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETESTIMATE))}, + "SYS_FFCLOCK_SETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_SETESTIMATE))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREEBSD6_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_FTRUNCATE))}, + "SYS_FREEBSD6_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_LSEEK))}, + "SYS_FREEBSD6_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_MMAP))}, + "SYS_FREEBSD6_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_PREAD))}, + "SYS_FREEBSD6_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_PWRITE))}, + "SYS_FREEBSD6_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_TRUNCATE))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT))}, + "SYS_GETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT_ADDR))}, + "SYS_GETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUID))}, + "SYS_GETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCONTEXT))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGINCLASS))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_JAIL": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL))}, + "SYS_JAIL_ATTACH": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_ATTACH))}, + "SYS_JAIL_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_GET))}, + "SYS_JAIL_REMOVE": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_REMOVE))}, + "SYS_JAIL_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_SET))}, + "SYS_KENV": {"untyped int", constant.MakeInt64(int64(q.SYS_KENV))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KLDFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIND))}, + "SYS_KLDFIRSTMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIRSTMOD))}, + "SYS_KLDLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDLOAD))}, + "SYS_KLDNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDNEXT))}, + "SYS_KLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSTAT))}, + "SYS_KLDSYM": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSYM))}, + "SYS_KLDUNLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOAD))}, + "SYS_KLDUNLOADF": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOADF))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KTIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_CREATE))}, + "SYS_KTIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_DELETE))}, + "SYS_KTIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETOVERRUN))}, + "SYS_KTIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETTIME))}, + "SYS_KTIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_SETTIME))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETFH))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_LPATHCONF))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_MAC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MAC_SYSCALL))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFIND))}, + "SYS_MODFNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFNEXT))}, + "SYS_MODNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODNEXT))}, + "SYS_MODSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODSTAT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSTAT))}, + "SYS_NLSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NLSTAT))}, + "SYS_NMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_NMOUNT))}, + "SYS_NSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NSTAT))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_NTP_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_GETTIME))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPENBSD_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENBSD_POLL))}, + "SYS_OVADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_OVADVISE))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PDFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_PDFORK))}, + "SYS_PDGETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_PDGETPID))}, + "SYS_PDKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_PDKILL))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POSIX_FADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FADVISE))}, + "SYS_POSIX_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FALLOCATE))}, + "SYS_POSIX_OPENPT": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_OPENPT))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROCCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCCTL))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_RCTL_ADD_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_ADD_RULE))}, + "SYS_RCTL_GET_LIMITS": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_LIMITS))}, + "SYS_RCTL_GET_RACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RACCT))}, + "SYS_RCTL_GET_RULES": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RULES))}, + "SYS_RCTL_REMOVE_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_REMOVE_RULE))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_RFORK))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RTPRIO": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO))}, + "SYS_RTPRIO_THREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO_THREAD))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SCTP_GENERIC_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_RECVMSG))}, + "SYS_SCTP_GENERIC_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG))}, + "SYS_SCTP_GENERIC_SENDMSG_IOV": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG_IOV))}, + "SYS_SCTP_PEELOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_PEELOFF))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT))}, + "SYS_SETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT_ADDR))}, + "SYS_SETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUID))}, + "SYS_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETCONTEXT))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFIB))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGINCLASS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_OPEN))}, + "SYS_SHM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_UNLINK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGQUEUE))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGTIMEDWAIT))}, + "SYS_SIGWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAIT))}, + "SYS_SIGWAITINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAITINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCONTEXT))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_THR_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_CREATE))}, + "SYS_THR_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_EXIT))}, + "SYS_THR_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL))}, + "SYS_THR_KILL2": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL2))}, + "SYS_THR_NEW": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_NEW))}, + "SYS_THR_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SELF))}, + "SYS_THR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SET_NAME))}, + "SYS_THR_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SUSPEND))}, + "SYS_THR_WAKE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_WAKE))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_YIELD))}, + "SYS__UMTX_LOCK": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_LOCK))}, + "SYS__UMTX_OP": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_OP))}, + "SYS__UMTX_UNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_UNLOCK))}, + "SYS___ACL_ACLCHECK_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FD))}, + "SYS___ACL_ACLCHECK_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FILE))}, + "SYS___ACL_ACLCHECK_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_LINK))}, + "SYS___ACL_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FD))}, + "SYS___ACL_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FILE))}, + "SYS___ACL_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_LINK))}, + "SYS___ACL_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FD))}, + "SYS___ACL_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FILE))}, + "SYS___ACL_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_LINK))}, + "SYS___ACL_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FD))}, + "SYS___ACL_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FILE))}, + "SYS___ACL_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_LINK))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___MAC_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_EXECVE))}, + "SYS___MAC_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FD))}, + "SYS___MAC_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FILE))}, + "SYS___MAC_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LINK))}, + "SYS___MAC_GET_PID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PID))}, + "SYS___MAC_GET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PROC))}, + "SYS___MAC_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FD))}, + "SYS___MAC_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FILE))}, + "SYS___MAC_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LINK))}, + "SYS___MAC_SET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_PROC))}, + "SYS___SETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS___SETUGID))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofBpfZbuf": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbuf))}, + "SizeofBpfZbufHeader": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbufHeader))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CA_NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_CA_NAME_MAX))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_VENDOR": {"untyped int", constant.MakeInt64(int64(q.TCP_VENDOR))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DCD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DCD))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTMASTER": {"untyped int", constant.MakeInt64(int64(q.TIOCPTMASTER))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VERASE2": {"untyped int", constant.MakeInt64(int64(q.VERASE2))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WLINUXCLONE": {"untyped int", constant.MakeInt64(int64(q.WLINUXCLONE))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WTRAPPED": {"untyped int", constant.MakeInt64(int64(q.WTRAPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_freebsd_arm64.go b/pkg/syscall/go122_export_freebsd_arm64.go new file mode 100755 index 00000000..57e2f760 --- /dev/null +++ b/pkg/syscall/go122_export_freebsd_arm64.go @@ -0,0 +1,2291 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "BpfZbuf": reflect.TypeOf((*q.BpfZbuf)(nil)).Elem(), + "BpfZbufHeader": reflect.TypeOf((*q.BpfZbufHeader)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatat": reflect.ValueOf(q.Fstatat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECAPMODE": {reflect.TypeOf(q.ECAPMODE), constant.MakeInt64(int64(q.ECAPMODE))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOOFUS": {reflect.TypeOf(q.EDOOFUS), constant.MakeInt64(int64(q.EDOOFUS))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCAPABLE": {reflect.TypeOf(q.ENOTCAPABLE), constant.MakeInt64(int64(q.ENOTCAPABLE))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGLIBRT": {reflect.TypeOf(q.SIGLIBRT), constant.MakeInt64(int64(q.SIGLIBRT))}, + "SIGLWP": {reflect.TypeOf(q.SIGLWP), constant.MakeInt64(int64(q.SIGLWP))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ARP": {"untyped int", constant.MakeInt64(int64(q.AF_ARP))}, + "AF_ATM": {"untyped int", constant.MakeInt64(int64(q.AF_ATM))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_INET6_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET6_SDP))}, + "AF_INET_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET_SDP))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_NETGRAPH": {"untyped int", constant.MakeInt64(int64(q.AF_NETGRAPH))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SCLUSTER": {"untyped int", constant.MakeInt64(int64(q.AF_SCLUSTER))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SLOW": {"untyped int", constant.MakeInt64(int64(q.AF_SLOW))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VENDOR00": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR00))}, + "AF_VENDOR01": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR01))}, + "AF_VENDOR02": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR02))}, + "AF_VENDOR03": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR03))}, + "AF_VENDOR04": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR04))}, + "AF_VENDOR05": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR05))}, + "AF_VENDOR06": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR06))}, + "AF_VENDOR07": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR07))}, + "AF_VENDOR08": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR08))}, + "AF_VENDOR09": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR09))}, + "AF_VENDOR10": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR10))}, + "AF_VENDOR11": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR11))}, + "AF_VENDOR12": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR12))}, + "AF_VENDOR13": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR13))}, + "AF_VENDOR14": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR14))}, + "AF_VENDOR15": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR15))}, + "AF_VENDOR16": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR16))}, + "AF_VENDOR17": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR17))}, + "AF_VENDOR18": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR18))}, + "AF_VENDOR19": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR19))}, + "AF_VENDOR20": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR20))}, + "AF_VENDOR21": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR21))}, + "AF_VENDOR22": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR22))}, + "AF_VENDOR23": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR23))}, + "AF_VENDOR24": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR24))}, + "AF_VENDOR25": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR25))}, + "AF_VENDOR26": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR26))}, + "AF_VENDOR27": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR27))}, + "AF_VENDOR28": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR28))}, + "AF_VENDOR29": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR29))}, + "AF_VENDOR30": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR30))}, + "AF_VENDOR31": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR31))}, + "AF_VENDOR32": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR32))}, + "AF_VENDOR33": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR33))}, + "AF_VENDOR34": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR34))}, + "AF_VENDOR35": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR35))}, + "AF_VENDOR36": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR36))}, + "AF_VENDOR37": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR37))}, + "AF_VENDOR38": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR38))}, + "AF_VENDOR39": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR39))}, + "AF_VENDOR40": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR40))}, + "AF_VENDOR41": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR41))}, + "AF_VENDOR42": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR42))}, + "AF_VENDOR43": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR43))}, + "AF_VENDOR44": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR44))}, + "AF_VENDOR45": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR45))}, + "AF_VENDOR46": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR46))}, + "AF_VENDOR47": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR47))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCFEEDBACK))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRECTION))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCGETBUFMODE))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGETZMAX": {"untyped int", constant.MakeInt64(int64(q.BIOCGETZMAX))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCGTSTAMP))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCROTZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCROTZBUF))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRECTION))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCSETBUFMODE))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETFNR": {"untyped int", constant.MakeInt64(int64(q.BIOCSETFNR))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSETZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETZBUF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCSTSTAMP))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_BUFMODE_BUFFER": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_BUFFER))}, + "BPF_BUFMODE_ZBUF": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_ZBUF))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_T_BINTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME))}, + "BPF_T_BINTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_FAST))}, + "BPF_T_BINTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC))}, + "BPF_T_BINTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC_FAST))}, + "BPF_T_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FAST))}, + "BPF_T_FLAG_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FLAG_MASK))}, + "BPF_T_FORMAT_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FORMAT_MASK))}, + "BPF_T_MICROTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME))}, + "BPF_T_MICROTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_FAST))}, + "BPF_T_MICROTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC))}, + "BPF_T_MICROTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC_FAST))}, + "BPF_T_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC))}, + "BPF_T_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC_FAST))}, + "BPF_T_NANOTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME))}, + "BPF_T_NANOTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_FAST))}, + "BPF_T_NANOTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC))}, + "BPF_T_NANOTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC_FAST))}, + "BPF_T_NONE": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NONE))}, + "BPF_T_NORMAL": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NORMAL))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_AOS": {"untyped int", constant.MakeInt64(int64(q.DLT_AOS))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CAN_SOCKETCAN": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN_SOCKETCAN))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DBUS": {"untyped int", constant.MakeInt64(int64(q.DLT_DBUS))}, + "DLT_DECT": {"untyped int", constant.MakeInt64(int64(q.DLT_DECT))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_DVB_CI": {"untyped int", constant.MakeInt64(int64(q.DLT_DVB_CI))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FC_2": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2))}, + "DLT_FC_2_WITH_FRAME_DELIMS": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2_WITH_FRAME_DELIMS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_GSMTAP_ABIS": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_ABIS))}, + "DLT_GSMTAP_UM": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_UM))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NOFCS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NOFCS))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPFILTER": {"untyped int", constant.MakeInt64(int64(q.DLT_IPFILTER))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPOIB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPOIB))}, + "DLT_IPV4": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV4))}, + "DLT_IPV6": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV6))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_ATM_CEMIC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM_CEMIC))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FIBRECHANNEL))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_SRX_E2E": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SRX_E2E))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_JUNIPER_VS": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VS))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_EVDEV": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_EVDEV))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_PPP_WITHDIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_PPP_WITHDIRECTION))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MATCHING_MAX": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MAX))}, + "DLT_MATCHING_MIN": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MIN))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MPEG_2_TS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPEG_2_TS))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_MUX27010": {"untyped int", constant.MakeInt64(int64(q.DLT_MUX27010))}, + "DLT_NETANALYZER": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER))}, + "DLT_NETANALYZER_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER_TRANSPARENT))}, + "DLT_NFC_LLCP": {"untyped int", constant.MakeInt64(int64(q.DLT_NFC_LLCP))}, + "DLT_NFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_NFLOG))}, + "DLT_NG40": {"untyped int", constant.MakeInt64(int64(q.DLT_NG40))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PPP_WITH_DIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIRECTION))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_STANAG_5066_D_PDU": {"untyped int", constant.MakeInt64(int64(q.DLT_STANAG_5066_D_PDU))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_USB_LINUX_MMAPPED": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX_MMAPPED))}, + "DLT_USER0": {"untyped int", constant.MakeInt64(int64(q.DLT_USER0))}, + "DLT_USER1": {"untyped int", constant.MakeInt64(int64(q.DLT_USER1))}, + "DLT_USER10": {"untyped int", constant.MakeInt64(int64(q.DLT_USER10))}, + "DLT_USER11": {"untyped int", constant.MakeInt64(int64(q.DLT_USER11))}, + "DLT_USER12": {"untyped int", constant.MakeInt64(int64(q.DLT_USER12))}, + "DLT_USER13": {"untyped int", constant.MakeInt64(int64(q.DLT_USER13))}, + "DLT_USER14": {"untyped int", constant.MakeInt64(int64(q.DLT_USER14))}, + "DLT_USER15": {"untyped int", constant.MakeInt64(int64(q.DLT_USER15))}, + "DLT_USER2": {"untyped int", constant.MakeInt64(int64(q.DLT_USER2))}, + "DLT_USER3": {"untyped int", constant.MakeInt64(int64(q.DLT_USER3))}, + "DLT_USER4": {"untyped int", constant.MakeInt64(int64(q.DLT_USER4))}, + "DLT_USER5": {"untyped int", constant.MakeInt64(int64(q.DLT_USER5))}, + "DLT_USER6": {"untyped int", constant.MakeInt64(int64(q.DLT_USER6))}, + "DLT_USER7": {"untyped int", constant.MakeInt64(int64(q.DLT_USER7))}, + "DLT_USER8": {"untyped int", constant.MakeInt64(int64(q.DLT_USER8))}, + "DLT_USER9": {"untyped int", constant.MakeInt64(int64(q.DLT_USER9))}, + "DLT_WIHART": {"untyped int", constant.MakeInt64(int64(q.DLT_WIHART))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_FS": {"untyped int", constant.MakeInt64(int64(q.EVFILT_FS))}, + "EVFILT_LIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_LIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_USER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_USER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_DROP": {"untyped int", constant.MakeInt64(int64(q.EV_DROP))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_CANCEL": {"untyped int", constant.MakeInt64(int64(q.F_CANCEL))}, + "F_DUP2FD": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD))}, + "F_DUP2FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD_CLOEXEC))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_OGETLK": {"untyped int", constant.MakeInt64(int64(q.F_OGETLK))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_OSETLK": {"untyped int", constant.MakeInt64(int64(q.F_OSETLK))}, + "F_OSETLKW": {"untyped int", constant.MakeInt64(int64(q.F_OSETLKW))}, + "F_RDAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_RDAHEAD))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_READAHEAD))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLK_REMOTE": {"untyped int", constant.MakeInt64(int64(q.F_SETLK_REMOTE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_UNLCKSYS": {"untyped int", constant.MakeInt64(int64(q.F_UNLCKSYS))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_CANTCONFIG": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCONFIG))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DRV_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_OACTIVE))}, + "IFF_DRV_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_RUNNING))}, + "IFF_DYING": {"untyped int", constant.MakeInt64(int64(q.IFF_DYING))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MONITOR": {"untyped int", constant.MakeInt64(int64(q.IFF_MONITOR))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PPROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PPROMISC))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RENAMING": {"untyped int", constant.MakeInt64(int64(q.IFF_RENAMING))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_SMART": {"untyped int", constant.MakeInt64(int64(q.IFF_SMART))}, + "IFF_STATICARP": {"untyped int", constant.MakeInt64(int64(q.IFF_STATICARP))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_IPXIP": {"untyped int", constant.MakeInt64(int64(q.IFT_IPXIP))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_MASK))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OLD_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OLD_DIVERT))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEND))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SKIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SKIP))}, + "IPPROTO_SPACER": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SPACER))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TLSP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDANY))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXOPTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXOPTHDR))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_GROUP_SRC_FILTER))}, + "IPV6_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_MEMBERSHIPS))}, + "IPV6_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_SOCK_SRC_FILTER))}, + "IPV6_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIN_MEMBERSHIPS))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MSFILTER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_PREFER_TEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_TEMPADDR))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IP_BINDANY))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_DONTFRAG))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_DUMMYNET3": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET3))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW3": {"untyped int", constant.MakeInt64(int64(q.IP_FW3))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_NAT_CFG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_CFG))}, + "IP_FW_NAT_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_DEL))}, + "IP_FW_NAT_GET_CONFIG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_CONFIG))}, + "IP_FW_NAT_GET_LOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_LOG))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_TABLE_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_ADD))}, + "IP_FW_TABLE_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_DEL))}, + "IP_FW_TABLE_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_FLUSH))}, + "IP_FW_TABLE_GETSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_GETSIZE))}, + "IP_FW_TABLE_LIST": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_LIST))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_GROUP_SRC_FILTER))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MAX_SOCK_MUTE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_MUTE_FILTER))}, + "IP_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_SRC_FILTER))}, + "IP_MAX_SOURCE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOURCE_FILTER))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_ONESBCAST": {"untyped int", constant.MakeInt64(int64(q.IP_ONESBCAST))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_SENDSRCADDR": {"untyped int", constant.MakeInt64(int64(q.IP_SENDSRCADDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_AUTOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_AUTOSYNC))}, + "MADV_CORE": {"untyped int", constant.MakeInt64(int64(q.MADV_CORE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOCORE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_NOSYNC))}, + "MADV_PROTECT": {"untyped int", constant.MakeInt64(int64(q.MADV_PROTECT))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_32BIT": {"untyped int", constant.MakeInt64(int64(q.MAP_32BIT))}, + "MAP_ALIGNED_SUPER": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNED_SUPER))}, + "MAP_ALIGNMENT_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_MASK))}, + "MAP_ALIGNMENT_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_SHIFT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCORE))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MAP_NOSYNC))}, + "MAP_PREFAULT_READ": {"untyped int", constant.MakeInt64(int64(q.MAP_PREFAULT_READ))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_RESERVED0080": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0080))}, + "MAP_RESERVED0100": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0100))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.MSG_COMPAT))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_NBIO": {"untyped int", constant.MakeInt64(int64(q.MSG_NBIO))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_NOTIFICATION": {"untyped int", constant.MakeInt64(int64(q.MSG_NOTIFICATION))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFLISTL": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLISTL))}, + "NET_RT_IFMALIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFMALIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FFAND": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFAND))}, + "NOTE_FFCOPY": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCOPY))}, + "NOTE_FFCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCTRLMASK))}, + "NOTE_FFLAGSMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFLAGSMASK))}, + "NOTE_FFNOP": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFNOP))}, + "NOTE_FFOR": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFOR))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRIGGER": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRIGGER))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXEC": {"untyped int", constant.MakeInt64(int64(q.O_EXEC))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_TTY_INIT": {"untyped int", constant.MakeInt64(int64(q.O_TTY_INIT))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_GWFLAG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RTF_GWFLAG_COMPAT))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLDATA": {"untyped int", constant.MakeInt64(int64(q.RTF_LLDATA))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_RNH_LOCKED": {"untyped int", constant.MakeInt64(int64(q.RTF_RNH_LOCKED))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_STICKY": {"untyped int", constant.MakeInt64(int64(q.RTF_STICKY))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RTV_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.RTV_WEIGHT))}, + "RT_CACHING_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.RT_CACHING_CONTEXT))}, + "RT_DEFAULT_FIB": {"untyped int", constant.MakeInt64(int64(q.RT_DEFAULT_FIB))}, + "RT_NORTREF": {"untyped int", constant.MakeInt64(int64(q.RT_NORTREF))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SCM_BINTIME))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFIB))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGPRIVATE_0": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_0))}, + "SIOCGPRIVATE_1": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_1))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFIB))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFRVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRVNET))}, + "SIOCSIFVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFVNET))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SO_BINTIME))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LABEL": {"untyped int", constant.MakeInt64(int64(q.SO_LABEL))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LISTENINCQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENINCQLEN))}, + "SO_LISTENQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLEN))}, + "SO_LISTENQLIMIT": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLIMIT))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_NO_DDP": {"untyped int", constant.MakeInt64(int64(q.SO_NO_DDP))}, + "SO_NO_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.SO_NO_OFFLOAD))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERLABEL": {"untyped int", constant.MakeInt64(int64(q.SO_PEERLABEL))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_PROTOTYPE": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOTYPE))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SO_SETFIB))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_USER_COOKIE": {"untyped int", constant.MakeInt64(int64(q.SO_USER_COOKIE))}, + "SO_VENDOR": {"untyped int", constant.MakeInt64(int64(q.SO_VENDOR))}, + "SYS_ABORT2": {"untyped int", constant.MakeInt64(int64(q.SYS_ABORT2))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AIO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_CANCEL))}, + "SYS_AIO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_ERROR))}, + "SYS_AIO_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_FSYNC))}, + "SYS_AIO_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_MLOCK))}, + "SYS_AIO_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_READ))}, + "SYS_AIO_RETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_RETURN))}, + "SYS_AIO_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND))}, + "SYS_AIO_WAITCOMPLETE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WAITCOMPLETE))}, + "SYS_AIO_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WRITE))}, + "SYS_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT))}, + "SYS_AUDITCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITCTL))}, + "SYS_AUDITON": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITON))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BINDAT": {"untyped int", constant.MakeInt64(int64(q.SYS_BINDAT))}, + "SYS_CAP_ENTER": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_ENTER))}, + "SYS_CAP_FCNTLS_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_FCNTLS_GET))}, + "SYS_CAP_FCNTLS_LIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_FCNTLS_LIMIT))}, + "SYS_CAP_GETMODE": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_GETMODE))}, + "SYS_CAP_IOCTLS_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_IOCTLS_GET))}, + "SYS_CAP_IOCTLS_LIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_IOCTLS_LIMIT))}, + "SYS_CAP_RIGHTS_LIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_RIGHTS_LIMIT))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHFLAGSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGSAT))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETCPUCLOCKID2": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETCPUCLOCKID2))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CONNECTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECTAT))}, + "SYS_CPUSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET))}, + "SYS_CPUSET_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETAFFINITY))}, + "SYS_CPUSET_GETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETID))}, + "SYS_CPUSET_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETAFFINITY))}, + "SYS_CPUSET_SETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETID))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_EACCESS))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FD))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_LINK))}, + "SYS_EXTATTR_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FD))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_LINK))}, + "SYS_EXTATTR_LIST_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FD))}, + "SYS_EXTATTR_LIST_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FILE))}, + "SYS_EXTATTR_LIST_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_LINK))}, + "SYS_EXTATTR_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FD))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTATTR_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_LINK))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FEXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_FEXECVE))}, + "SYS_FFCLOCK_GETCOUNTER": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETCOUNTER))}, + "SYS_FFCLOCK_GETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETESTIMATE))}, + "SYS_FFCLOCK_SETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_SETESTIMATE))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT))}, + "SYS_GETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT_ADDR))}, + "SYS_GETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUID))}, + "SYS_GETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCONTEXT))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGINCLASS))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GSSD_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_GSSD_SYSCALL))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_JAIL": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL))}, + "SYS_JAIL_ATTACH": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_ATTACH))}, + "SYS_JAIL_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_GET))}, + "SYS_JAIL_REMOVE": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_REMOVE))}, + "SYS_JAIL_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_SET))}, + "SYS_KENV": {"untyped int", constant.MakeInt64(int64(q.SYS_KENV))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KLDFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIND))}, + "SYS_KLDFIRSTMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIRSTMOD))}, + "SYS_KLDLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDLOAD))}, + "SYS_KLDNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDNEXT))}, + "SYS_KLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSTAT))}, + "SYS_KLDSYM": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSYM))}, + "SYS_KLDUNLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOAD))}, + "SYS_KLDUNLOADF": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOADF))}, + "SYS_KMQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_NOTIFY))}, + "SYS_KMQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_OPEN))}, + "SYS_KMQ_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_SETATTR))}, + "SYS_KMQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_TIMEDRECEIVE))}, + "SYS_KMQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_TIMEDSEND))}, + "SYS_KMQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_UNLINK))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KSEM_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_CLOSE))}, + "SYS_KSEM_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_DESTROY))}, + "SYS_KSEM_GETVALUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_GETVALUE))}, + "SYS_KSEM_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_INIT))}, + "SYS_KSEM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_OPEN))}, + "SYS_KSEM_POST": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_POST))}, + "SYS_KSEM_TIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_TIMEDWAIT))}, + "SYS_KSEM_TRYWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_TRYWAIT))}, + "SYS_KSEM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_UNLINK))}, + "SYS_KSEM_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_WAIT))}, + "SYS_KTIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_CREATE))}, + "SYS_KTIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_DELETE))}, + "SYS_KTIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETOVERRUN))}, + "SYS_KTIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETTIME))}, + "SYS_KTIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_SETTIME))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETFH))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LIO_LISTIO": {"untyped int", constant.MakeInt64(int64(q.SYS_LIO_LISTIO))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_LPATHCONF))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_MAC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MAC_SYSCALL))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFIND))}, + "SYS_MODFNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFNEXT))}, + "SYS_MODNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODNEXT))}, + "SYS_MODSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODSTAT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSGSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSYS))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_NFSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSTAT))}, + "SYS_NLM_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_NLM_SYSCALL))}, + "SYS_NLSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NLSTAT))}, + "SYS_NMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_NMOUNT))}, + "SYS_NSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NSTAT))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_NTP_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_GETTIME))}, + "SYS_NUMA_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_NUMA_GETAFFINITY))}, + "SYS_NUMA_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_NUMA_SETAFFINITY))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPENBSD_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENBSD_POLL))}, + "SYS_OVADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_OVADVISE))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PDFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_PDFORK))}, + "SYS_PDGETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_PDGETPID))}, + "SYS_PDKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_PDKILL))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POSIX_FADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FADVISE))}, + "SYS_POSIX_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FALLOCATE))}, + "SYS_POSIX_OPENPT": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_OPENPT))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROCCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCCTL))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_RCTL_ADD_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_ADD_RULE))}, + "SYS_RCTL_GET_LIMITS": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_LIMITS))}, + "SYS_RCTL_GET_RACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RACCT))}, + "SYS_RCTL_GET_RULES": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RULES))}, + "SYS_RCTL_REMOVE_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_REMOVE_RULE))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_RFORK))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RTPRIO": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO))}, + "SYS_RTPRIO_THREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO_THREAD))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SCTP_GENERIC_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_RECVMSG))}, + "SYS_SCTP_GENERIC_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG))}, + "SYS_SCTP_GENERIC_SENDMSG_IOV": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG_IOV))}, + "SYS_SCTP_PEELOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_PEELOFF))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMSYS))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT))}, + "SYS_SETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT_ADDR))}, + "SYS_SETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUID))}, + "SYS_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETCONTEXT))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFIB))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGINCLASS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMSYS))}, + "SYS_SHM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_OPEN))}, + "SYS_SHM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_UNLINK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGQUEUE))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGTIMEDWAIT))}, + "SYS_SIGWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAIT))}, + "SYS_SIGWAITINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAITINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCONTEXT))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_THR_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_CREATE))}, + "SYS_THR_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_EXIT))}, + "SYS_THR_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL))}, + "SYS_THR_KILL2": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL2))}, + "SYS_THR_NEW": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_NEW))}, + "SYS_THR_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SELF))}, + "SYS_THR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SET_NAME))}, + "SYS_THR_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SUSPEND))}, + "SYS_THR_WAKE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_WAKE))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_YIELD))}, + "SYS__UMTX_OP": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_OP))}, + "SYS___ACL_ACLCHECK_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FD))}, + "SYS___ACL_ACLCHECK_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FILE))}, + "SYS___ACL_ACLCHECK_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_LINK))}, + "SYS___ACL_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FD))}, + "SYS___ACL_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FILE))}, + "SYS___ACL_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_LINK))}, + "SYS___ACL_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FD))}, + "SYS___ACL_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FILE))}, + "SYS___ACL_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_LINK))}, + "SYS___ACL_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FD))}, + "SYS___ACL_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FILE))}, + "SYS___ACL_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_LINK))}, + "SYS___CAP_RIGHTS_GET": {"untyped int", constant.MakeInt64(int64(q.SYS___CAP_RIGHTS_GET))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___MAC_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_EXECVE))}, + "SYS___MAC_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FD))}, + "SYS___MAC_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FILE))}, + "SYS___MAC_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LINK))}, + "SYS___MAC_GET_PID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PID))}, + "SYS___MAC_GET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PROC))}, + "SYS___MAC_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FD))}, + "SYS___MAC_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FILE))}, + "SYS___MAC_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LINK))}, + "SYS___MAC_SET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_PROC))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS___SETUGID))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofBpfZbuf": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbuf))}, + "SizeofBpfZbufHeader": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbufHeader))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CA_NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_CA_NAME_MAX))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_VENDOR": {"untyped int", constant.MakeInt64(int64(q.TCP_VENDOR))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DCD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DCD))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTMASTER": {"untyped int", constant.MakeInt64(int64(q.TIOCPTMASTER))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VERASE2": {"untyped int", constant.MakeInt64(int64(q.VERASE2))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WLINUXCLONE": {"untyped int", constant.MakeInt64(int64(q.WLINUXCLONE))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WTRAPPED": {"untyped int", constant.MakeInt64(int64(q.WTRAPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_freebsd_riscv64.go b/pkg/syscall/go122_export_freebsd_riscv64.go new file mode 100755 index 00000000..57e2f760 --- /dev/null +++ b/pkg/syscall/go122_export_freebsd_riscv64.go @@ -0,0 +1,2291 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "BpfZbuf": reflect.TypeOf((*q.BpfZbuf)(nil)).Elem(), + "BpfZbufHeader": reflect.TypeOf((*q.BpfZbufHeader)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatat": reflect.ValueOf(q.Fstatat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECAPMODE": {reflect.TypeOf(q.ECAPMODE), constant.MakeInt64(int64(q.ECAPMODE))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOOFUS": {reflect.TypeOf(q.EDOOFUS), constant.MakeInt64(int64(q.EDOOFUS))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCAPABLE": {reflect.TypeOf(q.ENOTCAPABLE), constant.MakeInt64(int64(q.ENOTCAPABLE))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGLIBRT": {reflect.TypeOf(q.SIGLIBRT), constant.MakeInt64(int64(q.SIGLIBRT))}, + "SIGLWP": {reflect.TypeOf(q.SIGLWP), constant.MakeInt64(int64(q.SIGLWP))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ARP": {"untyped int", constant.MakeInt64(int64(q.AF_ARP))}, + "AF_ATM": {"untyped int", constant.MakeInt64(int64(q.AF_ATM))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_INET6_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET6_SDP))}, + "AF_INET_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET_SDP))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_NETGRAPH": {"untyped int", constant.MakeInt64(int64(q.AF_NETGRAPH))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SCLUSTER": {"untyped int", constant.MakeInt64(int64(q.AF_SCLUSTER))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SLOW": {"untyped int", constant.MakeInt64(int64(q.AF_SLOW))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VENDOR00": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR00))}, + "AF_VENDOR01": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR01))}, + "AF_VENDOR02": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR02))}, + "AF_VENDOR03": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR03))}, + "AF_VENDOR04": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR04))}, + "AF_VENDOR05": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR05))}, + "AF_VENDOR06": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR06))}, + "AF_VENDOR07": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR07))}, + "AF_VENDOR08": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR08))}, + "AF_VENDOR09": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR09))}, + "AF_VENDOR10": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR10))}, + "AF_VENDOR11": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR11))}, + "AF_VENDOR12": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR12))}, + "AF_VENDOR13": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR13))}, + "AF_VENDOR14": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR14))}, + "AF_VENDOR15": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR15))}, + "AF_VENDOR16": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR16))}, + "AF_VENDOR17": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR17))}, + "AF_VENDOR18": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR18))}, + "AF_VENDOR19": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR19))}, + "AF_VENDOR20": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR20))}, + "AF_VENDOR21": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR21))}, + "AF_VENDOR22": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR22))}, + "AF_VENDOR23": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR23))}, + "AF_VENDOR24": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR24))}, + "AF_VENDOR25": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR25))}, + "AF_VENDOR26": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR26))}, + "AF_VENDOR27": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR27))}, + "AF_VENDOR28": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR28))}, + "AF_VENDOR29": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR29))}, + "AF_VENDOR30": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR30))}, + "AF_VENDOR31": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR31))}, + "AF_VENDOR32": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR32))}, + "AF_VENDOR33": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR33))}, + "AF_VENDOR34": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR34))}, + "AF_VENDOR35": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR35))}, + "AF_VENDOR36": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR36))}, + "AF_VENDOR37": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR37))}, + "AF_VENDOR38": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR38))}, + "AF_VENDOR39": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR39))}, + "AF_VENDOR40": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR40))}, + "AF_VENDOR41": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR41))}, + "AF_VENDOR42": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR42))}, + "AF_VENDOR43": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR43))}, + "AF_VENDOR44": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR44))}, + "AF_VENDOR45": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR45))}, + "AF_VENDOR46": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR46))}, + "AF_VENDOR47": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR47))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCFEEDBACK))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRECTION))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCGETBUFMODE))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGETZMAX": {"untyped int", constant.MakeInt64(int64(q.BIOCGETZMAX))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCGTSTAMP))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCROTZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCROTZBUF))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRECTION))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCSETBUFMODE))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETFNR": {"untyped int", constant.MakeInt64(int64(q.BIOCSETFNR))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSETZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETZBUF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCSTSTAMP))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_BUFMODE_BUFFER": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_BUFFER))}, + "BPF_BUFMODE_ZBUF": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_ZBUF))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_T_BINTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME))}, + "BPF_T_BINTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_FAST))}, + "BPF_T_BINTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC))}, + "BPF_T_BINTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC_FAST))}, + "BPF_T_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FAST))}, + "BPF_T_FLAG_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FLAG_MASK))}, + "BPF_T_FORMAT_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FORMAT_MASK))}, + "BPF_T_MICROTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME))}, + "BPF_T_MICROTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_FAST))}, + "BPF_T_MICROTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC))}, + "BPF_T_MICROTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC_FAST))}, + "BPF_T_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC))}, + "BPF_T_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC_FAST))}, + "BPF_T_NANOTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME))}, + "BPF_T_NANOTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_FAST))}, + "BPF_T_NANOTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC))}, + "BPF_T_NANOTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC_FAST))}, + "BPF_T_NONE": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NONE))}, + "BPF_T_NORMAL": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NORMAL))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_AOS": {"untyped int", constant.MakeInt64(int64(q.DLT_AOS))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CAN_SOCKETCAN": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN_SOCKETCAN))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DBUS": {"untyped int", constant.MakeInt64(int64(q.DLT_DBUS))}, + "DLT_DECT": {"untyped int", constant.MakeInt64(int64(q.DLT_DECT))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_DVB_CI": {"untyped int", constant.MakeInt64(int64(q.DLT_DVB_CI))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FC_2": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2))}, + "DLT_FC_2_WITH_FRAME_DELIMS": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2_WITH_FRAME_DELIMS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_GSMTAP_ABIS": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_ABIS))}, + "DLT_GSMTAP_UM": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_UM))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NOFCS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NOFCS))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPFILTER": {"untyped int", constant.MakeInt64(int64(q.DLT_IPFILTER))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPOIB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPOIB))}, + "DLT_IPV4": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV4))}, + "DLT_IPV6": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV6))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_ATM_CEMIC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM_CEMIC))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FIBRECHANNEL))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_SRX_E2E": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SRX_E2E))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_JUNIPER_VS": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VS))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_EVDEV": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_EVDEV))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_PPP_WITHDIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_PPP_WITHDIRECTION))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MATCHING_MAX": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MAX))}, + "DLT_MATCHING_MIN": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MIN))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MPEG_2_TS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPEG_2_TS))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_MUX27010": {"untyped int", constant.MakeInt64(int64(q.DLT_MUX27010))}, + "DLT_NETANALYZER": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER))}, + "DLT_NETANALYZER_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER_TRANSPARENT))}, + "DLT_NFC_LLCP": {"untyped int", constant.MakeInt64(int64(q.DLT_NFC_LLCP))}, + "DLT_NFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_NFLOG))}, + "DLT_NG40": {"untyped int", constant.MakeInt64(int64(q.DLT_NG40))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PPP_WITH_DIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIRECTION))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_STANAG_5066_D_PDU": {"untyped int", constant.MakeInt64(int64(q.DLT_STANAG_5066_D_PDU))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_USB_LINUX_MMAPPED": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX_MMAPPED))}, + "DLT_USER0": {"untyped int", constant.MakeInt64(int64(q.DLT_USER0))}, + "DLT_USER1": {"untyped int", constant.MakeInt64(int64(q.DLT_USER1))}, + "DLT_USER10": {"untyped int", constant.MakeInt64(int64(q.DLT_USER10))}, + "DLT_USER11": {"untyped int", constant.MakeInt64(int64(q.DLT_USER11))}, + "DLT_USER12": {"untyped int", constant.MakeInt64(int64(q.DLT_USER12))}, + "DLT_USER13": {"untyped int", constant.MakeInt64(int64(q.DLT_USER13))}, + "DLT_USER14": {"untyped int", constant.MakeInt64(int64(q.DLT_USER14))}, + "DLT_USER15": {"untyped int", constant.MakeInt64(int64(q.DLT_USER15))}, + "DLT_USER2": {"untyped int", constant.MakeInt64(int64(q.DLT_USER2))}, + "DLT_USER3": {"untyped int", constant.MakeInt64(int64(q.DLT_USER3))}, + "DLT_USER4": {"untyped int", constant.MakeInt64(int64(q.DLT_USER4))}, + "DLT_USER5": {"untyped int", constant.MakeInt64(int64(q.DLT_USER5))}, + "DLT_USER6": {"untyped int", constant.MakeInt64(int64(q.DLT_USER6))}, + "DLT_USER7": {"untyped int", constant.MakeInt64(int64(q.DLT_USER7))}, + "DLT_USER8": {"untyped int", constant.MakeInt64(int64(q.DLT_USER8))}, + "DLT_USER9": {"untyped int", constant.MakeInt64(int64(q.DLT_USER9))}, + "DLT_WIHART": {"untyped int", constant.MakeInt64(int64(q.DLT_WIHART))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_FS": {"untyped int", constant.MakeInt64(int64(q.EVFILT_FS))}, + "EVFILT_LIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_LIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_USER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_USER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_DROP": {"untyped int", constant.MakeInt64(int64(q.EV_DROP))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_CANCEL": {"untyped int", constant.MakeInt64(int64(q.F_CANCEL))}, + "F_DUP2FD": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD))}, + "F_DUP2FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD_CLOEXEC))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_OGETLK": {"untyped int", constant.MakeInt64(int64(q.F_OGETLK))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_OSETLK": {"untyped int", constant.MakeInt64(int64(q.F_OSETLK))}, + "F_OSETLKW": {"untyped int", constant.MakeInt64(int64(q.F_OSETLKW))}, + "F_RDAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_RDAHEAD))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_READAHEAD))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLK_REMOTE": {"untyped int", constant.MakeInt64(int64(q.F_SETLK_REMOTE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_UNLCKSYS": {"untyped int", constant.MakeInt64(int64(q.F_UNLCKSYS))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_CANTCONFIG": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCONFIG))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DRV_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_OACTIVE))}, + "IFF_DRV_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_RUNNING))}, + "IFF_DYING": {"untyped int", constant.MakeInt64(int64(q.IFF_DYING))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MONITOR": {"untyped int", constant.MakeInt64(int64(q.IFF_MONITOR))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PPROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PPROMISC))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RENAMING": {"untyped int", constant.MakeInt64(int64(q.IFF_RENAMING))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_SMART": {"untyped int", constant.MakeInt64(int64(q.IFF_SMART))}, + "IFF_STATICARP": {"untyped int", constant.MakeInt64(int64(q.IFF_STATICARP))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_IPXIP": {"untyped int", constant.MakeInt64(int64(q.IFT_IPXIP))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_MASK))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OLD_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OLD_DIVERT))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEND))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SKIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SKIP))}, + "IPPROTO_SPACER": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SPACER))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TLSP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDANY))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXOPTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXOPTHDR))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_GROUP_SRC_FILTER))}, + "IPV6_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_MEMBERSHIPS))}, + "IPV6_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_SOCK_SRC_FILTER))}, + "IPV6_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIN_MEMBERSHIPS))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MSFILTER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_PREFER_TEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_TEMPADDR))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IP_BINDANY))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_DONTFRAG))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_DUMMYNET3": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET3))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW3": {"untyped int", constant.MakeInt64(int64(q.IP_FW3))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_NAT_CFG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_CFG))}, + "IP_FW_NAT_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_DEL))}, + "IP_FW_NAT_GET_CONFIG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_CONFIG))}, + "IP_FW_NAT_GET_LOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_LOG))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_TABLE_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_ADD))}, + "IP_FW_TABLE_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_DEL))}, + "IP_FW_TABLE_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_FLUSH))}, + "IP_FW_TABLE_GETSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_GETSIZE))}, + "IP_FW_TABLE_LIST": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_LIST))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_GROUP_SRC_FILTER))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MAX_SOCK_MUTE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_MUTE_FILTER))}, + "IP_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_SRC_FILTER))}, + "IP_MAX_SOURCE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOURCE_FILTER))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_ONESBCAST": {"untyped int", constant.MakeInt64(int64(q.IP_ONESBCAST))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_SENDSRCADDR": {"untyped int", constant.MakeInt64(int64(q.IP_SENDSRCADDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_AUTOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_AUTOSYNC))}, + "MADV_CORE": {"untyped int", constant.MakeInt64(int64(q.MADV_CORE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOCORE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_NOSYNC))}, + "MADV_PROTECT": {"untyped int", constant.MakeInt64(int64(q.MADV_PROTECT))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_32BIT": {"untyped int", constant.MakeInt64(int64(q.MAP_32BIT))}, + "MAP_ALIGNED_SUPER": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNED_SUPER))}, + "MAP_ALIGNMENT_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_MASK))}, + "MAP_ALIGNMENT_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_SHIFT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCORE))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MAP_NOSYNC))}, + "MAP_PREFAULT_READ": {"untyped int", constant.MakeInt64(int64(q.MAP_PREFAULT_READ))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_RESERVED0080": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0080))}, + "MAP_RESERVED0100": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0100))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.MSG_COMPAT))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_NBIO": {"untyped int", constant.MakeInt64(int64(q.MSG_NBIO))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_NOTIFICATION": {"untyped int", constant.MakeInt64(int64(q.MSG_NOTIFICATION))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFLISTL": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLISTL))}, + "NET_RT_IFMALIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFMALIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FFAND": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFAND))}, + "NOTE_FFCOPY": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCOPY))}, + "NOTE_FFCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCTRLMASK))}, + "NOTE_FFLAGSMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFLAGSMASK))}, + "NOTE_FFNOP": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFNOP))}, + "NOTE_FFOR": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFOR))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRIGGER": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRIGGER))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXEC": {"untyped int", constant.MakeInt64(int64(q.O_EXEC))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_TTY_INIT": {"untyped int", constant.MakeInt64(int64(q.O_TTY_INIT))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_GWFLAG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RTF_GWFLAG_COMPAT))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLDATA": {"untyped int", constant.MakeInt64(int64(q.RTF_LLDATA))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_RNH_LOCKED": {"untyped int", constant.MakeInt64(int64(q.RTF_RNH_LOCKED))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_STICKY": {"untyped int", constant.MakeInt64(int64(q.RTF_STICKY))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RTV_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.RTV_WEIGHT))}, + "RT_CACHING_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.RT_CACHING_CONTEXT))}, + "RT_DEFAULT_FIB": {"untyped int", constant.MakeInt64(int64(q.RT_DEFAULT_FIB))}, + "RT_NORTREF": {"untyped int", constant.MakeInt64(int64(q.RT_NORTREF))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SCM_BINTIME))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFIB))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGPRIVATE_0": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_0))}, + "SIOCGPRIVATE_1": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_1))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFIB))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFRVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRVNET))}, + "SIOCSIFVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFVNET))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SO_BINTIME))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LABEL": {"untyped int", constant.MakeInt64(int64(q.SO_LABEL))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LISTENINCQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENINCQLEN))}, + "SO_LISTENQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLEN))}, + "SO_LISTENQLIMIT": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLIMIT))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_NO_DDP": {"untyped int", constant.MakeInt64(int64(q.SO_NO_DDP))}, + "SO_NO_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.SO_NO_OFFLOAD))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERLABEL": {"untyped int", constant.MakeInt64(int64(q.SO_PEERLABEL))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_PROTOTYPE": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOTYPE))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SO_SETFIB))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_USER_COOKIE": {"untyped int", constant.MakeInt64(int64(q.SO_USER_COOKIE))}, + "SO_VENDOR": {"untyped int", constant.MakeInt64(int64(q.SO_VENDOR))}, + "SYS_ABORT2": {"untyped int", constant.MakeInt64(int64(q.SYS_ABORT2))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AIO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_CANCEL))}, + "SYS_AIO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_ERROR))}, + "SYS_AIO_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_FSYNC))}, + "SYS_AIO_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_MLOCK))}, + "SYS_AIO_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_READ))}, + "SYS_AIO_RETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_RETURN))}, + "SYS_AIO_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND))}, + "SYS_AIO_WAITCOMPLETE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WAITCOMPLETE))}, + "SYS_AIO_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WRITE))}, + "SYS_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT))}, + "SYS_AUDITCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITCTL))}, + "SYS_AUDITON": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITON))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BINDAT": {"untyped int", constant.MakeInt64(int64(q.SYS_BINDAT))}, + "SYS_CAP_ENTER": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_ENTER))}, + "SYS_CAP_FCNTLS_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_FCNTLS_GET))}, + "SYS_CAP_FCNTLS_LIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_FCNTLS_LIMIT))}, + "SYS_CAP_GETMODE": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_GETMODE))}, + "SYS_CAP_IOCTLS_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_IOCTLS_GET))}, + "SYS_CAP_IOCTLS_LIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_IOCTLS_LIMIT))}, + "SYS_CAP_RIGHTS_LIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_RIGHTS_LIMIT))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHFLAGSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGSAT))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETCPUCLOCKID2": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETCPUCLOCKID2))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CONNECTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECTAT))}, + "SYS_CPUSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET))}, + "SYS_CPUSET_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETAFFINITY))}, + "SYS_CPUSET_GETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETID))}, + "SYS_CPUSET_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETAFFINITY))}, + "SYS_CPUSET_SETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETID))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_EACCESS))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FD))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_LINK))}, + "SYS_EXTATTR_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FD))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_LINK))}, + "SYS_EXTATTR_LIST_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FD))}, + "SYS_EXTATTR_LIST_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FILE))}, + "SYS_EXTATTR_LIST_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_LINK))}, + "SYS_EXTATTR_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FD))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTATTR_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_LINK))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FEXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_FEXECVE))}, + "SYS_FFCLOCK_GETCOUNTER": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETCOUNTER))}, + "SYS_FFCLOCK_GETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETESTIMATE))}, + "SYS_FFCLOCK_SETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_SETESTIMATE))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT))}, + "SYS_GETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT_ADDR))}, + "SYS_GETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUID))}, + "SYS_GETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCONTEXT))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGINCLASS))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GSSD_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_GSSD_SYSCALL))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_JAIL": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL))}, + "SYS_JAIL_ATTACH": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_ATTACH))}, + "SYS_JAIL_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_GET))}, + "SYS_JAIL_REMOVE": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_REMOVE))}, + "SYS_JAIL_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_SET))}, + "SYS_KENV": {"untyped int", constant.MakeInt64(int64(q.SYS_KENV))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KLDFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIND))}, + "SYS_KLDFIRSTMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIRSTMOD))}, + "SYS_KLDLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDLOAD))}, + "SYS_KLDNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDNEXT))}, + "SYS_KLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSTAT))}, + "SYS_KLDSYM": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSYM))}, + "SYS_KLDUNLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOAD))}, + "SYS_KLDUNLOADF": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOADF))}, + "SYS_KMQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_NOTIFY))}, + "SYS_KMQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_OPEN))}, + "SYS_KMQ_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_SETATTR))}, + "SYS_KMQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_TIMEDRECEIVE))}, + "SYS_KMQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_TIMEDSEND))}, + "SYS_KMQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_UNLINK))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KSEM_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_CLOSE))}, + "SYS_KSEM_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_DESTROY))}, + "SYS_KSEM_GETVALUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_GETVALUE))}, + "SYS_KSEM_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_INIT))}, + "SYS_KSEM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_OPEN))}, + "SYS_KSEM_POST": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_POST))}, + "SYS_KSEM_TIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_TIMEDWAIT))}, + "SYS_KSEM_TRYWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_TRYWAIT))}, + "SYS_KSEM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_UNLINK))}, + "SYS_KSEM_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_WAIT))}, + "SYS_KTIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_CREATE))}, + "SYS_KTIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_DELETE))}, + "SYS_KTIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETOVERRUN))}, + "SYS_KTIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETTIME))}, + "SYS_KTIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_SETTIME))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETFH))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LIO_LISTIO": {"untyped int", constant.MakeInt64(int64(q.SYS_LIO_LISTIO))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_LPATHCONF))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_MAC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MAC_SYSCALL))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFIND))}, + "SYS_MODFNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFNEXT))}, + "SYS_MODNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODNEXT))}, + "SYS_MODSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODSTAT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSGSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSYS))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_NFSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSTAT))}, + "SYS_NLM_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_NLM_SYSCALL))}, + "SYS_NLSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NLSTAT))}, + "SYS_NMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_NMOUNT))}, + "SYS_NSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NSTAT))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_NTP_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_GETTIME))}, + "SYS_NUMA_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_NUMA_GETAFFINITY))}, + "SYS_NUMA_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_NUMA_SETAFFINITY))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPENBSD_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENBSD_POLL))}, + "SYS_OVADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_OVADVISE))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PDFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_PDFORK))}, + "SYS_PDGETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_PDGETPID))}, + "SYS_PDKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_PDKILL))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POSIX_FADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FADVISE))}, + "SYS_POSIX_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FALLOCATE))}, + "SYS_POSIX_OPENPT": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_OPENPT))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROCCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCCTL))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_RCTL_ADD_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_ADD_RULE))}, + "SYS_RCTL_GET_LIMITS": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_LIMITS))}, + "SYS_RCTL_GET_RACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RACCT))}, + "SYS_RCTL_GET_RULES": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RULES))}, + "SYS_RCTL_REMOVE_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_REMOVE_RULE))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_RFORK))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RTPRIO": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO))}, + "SYS_RTPRIO_THREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO_THREAD))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SCTP_GENERIC_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_RECVMSG))}, + "SYS_SCTP_GENERIC_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG))}, + "SYS_SCTP_GENERIC_SENDMSG_IOV": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG_IOV))}, + "SYS_SCTP_PEELOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_PEELOFF))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMSYS))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT))}, + "SYS_SETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT_ADDR))}, + "SYS_SETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUID))}, + "SYS_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETCONTEXT))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFIB))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGINCLASS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMSYS))}, + "SYS_SHM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_OPEN))}, + "SYS_SHM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_UNLINK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGQUEUE))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGTIMEDWAIT))}, + "SYS_SIGWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAIT))}, + "SYS_SIGWAITINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAITINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCONTEXT))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_THR_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_CREATE))}, + "SYS_THR_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_EXIT))}, + "SYS_THR_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL))}, + "SYS_THR_KILL2": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL2))}, + "SYS_THR_NEW": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_NEW))}, + "SYS_THR_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SELF))}, + "SYS_THR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SET_NAME))}, + "SYS_THR_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SUSPEND))}, + "SYS_THR_WAKE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_WAKE))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_YIELD))}, + "SYS__UMTX_OP": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_OP))}, + "SYS___ACL_ACLCHECK_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FD))}, + "SYS___ACL_ACLCHECK_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FILE))}, + "SYS___ACL_ACLCHECK_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_LINK))}, + "SYS___ACL_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FD))}, + "SYS___ACL_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FILE))}, + "SYS___ACL_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_LINK))}, + "SYS___ACL_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FD))}, + "SYS___ACL_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FILE))}, + "SYS___ACL_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_LINK))}, + "SYS___ACL_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FD))}, + "SYS___ACL_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FILE))}, + "SYS___ACL_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_LINK))}, + "SYS___CAP_RIGHTS_GET": {"untyped int", constant.MakeInt64(int64(q.SYS___CAP_RIGHTS_GET))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___MAC_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_EXECVE))}, + "SYS___MAC_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FD))}, + "SYS___MAC_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FILE))}, + "SYS___MAC_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LINK))}, + "SYS___MAC_GET_PID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PID))}, + "SYS___MAC_GET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PROC))}, + "SYS___MAC_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FD))}, + "SYS___MAC_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FILE))}, + "SYS___MAC_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LINK))}, + "SYS___MAC_SET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_PROC))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS___SETUGID))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofBpfZbuf": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbuf))}, + "SizeofBpfZbufHeader": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbufHeader))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CA_NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_CA_NAME_MAX))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_VENDOR": {"untyped int", constant.MakeInt64(int64(q.TCP_VENDOR))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DCD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DCD))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTMASTER": {"untyped int", constant.MakeInt64(int64(q.TIOCPTMASTER))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VERASE2": {"untyped int", constant.MakeInt64(int64(q.VERASE2))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WLINUXCLONE": {"untyped int", constant.MakeInt64(int64(q.WLINUXCLONE))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WTRAPPED": {"untyped int", constant.MakeInt64(int64(q.WTRAPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_illumos_amd64.go b/pkg/syscall/go122_export_illumos_amd64.go new file mode 100755 index 00000000..5e3d23cb --- /dev/null +++ b/pkg/syscall/go122_export_illumos_amd64.go @@ -0,0 +1,1510 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timeval32": reflect.TypeOf((*q.Timeval32)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getexecname": reflect.ValueOf(q.Getexecname), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Gethostname": reflect.ValueOf(q.Gethostname), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Kill": reflect.ValueOf(q.Kill), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOCKUNMAPPED": {reflect.TypeOf(q.ELOCKUNMAPPED), constant.MakeInt64(int64(q.ELOCKUNMAPPED))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTACTIVE": {reflect.TypeOf(q.ENOTACTIVE), constant.MakeInt64(int64(q.ENOTACTIVE))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCANCEL": {reflect.TypeOf(q.SIGCANCEL), constant.MakeInt64(int64(q.SIGCANCEL))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGFREEZE": {reflect.TypeOf(q.SIGFREEZE), constant.MakeInt64(int64(q.SIGFREEZE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGJVM1": {reflect.TypeOf(q.SIGJVM1), constant.MakeInt64(int64(q.SIGJVM1))}, + "SIGJVM2": {reflect.TypeOf(q.SIGJVM2), constant.MakeInt64(int64(q.SIGJVM2))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGLOST": {reflect.TypeOf(q.SIGLOST), constant.MakeInt64(int64(q.SIGLOST))}, + "SIGLWP": {reflect.TypeOf(q.SIGLWP), constant.MakeInt64(int64(q.SIGLWP))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHAW": {reflect.TypeOf(q.SIGTHAW), constant.MakeInt64(int64(q.SIGTHAW))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWAITING": {reflect.TypeOf(q.SIGWAITING), constant.MakeInt64(int64(q.SIGWAITING))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + "SIGXRES": {reflect.TypeOf(q.SIGXRES), constant.MakeInt64(int64(q.SIGXRES))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_802": {"untyped int", constant.MakeInt64(int64(q.AF_802))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_GOSIP": {"untyped int", constant.MakeInt64(int64(q.AF_GOSIP))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_INET_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.AF_INET_OFFLOAD))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NBS": {"untyped int", constant.MakeInt64(int64(q.AF_NBS))}, + "AF_NCA": {"untyped int", constant.MakeInt64(int64(q.AF_NCA))}, + "AF_NIT": {"untyped int", constant.MakeInt64(int64(q.AF_NIT))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_OSINET": {"untyped int", constant.MakeInt64(int64(q.AF_OSINET))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_POLICY": {"untyped int", constant.MakeInt64(int64(q.AF_POLICY))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TRILL": {"untyped int", constant.MakeInt64(int64(q.AF_TRILL))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FC))}, + "ARPHRD_FRAME": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAME))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_IB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IB))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IPATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPATM))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B153600": {"untyped int", constant.MakeInt64(int64(q.B153600))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B307200": {"untyped int", constant.MakeInt64(int64(q.B307200))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGDLTLIST32": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST32))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGETLIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETLIF))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGRTIMEOUT32": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT32))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGSTATSOLD": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATSOLD))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETF32": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF32))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETLIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETLIF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSRTIMEOUT32": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT32))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTCPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSTCPF))}, + "BIOCSUDPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSUDPF))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DFLTBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_DFLTBUFSIZE))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CSWTCH": {"untyped int", constant.MakeInt64(int64(q.CSWTCH))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HDLC))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.DLT_HIPPI))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPOIB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPOIB))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RAWAF_MASK": {"untyped int", constant.MakeInt64(int64(q.DLT_RAWAF_MASK))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMPTY_SET": {"untyped int", constant.MakeInt64(int64(q.EMPTY_SET))}, + "EMT_CPCOVF": {"untyped int", constant.MakeInt64(int64(q.EMT_CPCOVF))}, + "EQUALITY_CHECK": {"untyped int", constant.MakeInt64(int64(q.EQUALITY_CHECK))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_NFDBITS": {"untyped int", constant.MakeInt64(int64(q.FD_NFDBITS))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHALL": {"untyped int", constant.MakeInt64(int64(q.FLUSHALL))}, + "FLUSHDATA": {"untyped int", constant.MakeInt64(int64(q.FLUSHDATA))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_ALLOCSP": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCSP))}, + "F_ALLOCSP64": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCSP64))}, + "F_BADFD": {"untyped int", constant.MakeInt64(int64(q.F_BADFD))}, + "F_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.F_BLKSIZE))}, + "F_BLOCKS": {"untyped int", constant.MakeInt64(int64(q.F_BLOCKS))}, + "F_CHKFL": {"untyped int", constant.MakeInt64(int64(q.F_CHKFL))}, + "F_COMPAT": {"untyped int", constant.MakeInt64(int64(q.F_COMPAT))}, + "F_DUP2FD": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD))}, + "F_DUP2FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD_CLOEXEC))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FREESP": {"untyped int", constant.MakeInt64(int64(q.F_FREESP))}, + "F_FREESP64": {"untyped int", constant.MakeInt64(int64(q.F_FREESP64))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETXFL": {"untyped int", constant.MakeInt64(int64(q.F_GETXFL))}, + "F_HASREMOTELOCKS": {"untyped int", constant.MakeInt64(int64(q.F_HASREMOTELOCKS))}, + "F_ISSTREAM": {"untyped int", constant.MakeInt64(int64(q.F_ISSTREAM))}, + "F_MANDDNY": {"untyped int", constant.MakeInt64(int64(q.F_MANDDNY))}, + "F_MDACC": {"untyped int", constant.MakeInt64(int64(q.F_MDACC))}, + "F_NODNY": {"untyped int", constant.MakeInt64(int64(q.F_NODNY))}, + "F_NPRIV": {"untyped int", constant.MakeInt64(int64(q.F_NPRIV))}, + "F_PRIV": {"untyped int", constant.MakeInt64(int64(q.F_PRIV))}, + "F_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.F_QUOTACTL))}, + "F_RDACC": {"untyped int", constant.MakeInt64(int64(q.F_RDACC))}, + "F_RDDNY": {"untyped int", constant.MakeInt64(int64(q.F_RDDNY))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_REVOKE": {"untyped int", constant.MakeInt64(int64(q.F_REVOKE))}, + "F_RMACC": {"untyped int", constant.MakeInt64(int64(q.F_RMACC))}, + "F_RMDNY": {"untyped int", constant.MakeInt64(int64(q.F_RMDNY))}, + "F_RWACC": {"untyped int", constant.MakeInt64(int64(q.F_RWACC))}, + "F_RWDNY": {"untyped int", constant.MakeInt64(int64(q.F_RWDNY))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLK64_NBMAND": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64_NBMAND))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETLK_NBMAND": {"untyped int", constant.MakeInt64(int64(q.F_SETLK_NBMAND))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SHARE": {"untyped int", constant.MakeInt64(int64(q.F_SHARE))}, + "F_SHARE_NBMAND": {"untyped int", constant.MakeInt64(int64(q.F_SHARE_NBMAND))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_UNLKSYS": {"untyped int", constant.MakeInt64(int64(q.F_UNLKSYS))}, + "F_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.F_UNSHARE))}, + "F_WRACC": {"untyped int", constant.MakeInt64(int64(q.F_WRACC))}, + "F_WRDNY": {"untyped int", constant.MakeInt64(int64(q.F_WRDNY))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.IFF_ADDRCONF))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_ANYCAST))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_COS_ENABLED": {"untyped int", constant.MakeInt64(int64(q.IFF_COS_ENABLED))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFF_DEPRECATED))}, + "IFF_DHCPRUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_DHCPRUNNING))}, + "IFF_DUPLICATE": {"untyped int", constant.MakeInt64(int64(q.IFF_DUPLICATE))}, + "IFF_FAILED": {"untyped int", constant.MakeInt64(int64(q.IFF_FAILED))}, + "IFF_FIXEDMTU": {"untyped int", constant.MakeInt64(int64(q.IFF_FIXEDMTU))}, + "IFF_INACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_INACTIVE))}, + "IFF_INTELLIGENT": {"untyped int", constant.MakeInt64(int64(q.IFF_INTELLIGENT))}, + "IFF_IPMP": {"untyped int", constant.MakeInt64(int64(q.IFF_IPMP))}, + "IFF_IPMP_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_IPMP_CANTCHANGE))}, + "IFF_IPMP_INVALID": {"untyped int", constant.MakeInt64(int64(q.IFF_IPMP_INVALID))}, + "IFF_IPV4": {"untyped int", constant.MakeInt64(int64(q.IFF_IPV4))}, + "IFF_IPV6": {"untyped int", constant.MakeInt64(int64(q.IFF_IPV6))}, + "IFF_L3PROTECT": {"untyped int", constant.MakeInt64(int64(q.IFF_L3PROTECT))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_BCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_BCAST))}, + "IFF_NOACCEPT": {"untyped int", constant.MakeInt64(int64(q.IFF_NOACCEPT))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFAILOVER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFAILOVER))}, + "IFF_NOLINKLOCAL": {"untyped int", constant.MakeInt64(int64(q.IFF_NOLINKLOCAL))}, + "IFF_NOLOCAL": {"untyped int", constant.MakeInt64(int64(q.IFF_NOLOCAL))}, + "IFF_NONUD": {"untyped int", constant.MakeInt64(int64(q.IFF_NONUD))}, + "IFF_NORTEXCH": {"untyped int", constant.MakeInt64(int64(q.IFF_NORTEXCH))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NOXMIT": {"untyped int", constant.MakeInt64(int64(q.IFF_NOXMIT))}, + "IFF_OFFLINE": {"untyped int", constant.MakeInt64(int64(q.IFF_OFFLINE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PREFERRED": {"untyped int", constant.MakeInt64(int64(q.IFF_PREFERRED))}, + "IFF_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.IFF_PRIVATE))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_ROUTER": {"untyped int", constant.MakeInt64(int64(q.IFF_ROUTER))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_STANDBY": {"untyped int", constant.MakeInt64(int64(q.IFF_STANDBY))}, + "IFF_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFF_TEMPORARY))}, + "IFF_UNNUMBERED": {"untyped int", constant.MakeInt64(int64(q.IFF_UNNUMBERED))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFF_VIRTUAL))}, + "IFF_VRRP": {"untyped int", constant.MakeInt64(int64(q.IFF_VRRP))}, + "IFF_XRESOLV": {"untyped int", constant.MakeInt64(int64(q.IFF_XRESOLV))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_6TO4": {"untyped int", constant.MakeInt64(int64(q.IFT_6TO4))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IB": {"untyped int", constant.MakeInt64(int64(q.IFT_IB))}, + "IFT_IPV4": {"untyped int", constant.MakeInt64(int64(q.IFT_IPV4))}, + "IFT_IPV6": {"untyped int", constant.MakeInt64(int64(q.IFT_IPV6))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_AUTOCONF_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_AUTOCONF_MASK))}, + "IN_AUTOCONF_NET": {"untyped int", constant.MakeInt64(int64(q.IN_AUTOCONF_NET))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_CLASSE_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSE_NET))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_PRIVATE12_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE12_MASK))}, + "IN_PRIVATE12_NET": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE12_NET))}, + "IN_PRIVATE16_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE16_MASK))}, + "IN_PRIVATE16_NET": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE16_NET))}, + "IN_PRIVATE8_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE8_MASK))}, + "IN_PRIVATE8_NET": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE8_NET))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_OSPF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPF))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_BOUND_IF))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FLOWINFO_FLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_FLOWLABEL))}, + "IPV6_FLOWINFO_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_TCLASS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PAD1_OPT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PAD1_OPT))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PREFER_SRC_CGA": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_CGA))}, + "IPV6_PREFER_SRC_CGADEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_CGADEFAULT))}, + "IPV6_PREFER_SRC_CGAMASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_CGAMASK))}, + "IPV6_PREFER_SRC_COA": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_COA))}, + "IPV6_PREFER_SRC_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_DEFAULT))}, + "IPV6_PREFER_SRC_HOME": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_HOME))}, + "IPV6_PREFER_SRC_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_MASK))}, + "IPV6_PREFER_SRC_MIPDEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_MIPDEFAULT))}, + "IPV6_PREFER_SRC_MIPMASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_MIPMASK))}, + "IPV6_PREFER_SRC_NONCGA": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_NONCGA))}, + "IPV6_PREFER_SRC_PUBLIC": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_PUBLIC))}, + "IPV6_PREFER_SRC_TMP": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_TMP))}, + "IPV6_PREFER_SRC_TMPDEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_TMPDEFAULT))}, + "IPV6_PREFER_SRC_TMPMASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_TMPMASK))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVRTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDRDSTOPTS))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SEC_OPT": {"untyped int", constant.MakeInt64(int64(q.IPV6_SEC_OPT))}, + "IPV6_SRC_PREFERENCES": {"untyped int", constant.MakeInt64(int64(q.IPV6_SRC_PREFERENCES))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_UNSPEC_SRC": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNSPEC_SRC))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IP_BOUND_IF))}, + "IP_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IP_BROADCAST))}, + "IP_BROADCAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_BROADCAST_TTL))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DHCPINIT_IF": {"untyped int", constant.MakeInt64(int64(q.IP_DHCPINIT_IF))}, + "IP_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_DONTFRAG))}, + "IP_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.IP_DONTROUTE))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IP_NEXTHOP))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_RECVPKTINFO))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVSLLA": {"untyped int", constant.MakeInt64(int64(q.IP_RECVSLLA))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.IP_REUSEADDR))}, + "IP_SEC_OPT": {"untyped int", constant.MakeInt64(int64(q.IP_SEC_OPT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNSPEC_SRC": {"untyped int", constant.MakeInt64(int64(q.IP_UNSPEC_SRC))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_ACCESS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.MADV_ACCESS_DEFAULT))}, + "MADV_ACCESS_LWP": {"untyped int", constant.MakeInt64(int64(q.MADV_ACCESS_LWP))}, + "MADV_ACCESS_MANY": {"untyped int", constant.MakeInt64(int64(q.MADV_ACCESS_MANY))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_32BIT": {"untyped int", constant.MakeInt64(int64(q.MAP_32BIT))}, + "MAP_ALIGN": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGN))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_INITDATA": {"untyped int", constant.MakeInt64(int64(q.MAP_INITDATA))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_TEXT": {"untyped int", constant.MakeInt64(int64(q.MAP_TEXT))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_DUPCTRL": {"untyped int", constant.MakeInt64(int64(q.MSG_DUPCTRL))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_MAXIOVLEN": {"untyped int", constant.MakeInt64(int64(q.MSG_MAXIOVLEN))}, + "MSG_NOTIFICATION": {"untyped int", constant.MakeInt64(int64(q.MSG_NOTIFICATION))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_XPG4_2": {"untyped int", constant.MakeInt64(int64(q.MSG_XPG4_2))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_OLDSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_OLDSYNC))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "M_FLUSH": {"untyped int", constant.MakeInt64(int64(q.M_FLUSH))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPENFAIL": {"untyped int", constant.MakeInt64(int64(q.OPENFAIL))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXEC": {"untyped int", constant.MakeInt64(int64(q.O_EXEC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NOLINKS": {"untyped int", constant.MakeInt64(int64(q.O_NOLINKS))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SEARCH": {"untyped int", constant.MakeInt64(int64(q.O_SEARCH))}, + "O_SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.O_SIOCGIFCONF))}, + "O_SIOCGLIFCONF": {"untyped int", constant.MakeInt64(int64(q.O_SIOCGLIFCONF))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "O_XATTR": {"untyped int", constant.MakeInt64(int64(q.O_XATTR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PAREXT": {"untyped int", constant.MakeInt64(int64(q.PAREXT))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_SRC": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRC))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_NUMBITS": {"untyped int", constant.MakeInt64(int64(q.RTA_NUMBITS))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTF_INDIRECT))}, + "RTF_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTF_KERNEL))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTIRT": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTIRT))}, + "RTF_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.RTF_PRIVATE))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_SETSRC": {"untyped int", constant.MakeInt64(int64(q.RTF_SETSRC))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTF_ZONE": {"untyped int", constant.MakeInt64(int64(q.RTF_ZONE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_CHGADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_CHGADDR))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_FREEADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_FREEADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RT_AWARE": {"untyped int", constant.MakeInt64(int64(q.RT_AWARE))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_UCRED": {"untyped int", constant.MakeInt64(int64(q.SCM_UCRED))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIG2STR_MAX": {"untyped int", constant.MakeInt64(int64(q.SIG2STR_MAX))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIPSECONFIG": {"untyped int", constant.MakeInt64(int64(q.SIOCDIPSECONFIG))}, + "SIOCDXARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDXARP))}, + "SIOCFIPSECONFIG": {"untyped int", constant.MakeInt64(int64(q.SIOCFIPSECONFIG))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGDSTINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCGDSTINFO))}, + "SIOCGENADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGENADDR))}, + "SIOCGENPSTATS": {"untyped int", constant.MakeInt64(int64(q.SIOCGENPSTATS))}, + "SIOCGETLSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETLSGCNT))}, + "SIOCGETNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGETNAME))}, + "SIOCGETPEER": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPEER))}, + "SIOCGETPROP": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPROP))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSYNC))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFMUXID": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMUXID))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFNUM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNUM))}, + "SIOCGIP6ADDRPOLICY": {"untyped int", constant.MakeInt64(int64(q.SIOCGIP6ADDRPOLICY))}, + "SIOCGIPMSFILTER": {"untyped int", constant.MakeInt64(int64(q.SIOCGIPMSFILTER))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFBINDING": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFBINDING))}, + "SIOCGLIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFBRDADDR))}, + "SIOCGLIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFCONF))}, + "SIOCGLIFDADSTATE": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFDADSTATE))}, + "SIOCGLIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFDSTADDR))}, + "SIOCGLIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFFLAGS))}, + "SIOCGLIFGROUPINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFGROUPINFO))}, + "SIOCGLIFGROUPNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFGROUPNAME))}, + "SIOCGLIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFHWADDR))}, + "SIOCGLIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFINDEX))}, + "SIOCGLIFLNKINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFLNKINFO))}, + "SIOCGLIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFMETRIC))}, + "SIOCGLIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFMTU))}, + "SIOCGLIFMUXID": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFMUXID))}, + "SIOCGLIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFNETMASK))}, + "SIOCGLIFNUM": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFNUM))}, + "SIOCGLIFSRCOF": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFSRCOF))}, + "SIOCGLIFSUBNET": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFSUBNET))}, + "SIOCGLIFTOKEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFTOKEN))}, + "SIOCGLIFUSESRC": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFUSESRC))}, + "SIOCGLIFZONE": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFZONE))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGMSFILTER": {"untyped int", constant.MakeInt64(int64(q.SIOCGMSFILTER))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGXARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGXARP))}, + "SIOCIFDETACH": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDETACH))}, + "SIOCILB": {"untyped int", constant.MakeInt64(int64(q.SIOCILB))}, + "SIOCLIFADDIF": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFADDIF))}, + "SIOCLIFDELND": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFDELND))}, + "SIOCLIFGETND": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFGETND))}, + "SIOCLIFREMOVEIF": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFREMOVEIF))}, + "SIOCLIFSETND": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFSETND))}, + "SIOCLIPSECONFIG": {"untyped int", constant.MakeInt64(int64(q.SIOCLIPSECONFIG))}, + "SIOCLOWER": {"untyped int", constant.MakeInt64(int64(q.SIOCLOWER))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSCTPGOPT": {"untyped int", constant.MakeInt64(int64(q.SIOCSCTPGOPT))}, + "SIOCSCTPPEELOFF": {"untyped int", constant.MakeInt64(int64(q.SIOCSCTPPEELOFF))}, + "SIOCSCTPSOPT": {"untyped int", constant.MakeInt64(int64(q.SIOCSCTPSOPT))}, + "SIOCSENABLESDP": {"untyped int", constant.MakeInt64(int64(q.SIOCSENABLESDP))}, + "SIOCSETPROP": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPROP))}, + "SIOCSETSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETSYNC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFINDEX))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFMUXID": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMUXID))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIP6ADDRPOLICY": {"untyped int", constant.MakeInt64(int64(q.SIOCSIP6ADDRPOLICY))}, + "SIOCSIPMSFILTER": {"untyped int", constant.MakeInt64(int64(q.SIOCSIPMSFILTER))}, + "SIOCSIPSECONFIG": {"untyped int", constant.MakeInt64(int64(q.SIOCSIPSECONFIG))}, + "SIOCSLGETREQ": {"untyped int", constant.MakeInt64(int64(q.SIOCSLGETREQ))}, + "SIOCSLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFADDR))}, + "SIOCSLIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFBRDADDR))}, + "SIOCSLIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFDSTADDR))}, + "SIOCSLIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFFLAGS))}, + "SIOCSLIFGROUPNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFGROUPNAME))}, + "SIOCSLIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFINDEX))}, + "SIOCSLIFLNKINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFLNKINFO))}, + "SIOCSLIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFMETRIC))}, + "SIOCSLIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFMTU))}, + "SIOCSLIFMUXID": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFMUXID))}, + "SIOCSLIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFNAME))}, + "SIOCSLIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFNETMASK))}, + "SIOCSLIFPREFIX": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPREFIX))}, + "SIOCSLIFSUBNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFSUBNET))}, + "SIOCSLIFTOKEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFTOKEN))}, + "SIOCSLIFUSESRC": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFUSESRC))}, + "SIOCSLIFZONE": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFZONE))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSLSTAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLSTAT))}, + "SIOCSMSFILTER": {"untyped int", constant.MakeInt64(int64(q.SIOCSMSFILTER))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSPROMISC": {"untyped int", constant.MakeInt64(int64(q.SIOCSPROMISC))}, + "SIOCSQPTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSQPTR))}, + "SIOCSSDSTATS": {"untyped int", constant.MakeInt64(int64(q.SIOCSSDSTATS))}, + "SIOCSSESTATS": {"untyped int", constant.MakeInt64(int64(q.SIOCSSESTATS))}, + "SIOCSXARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSXARP))}, + "SIOCTMYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCTMYADDR))}, + "SIOCTMYSITE": {"untyped int", constant.MakeInt64(int64(q.SIOCTMYSITE))}, + "SIOCTONLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCTONLINK))}, + "SIOCUPPER": {"untyped int", constant.MakeInt64(int64(q.SIOCUPPER))}, + "SIOCX25RCV": {"untyped int", constant.MakeInt64(int64(q.SIOCX25RCV))}, + "SIOCX25TBL": {"untyped int", constant.MakeInt64(int64(q.SIOCX25TBL))}, + "SIOCX25XMT": {"untyped int", constant.MakeInt64(int64(q.SIOCX25XMT))}, + "SIOCXPROTO": {"untyped int", constant.MakeInt64(int64(q.SIOCXPROTO))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NDELAY": {"untyped int", constant.MakeInt64(int64(q.SOCK_NDELAY))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOCK_TYPE_MASK": {"untyped int", constant.MakeInt64(int64(q.SOCK_TYPE_MASK))}, + "SOL_FILTER": {"untyped int", constant.MakeInt64(int64(q.SOL_FILTER))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_ROUTE": {"untyped int", constant.MakeInt64(int64(q.SOL_ROUTE))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ALL": {"untyped int", constant.MakeInt64(int64(q.SO_ALL))}, + "SO_ALLZONES": {"untyped int", constant.MakeInt64(int64(q.SO_ALLZONES))}, + "SO_ANON_MLP": {"untyped int", constant.MakeInt64(int64(q.SO_ANON_MLP))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BAND": {"untyped int", constant.MakeInt64(int64(q.SO_BAND))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_COPYOPT": {"untyped int", constant.MakeInt64(int64(q.SO_COPYOPT))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DELIM": {"untyped int", constant.MakeInt64(int64(q.SO_DELIM))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DGRAM_ERRIND": {"untyped int", constant.MakeInt64(int64(q.SO_DGRAM_ERRIND))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTLINGER": {"untyped int", constant.MakeInt64(int64(q.SO_DONTLINGER))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROPT": {"untyped int", constant.MakeInt64(int64(q.SO_ERROPT))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_EXCLBIND": {"untyped int", constant.MakeInt64(int64(q.SO_EXCLBIND))}, + "SO_HIWAT": {"untyped int", constant.MakeInt64(int64(q.SO_HIWAT))}, + "SO_ISNTTY": {"untyped int", constant.MakeInt64(int64(q.SO_ISNTTY))}, + "SO_ISTTY": {"untyped int", constant.MakeInt64(int64(q.SO_ISTTY))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_LOWAT))}, + "SO_MAC_EXEMPT": {"untyped int", constant.MakeInt64(int64(q.SO_MAC_EXEMPT))}, + "SO_MAC_IMPLICIT": {"untyped int", constant.MakeInt64(int64(q.SO_MAC_IMPLICIT))}, + "SO_MAXBLK": {"untyped int", constant.MakeInt64(int64(q.SO_MAXBLK))}, + "SO_MAXPSZ": {"untyped int", constant.MakeInt64(int64(q.SO_MAXPSZ))}, + "SO_MINPSZ": {"untyped int", constant.MakeInt64(int64(q.SO_MINPSZ))}, + "SO_MREADOFF": {"untyped int", constant.MakeInt64(int64(q.SO_MREADOFF))}, + "SO_MREADON": {"untyped int", constant.MakeInt64(int64(q.SO_MREADON))}, + "SO_NDELOFF": {"untyped int", constant.MakeInt64(int64(q.SO_NDELOFF))}, + "SO_NDELON": {"untyped int", constant.MakeInt64(int64(q.SO_NDELON))}, + "SO_NODELIM": {"untyped int", constant.MakeInt64(int64(q.SO_NODELIM))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PROTOTYPE": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOTYPE))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVPSH": {"untyped int", constant.MakeInt64(int64(q.SO_RCVPSH))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_READOPT": {"untyped int", constant.MakeInt64(int64(q.SO_READOPT))}, + "SO_RECVUCRED": {"untyped int", constant.MakeInt64(int64(q.SO_RECVUCRED))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_SECATTR": {"untyped int", constant.MakeInt64(int64(q.SO_SECATTR))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_STRHOLD": {"untyped int", constant.MakeInt64(int64(q.SO_STRHOLD))}, + "SO_TAIL": {"untyped int", constant.MakeInt64(int64(q.SO_TAIL))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TONSTOP": {"untyped int", constant.MakeInt64(int64(q.SO_TONSTOP))}, + "SO_TOSTOP": {"untyped int", constant.MakeInt64(int64(q.SO_TOSTOP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_VRRP": {"untyped int", constant.MakeInt64(int64(q.SO_VRRP))}, + "SO_WROFF": {"untyped int", constant.MakeInt64(int64(q.SO_WROFF))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_ABORT_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_ABORT_THRESHOLD))}, + "TCP_ANONPRIVBIND": {"untyped int", constant.MakeInt64(int64(q.TCP_ANONPRIVBIND))}, + "TCP_CONN_ABORT_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_CONN_ABORT_THRESHOLD))}, + "TCP_CONN_NOTIFY_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_CONN_NOTIFY_THRESHOLD))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_EXCLBIND": {"untyped int", constant.MakeInt64(int64(q.TCP_EXCLBIND))}, + "TCP_INIT_CWND": {"untyped int", constant.MakeInt64(int64(q.TCP_INIT_CWND))}, + "TCP_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE))}, + "TCP_KEEPALIVE_ABORT_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE_ABORT_THRESHOLD))}, + "TCP_KEEPALIVE_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE_THRESHOLD))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOTIFY_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_NOTIFY_THRESHOLD))}, + "TCP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.TCP_RECVDSTADDR))}, + "TCP_RTO_INITIAL": {"untyped int", constant.MakeInt64(int64(q.TCP_RTO_INITIAL))}, + "TCP_RTO_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_RTO_MAX))}, + "TCP_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_RTO_MIN))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOC": {"untyped int", constant.MakeInt64(int64(q.TIOC))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCILOOP": {"untyped int", constant.MakeInt64(int64(q.TIOCCILOOP))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETC": {"untyped int", constant.MakeInt64(int64(q.TIOCGETC))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGETP": {"untyped int", constant.MakeInt64(int64(q.TIOCGETP))}, + "TIOCGLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCGLTC))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPPS": {"untyped int", constant.MakeInt64(int64(q.TIOCGPPS))}, + "TIOCGPPSEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGPPSEV))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCHPCL": {"untyped int", constant.MakeInt64(int64(q.TIOCHPCL))}, + "TIOCKBOF": {"untyped int", constant.MakeInt64(int64(q.TIOCKBOF))}, + "TIOCKBON": {"untyped int", constant.MakeInt64(int64(q.TIOCKBON))}, + "TIOCLBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCLBIC))}, + "TIOCLBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCLBIS))}, + "TIOCLGET": {"untyped int", constant.MakeInt64(int64(q.TIOCLGET))}, + "TIOCLSET": {"untyped int", constant.MakeInt64(int64(q.TIOCLSET))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETC": {"untyped int", constant.MakeInt64(int64(q.TIOCSETC))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETN": {"untyped int", constant.MakeInt64(int64(q.TIOCSETN))}, + "TIOCSETP": {"untyped int", constant.MakeInt64(int64(q.TIOCSETP))}, + "TIOCSIGNAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSIGNAL))}, + "TIOCSILOOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSILOOP))}, + "TIOCSLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCSLTC))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPPS": {"untyped int", constant.MakeInt64(int64(q.TIOCSPPS))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VCEOF": {"untyped int", constant.MakeInt64(int64(q.VCEOF))}, + "VCEOL": {"untyped int", constant.MakeInt64(int64(q.VCEOL))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTCH": {"untyped int", constant.MakeInt64(int64(q.VSWTCH))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTFLG": {"untyped int", constant.MakeInt64(int64(q.WCONTFLG))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WOPTMASK": {"untyped int", constant.MakeInt64(int64(q.WOPTMASK))}, + "WRAP": {"untyped int", constant.MakeInt64(int64(q.WRAP))}, + "WSIGMASK": {"untyped int", constant.MakeInt64(int64(q.WSIGMASK))}, + "WSTOPFLG": {"untyped int", constant.MakeInt64(int64(q.WSTOPFLG))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WTRAPPED": {"untyped int", constant.MakeInt64(int64(q.WTRAPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_ios_amd64.go b/pkg/syscall/go122_export_ios_amd64.go new file mode 100755 index 00000000..b4e7dcb3 --- /dev/null +++ b/pkg/syscall/go122_export_ios_amd64.go @@ -0,0 +1,1946 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "Fbootstraptransfer_t": reflect.TypeOf((*q.Fbootstraptransfer_t)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "Fstore_t": reflect.TypeOf((*q.Fstore_t)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "IfmaMsghdr2": reflect.TypeOf((*q.IfmaMsghdr2)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Log2phys_t": reflect.TypeOf((*q.Log2phys_t)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Radvisory_t": reflect.TypeOf((*q.Radvisory_t)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timeval32": reflect.TypeOf((*q.Timeval32)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exchangedata": reflect.ValueOf(q.Exchangedata), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setprivexec": reflect.ValueOf(q.Setprivexec), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADARCH": {reflect.TypeOf(q.EBADARCH), constant.MakeInt64(int64(q.EBADARCH))}, + "EBADEXEC": {reflect.TypeOf(q.EBADEXEC), constant.MakeInt64(int64(q.EBADEXEC))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMACHO": {reflect.TypeOf(q.EBADMACHO), constant.MakeInt64(int64(q.EBADMACHO))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDEVERR": {reflect.TypeOf(q.EDEVERR), constant.MakeInt64(int64(q.EDEVERR))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPOLICY": {reflect.TypeOf(q.ENOPOLICY), constant.MakeInt64(int64(q.ENOPOLICY))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "EPWROFF": {reflect.TypeOf(q.EPWROFF), constant.MakeInt64(int64(q.EPWROFF))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHLIBVERS": {reflect.TypeOf(q.ESHLIBVERS), constant.MakeInt64(int64(q.ESHLIBVERS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NDRV": {"untyped int", constant.MakeInt64(int64(q.AF_NDRV))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PPP": {"untyped int", constant.MakeInt64(int64(q.AF_PPP))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_RESERVED_36": {"untyped int", constant.MakeInt64(int64(q.AF_RESERVED_36))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.AF_SYSTEM))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_FS": {"untyped int", constant.MakeInt64(int64(q.EVFILT_FS))}, + "EVFILT_MACHPORT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_MACHPORT))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_THREADMARKER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_THREADMARKER))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_USER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_USER))}, + "EVFILT_VM": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VM))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG0": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG0))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_OOBAND": {"untyped int", constant.MakeInt64(int64(q.EV_OOBAND))}, + "EV_POLL": {"untyped int", constant.MakeInt64(int64(q.EV_POLL))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_ADDFILESIGS": {"untyped int", constant.MakeInt64(int64(q.F_ADDFILESIGS))}, + "F_ADDSIGS": {"untyped int", constant.MakeInt64(int64(q.F_ADDSIGS))}, + "F_ALLOCATEALL": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCATEALL))}, + "F_ALLOCATECONTIG": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCATECONTIG))}, + "F_CHKCLEAN": {"untyped int", constant.MakeInt64(int64(q.F_CHKCLEAN))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FLUSH_DATA": {"untyped int", constant.MakeInt64(int64(q.F_FLUSH_DATA))}, + "F_FREEZE_FS": {"untyped int", constant.MakeInt64(int64(q.F_FREEZE_FS))}, + "F_FULLFSYNC": {"untyped int", constant.MakeInt64(int64(q.F_FULLFSYNC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLKPID": {"untyped int", constant.MakeInt64(int64(q.F_GETLKPID))}, + "F_GETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_GETNOSIGPIPE))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETPATH": {"untyped int", constant.MakeInt64(int64(q.F_GETPATH))}, + "F_GETPATH_MTMINFO": {"untyped int", constant.MakeInt64(int64(q.F_GETPATH_MTMINFO))}, + "F_GETPROTECTIONCLASS": {"untyped int", constant.MakeInt64(int64(q.F_GETPROTECTIONCLASS))}, + "F_GLOBAL_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.F_GLOBAL_NOCACHE))}, + "F_LOG2PHYS": {"untyped int", constant.MakeInt64(int64(q.F_LOG2PHYS))}, + "F_LOG2PHYS_EXT": {"untyped int", constant.MakeInt64(int64(q.F_LOG2PHYS_EXT))}, + "F_MARKDEPENDENCY": {"untyped int", constant.MakeInt64(int64(q.F_MARKDEPENDENCY))}, + "F_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.F_NOCACHE))}, + "F_NODIRECT": {"untyped int", constant.MakeInt64(int64(q.F_NODIRECT))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_PATHPKG_CHECK": {"untyped int", constant.MakeInt64(int64(q.F_PATHPKG_CHECK))}, + "F_PEOFPOSMODE": {"untyped int", constant.MakeInt64(int64(q.F_PEOFPOSMODE))}, + "F_PREALLOCATE": {"untyped int", constant.MakeInt64(int64(q.F_PREALLOCATE))}, + "F_RDADVISE": {"untyped int", constant.MakeInt64(int64(q.F_RDADVISE))}, + "F_RDAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_RDAHEAD))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_READBOOTSTRAP": {"untyped int", constant.MakeInt64(int64(q.F_READBOOTSTRAP))}, + "F_SETBACKINGSTORE": {"untyped int", constant.MakeInt64(int64(q.F_SETBACKINGSTORE))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_SETNOSIGPIPE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETPROTECTIONCLASS": {"untyped int", constant.MakeInt64(int64(q.F_SETPROTECTIONCLASS))}, + "F_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.F_SETSIZE))}, + "F_THAW_FS": {"untyped int", constant.MakeInt64(int64(q.F_THAW_FS))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_VOLPOSMODE": {"untyped int", constant.MakeInt64(int64(q.F_VOLPOSMODE))}, + "F_WRITEBOOTSTRAP": {"untyped int", constant.MakeInt64(int64(q.F_WRITEBOOTSTRAP))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CELLULAR": {"untyped int", constant.MakeInt64(int64(q.IFT_CELLULAR))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PDP": {"untyped int", constant.MakeInt64(int64(q.IFT_PDP))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LINKLOCALNETNUM": {"untyped int", constant.MakeInt64(int64(q.IN_LINKLOCALNETNUM))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292NEXTHOP))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_BOUND_IF))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXOPTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXOPTHDR))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_GROUP_SRC_FILTER))}, + "IPV6_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_MEMBERSHIPS))}, + "IPV6_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_SOCK_SRC_FILTER))}, + "IPV6_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIN_MEMBERSHIPS))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IP_BOUND_IF))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_GROUP_SRC_FILTER))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MAX_SOCK_MUTE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_MUTE_FILTER))}, + "IP_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_SRC_FILTER))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_IFINDEX": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IFINDEX))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_NAT__XXX": {"untyped int", constant.MakeInt64(int64(q.IP_NAT__XXX))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OLD_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_ADD))}, + "IP_OLD_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_DEL))}, + "IP_OLD_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_FLUSH))}, + "IP_OLD_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_GET))}, + "IP_OLD_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_RESETLOG))}, + "IP_OLD_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_ZERO))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_RECVPKTINFO))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_STRIPHDR": {"untyped int", constant.MakeInt64(int64(q.IP_STRIPHDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRAFFIC_MGT_BACKGROUND": {"untyped int", constant.MakeInt64(int64(q.IP_TRAFFIC_MGT_BACKGROUND))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_CAN_REUSE": {"untyped int", constant.MakeInt64(int64(q.MADV_CAN_REUSE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_FREE_REUSABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE_REUSABLE))}, + "MADV_FREE_REUSE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE_REUSE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MADV_ZERO_WIRED_PAGES": {"untyped int", constant.MakeInt64(int64(q.MADV_ZERO_WIRED_PAGES))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_JIT": {"untyped int", constant.MakeInt64(int64(q.MAP_JIT))}, + "MAP_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCACHE))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_RESERVED0080": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0080))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_FLUSH": {"untyped int", constant.MakeInt64(int64(q.MSG_FLUSH))}, + "MSG_HAVEMORE": {"untyped int", constant.MakeInt64(int64(q.MSG_HAVEMORE))}, + "MSG_HOLD": {"untyped int", constant.MakeInt64(int64(q.MSG_HOLD))}, + "MSG_NEEDSA": {"untyped int", constant.MakeInt64(int64(q.MSG_NEEDSA))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_RCVMORE": {"untyped int", constant.MakeInt64(int64(q.MSG_RCVMORE))}, + "MSG_SEND": {"untyped int", constant.MakeInt64(int64(q.MSG_SEND))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITSTREAM": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITSTREAM))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_DEACTIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_DEACTIVATE))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_KILLPAGES": {"untyped int", constant.MakeInt64(int64(q.MS_KILLPAGES))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_DUMP2": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP2))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFLIST2": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST2))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_STAT": {"untyped int", constant.MakeInt64(int64(q.NET_RT_STAT))}, + "NET_RT_TRASH": {"untyped int", constant.MakeInt64(int64(q.NET_RT_TRASH))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ABSOLUTE": {"untyped int", constant.MakeInt64(int64(q.NOTE_ABSOLUTE))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXITSTATUS": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXITSTATUS))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FFAND": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFAND))}, + "NOTE_FFCOPY": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCOPY))}, + "NOTE_FFCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCTRLMASK))}, + "NOTE_FFLAGSMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFLAGSMASK))}, + "NOTE_FFNOP": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFNOP))}, + "NOTE_FFOR": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFOR))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_NONE": {"untyped int", constant.MakeInt64(int64(q.NOTE_NONE))}, + "NOTE_NSECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_NSECONDS))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_REAP": {"untyped int", constant.MakeInt64(int64(q.NOTE_REAP))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_RESOURCEEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_RESOURCEEND))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_SECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_SECONDS))}, + "NOTE_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.NOTE_SIGNAL))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRIGGER": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRIGGER))}, + "NOTE_USECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_USECONDS))}, + "NOTE_VM_ERROR": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_ERROR))}, + "NOTE_VM_PRESSURE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE))}, + "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE_SUDDEN_TERMINATE))}, + "NOTE_VM_PRESSURE_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE_TERMINATE))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_ALERT": {"untyped int", constant.MakeInt64(int64(q.O_ALERT))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EVTONLY": {"untyped int", constant.MakeInt64(int64(q.O_EVTONLY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_POPUP": {"untyped int", constant.MakeInt64(int64(q.O_POPUP))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.O_SYMLINK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PT_ATTACH))}, + "PT_ATTACHEXC": {"untyped int", constant.MakeInt64(int64(q.PT_ATTACHEXC))}, + "PT_CONTINUE": {"untyped int", constant.MakeInt64(int64(q.PT_CONTINUE))}, + "PT_DENY_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PT_DENY_ATTACH))}, + "PT_DETACH": {"untyped int", constant.MakeInt64(int64(q.PT_DETACH))}, + "PT_FIRSTMACH": {"untyped int", constant.MakeInt64(int64(q.PT_FIRSTMACH))}, + "PT_FORCEQUOTA": {"untyped int", constant.MakeInt64(int64(q.PT_FORCEQUOTA))}, + "PT_KILL": {"untyped int", constant.MakeInt64(int64(q.PT_KILL))}, + "PT_READ_D": {"untyped int", constant.MakeInt64(int64(q.PT_READ_D))}, + "PT_READ_I": {"untyped int", constant.MakeInt64(int64(q.PT_READ_I))}, + "PT_READ_U": {"untyped int", constant.MakeInt64(int64(q.PT_READ_U))}, + "PT_SIGEXC": {"untyped int", constant.MakeInt64(int64(q.PT_SIGEXC))}, + "PT_STEP": {"untyped int", constant.MakeInt64(int64(q.PT_STEP))}, + "PT_THUPDATE": {"untyped int", constant.MakeInt64(int64(q.PT_THUPDATE))}, + "PT_TRACE_ME": {"untyped int", constant.MakeInt64(int64(q.PT_TRACE_ME))}, + "PT_WRITE_D": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_D))}, + "PT_WRITE_I": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_I))}, + "PT_WRITE_U": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_U))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_CONDEMNED": {"untyped int", constant.MakeInt64(int64(q.RTF_CONDEMNED))}, + "RTF_DELCLONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DELCLONE))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_IFREF": {"untyped int", constant.MakeInt64(int64(q.RTF_IFREF))}, + "RTF_IFSCOPE": {"untyped int", constant.MakeInt64(int64(q.RTF_IFSCOPE))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WASCLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_WASCLONED))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_GET2": {"untyped int", constant.MakeInt64(int64(q.RTM_GET2))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_IFINFO2": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO2))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_NEWMADDR2": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR2))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMP_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP_MONOTONIC))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCARPIPLL": {"untyped int", constant.MakeInt64(int64(q.SIOCARPIPLL))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCAUTOADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAUTOADDR))}, + "SIOCAUTONETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCAUTONETMASK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVLAN))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFALTMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFALTMTU))}, + "SIOCGIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFASYNCMAP))}, + "SIOCGIFBOND": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBOND))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDEVMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDEVMTU))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFKPI": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFKPI))}, + "SIOCGIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGIFVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFVLAN))}, + "SIOCGIFWAKEFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFWAKEFLAGS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCRSLVMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCRSLVMULTI))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSETVLAN))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFALTMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFALTMTU))}, + "SIOCSIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFASYNCMAP))}, + "SIOCSIFBOND": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBOND))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFKPI": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFKPI))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFVLAN))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_DONTTRUNC": {"untyped int", constant.MakeInt64(int64(q.SO_DONTTRUNC))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LABEL": {"untyped int", constant.MakeInt64(int64(q.SO_LABEL))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LINGER_SEC": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER_SEC))}, + "SO_NKE": {"untyped int", constant.MakeInt64(int64(q.SO_NKE))}, + "SO_NOADDRERR": {"untyped int", constant.MakeInt64(int64(q.SO_NOADDRERR))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_NOTIFYCONFLICT": {"untyped int", constant.MakeInt64(int64(q.SO_NOTIFYCONFLICT))}, + "SO_NP_EXTENSIONS": {"untyped int", constant.MakeInt64(int64(q.SO_NP_EXTENSIONS))}, + "SO_NREAD": {"untyped int", constant.MakeInt64(int64(q.SO_NREAD))}, + "SO_NWRITE": {"untyped int", constant.MakeInt64(int64(q.SO_NWRITE))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERLABEL": {"untyped int", constant.MakeInt64(int64(q.SO_PEERLABEL))}, + "SO_RANDOMPORT": {"untyped int", constant.MakeInt64(int64(q.SO_RANDOMPORT))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_RESTRICTIONS": {"untyped int", constant.MakeInt64(int64(q.SO_RESTRICTIONS))}, + "SO_RESTRICT_DENYIN": {"untyped int", constant.MakeInt64(int64(q.SO_RESTRICT_DENYIN))}, + "SO_RESTRICT_DENYOUT": {"untyped int", constant.MakeInt64(int64(q.SO_RESTRICT_DENYOUT))}, + "SO_RESTRICT_DENYSET": {"untyped int", constant.MakeInt64(int64(q.SO_RESTRICT_DENYSET))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_REUSESHAREUID": {"untyped int", constant.MakeInt64(int64(q.SO_REUSESHAREUID))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMP_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP_MONOTONIC))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_UPCALLCLOSEWAIT": {"untyped int", constant.MakeInt64(int64(q.SO_UPCALLCLOSEWAIT))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_WANTMORE": {"untyped int", constant.MakeInt64(int64(q.SO_WANTMORE))}, + "SO_WANTOOBFLAG": {"untyped int", constant.MakeInt64(int64(q.SO_WANTOOBFLAG))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT_NOCANCEL))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCESS_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS_EXTENDED))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_PROFIL))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AIO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_CANCEL))}, + "SYS_AIO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_ERROR))}, + "SYS_AIO_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_FSYNC))}, + "SYS_AIO_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_READ))}, + "SYS_AIO_RETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_RETURN))}, + "SYS_AIO_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND))}, + "SYS_AIO_SUSPEND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND_NOCANCEL))}, + "SYS_AIO_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WRITE))}, + "SYS_ATGETMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_ATGETMSG))}, + "SYS_ATPGETREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPGETREQ))}, + "SYS_ATPGETRSP": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPGETRSP))}, + "SYS_ATPSNDREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPSNDREQ))}, + "SYS_ATPSNDRSP": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPSNDRSP))}, + "SYS_ATPUTMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPUTMSG))}, + "SYS_ATSOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_ATSOCKET))}, + "SYS_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT))}, + "SYS_AUDITCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITCTL))}, + "SYS_AUDITON": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITON))}, + "SYS_AUDIT_SESSION_JOIN": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_JOIN))}, + "SYS_AUDIT_SESSION_PORT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_PORT))}, + "SYS_AUDIT_SESSION_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_SELF))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BSDTHREAD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_CREATE))}, + "SYS_BSDTHREAD_REGISTER": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_REGISTER))}, + "SYS_BSDTHREAD_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_TERMINATE))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHMOD_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD_EXTENDED))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CHUD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHUD))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE_NOCANCEL))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CONNECT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT_NOCANCEL))}, + "SYS_COPYFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_COPYFILE))}, + "SYS_CSOPS": {"untyped int", constant.MakeInt64(int64(q.SYS_CSOPS))}, + "SYS_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EXCHANGEDATA": {"untyped int", constant.MakeInt64(int64(q.SYS_EXCHANGEDATA))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMOD_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD_EXTENDED))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL_NOCANCEL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FFSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FFSCTL))}, + "SYS_FGETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETATTRLIST))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FILEPORT_MAKEFD": {"untyped int", constant.MakeInt64(int64(q.SYS_FILEPORT_MAKEFD))}, + "SYS_FILEPORT_MAKEPORT": {"untyped int", constant.MakeInt64(int64(q.SYS_FILEPORT_MAKEPORT))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FSCTL))}, + "SYS_FSETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETATTRLIST))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSGETPATH": {"untyped int", constant.MakeInt64(int64(q.SYS_FSGETPATH))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64_EXTENDED))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSTATV": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATV))}, + "SYS_FSTAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT_EXTENDED))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FSYNC_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC_NOCANCEL))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GETATTRLIST))}, + "SYS_GETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT))}, + "SYS_GETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT_ADDR))}, + "SYS_GETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUID))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDIRENTRIES64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES64))}, + "SYS_GETDIRENTRIESATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIESATTR))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETFSSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT64))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETHOSTUUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETHOSTUUID))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLCID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLCID))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSGROUPS))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETWGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETWGROUPS))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_IDENTITYSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_IDENTITYSVC))}, + "SYS_INITGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_INITGROUPS))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPOLICYSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPOLICYSYS))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KDEBUG_TRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KDEBUG_TRACE))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KEVENT64": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT64))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LIO_LISTIO": {"untyped int", constant.MakeInt64(int64(q.SYS_LIO_LISTIO))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_LSTAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64_EXTENDED))}, + "SYS_LSTATV": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTATV))}, + "SYS_LSTAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT_EXTENDED))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MAXSYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MAXSYSCALL))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKCOMPLEX": {"untyped int", constant.MakeInt64(int64(q.SYS_MKCOMPLEX))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIR_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR_EXTENDED))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFO_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO_EXTENDED))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODWATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_MODWATCH))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGRCV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV_NOCANCEL))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSGSND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND_NOCANCEL))}, + "SYS_MSGSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSYS))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MSYNC_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC_NOCANCEL))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NFSCLNT": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSCLNT))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPEN_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_EXTENDED))}, + "SYS_OPEN_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_NOCANCEL))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PID_HIBERNATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_HIBERNATE))}, + "SYS_PID_RESUME": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_RESUME))}, + "SYS_PID_SHUTDOWN_SOCKETS": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_SHUTDOWN_SOCKETS))}, + "SYS_PID_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_SUSPEND))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POLL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL_NOCANCEL))}, + "SYS_POSIX_SPAWN": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_SPAWN))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREAD_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD_NOCANCEL))}, + "SYS_PROCESS_POLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_POLICY))}, + "SYS_PROC_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_PROC_INFO))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSYNCH_CVBROAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVBROAD))}, + "SYS_PSYNCH_CVCLRPREPOST": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVCLRPREPOST))}, + "SYS_PSYNCH_CVSIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVSIGNAL))}, + "SYS_PSYNCH_CVWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVWAIT))}, + "SYS_PSYNCH_MUTEXDROP": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_MUTEXDROP))}, + "SYS_PSYNCH_MUTEXWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_MUTEXWAIT))}, + "SYS_PSYNCH_RW_DOWNGRADE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_DOWNGRADE))}, + "SYS_PSYNCH_RW_LONGRDLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_LONGRDLOCK))}, + "SYS_PSYNCH_RW_RDLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_RDLOCK))}, + "SYS_PSYNCH_RW_UNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UNLOCK))}, + "SYS_PSYNCH_RW_UNLOCK2": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UNLOCK2))}, + "SYS_PSYNCH_RW_UPGRADE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UPGRADE))}, + "SYS_PSYNCH_RW_WRLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_WRLOCK))}, + "SYS_PSYNCH_RW_YIELDWRLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_YIELDWRLOCK))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE_NOCANCEL))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_READV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_READV_NOCANCEL))}, + "SYS_READ_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_READ_NOCANCEL))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVFROM_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM_NOCANCEL))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RECVMSG_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG_NOCANCEL))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SEARCHFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEARCHFS))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SELECT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT_NOCANCEL))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMSYS))}, + "SYS_SEM_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_CLOSE))}, + "SYS_SEM_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_DESTROY))}, + "SYS_SEM_GETVALUE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_GETVALUE))}, + "SYS_SEM_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_INIT))}, + "SYS_SEM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_OPEN))}, + "SYS_SEM_POST": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_POST))}, + "SYS_SEM_TRYWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_TRYWAIT))}, + "SYS_SEM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_UNLINK))}, + "SYS_SEM_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_WAIT))}, + "SYS_SEM_WAIT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_WAIT_NOCANCEL))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDMSG_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG_NOCANCEL))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SENDTO_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO_NOCANCEL))}, + "SYS_SETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SETATTRLIST))}, + "SYS_SETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT))}, + "SYS_SETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT_ADDR))}, + "SYS_SETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUID))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLCID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLCID))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETPRIVEXEC": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIVEXEC))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSGROUPS))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTID))}, + "SYS_SETTID_WITH_PID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTID_WITH_PID))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETWGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETWGROUPS))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SHARED_REGION_CHECK_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_SHARED_REGION_CHECK_NP))}, + "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_SHARED_REGION_MAP_AND_SLIDE_NP))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMSYS))}, + "SYS_SHM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_OPEN))}, + "SYS_SHM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_UNLINK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGSUSPEND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND_NOCANCEL))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_STACK_SNAPSHOT": {"untyped int", constant.MakeInt64(int64(q.SYS_STACK_SNAPSHOT))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64_EXTENDED))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STATV": {"untyped int", constant.MakeInt64(int64(q.SYS_STATV))}, + "SYS_STAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT_EXTENDED))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL))}, + "SYS_THREAD_SELFID": {"untyped int", constant.MakeInt64(int64(q.SYS_THREAD_SELFID))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMASK_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK_EXTENDED))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VM_PRESSURE_MONITOR": {"untyped int", constant.MakeInt64(int64(q.SYS_VM_PRESSURE_MONITOR))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT4_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4_NOCANCEL))}, + "SYS_WAITEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITEVENT))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITID_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID_NOCANCEL))}, + "SYS_WATCHEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_WATCHEVENT))}, + "SYS_WORKQ_KERNRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_WORKQ_KERNRETURN))}, + "SYS_WORKQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_WORKQ_OPEN))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_WRITEV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV_NOCANCEL))}, + "SYS_WRITE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE_NOCANCEL))}, + "SYS___DISABLE_THREADSIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___DISABLE_THREADSIGNAL))}, + "SYS___MAC_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_EXECVE))}, + "SYS___MAC_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GETFSSTAT))}, + "SYS___MAC_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FD))}, + "SYS___MAC_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FILE))}, + "SYS___MAC_GET_LCID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LCID))}, + "SYS___MAC_GET_LCTX": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LCTX))}, + "SYS___MAC_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LINK))}, + "SYS___MAC_GET_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_MOUNT))}, + "SYS___MAC_GET_PID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PID))}, + "SYS___MAC_GET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PROC))}, + "SYS___MAC_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_MOUNT))}, + "SYS___MAC_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FD))}, + "SYS___MAC_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FILE))}, + "SYS___MAC_SET_LCTX": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LCTX))}, + "SYS___MAC_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LINK))}, + "SYS___MAC_SET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_PROC))}, + "SYS___MAC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SYSCALL))}, + "SYS___OLD_SEMWAIT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___OLD_SEMWAIT_SIGNAL))}, + "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL))}, + "SYS___PTHREAD_CANCELED": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_CANCELED))}, + "SYS___PTHREAD_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_CHDIR))}, + "SYS___PTHREAD_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_FCHDIR))}, + "SYS___PTHREAD_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_KILL))}, + "SYS___PTHREAD_MARKCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_MARKCANCEL))}, + "SYS___PTHREAD_SIGMASK": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_SIGMASK))}, + "SYS___SEMWAIT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMWAIT_SIGNAL))}, + "SYS___SEMWAIT_SIGNAL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMWAIT_SIGNAL_NOCANCEL))}, + "SYS___SIGWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGWAIT))}, + "SYS___SIGWAIT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGWAIT_NOCANCEL))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFWHT": {"untyped int", constant.MakeInt64(int64(q.S_IFWHT))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISTXT": {"untyped int", constant.MakeInt64(int64(q.S_ISTXT))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofIfmaMsghdr2": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr2))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONNECTIONTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_CONNECTIONTIMEOUT))}, + "TCP_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MINMSSOVERLOAD": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSSOVERLOAD))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_RXT_CONNDROPTIME": {"untyped int", constant.MakeInt64(int64(q.TCP_RXT_CONNDROPTIME))}, + "TCP_RXT_FINDROP": {"untyped int", constant.MakeInt64(int64(q.TCP_RXT_FINDROP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDCDTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCDCDTIMESTAMP))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCDSIMICROCODE": {"untyped int", constant.MakeInt64(int64(q.TIOCDSIMICROCODE))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCIXOFF": {"untyped int", constant.MakeInt64(int64(q.TIOCIXOFF))}, + "TIOCIXON": {"untyped int", constant.MakeInt64(int64(q.TIOCIXON))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTYGNAME": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYGNAME))}, + "TIOCPTYGRANT": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYGRANT))}, + "TIOCPTYUNLK": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYUNLK))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCSCONS))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_ios_arm64.go b/pkg/syscall/go122_export_ios_arm64.go new file mode 100755 index 00000000..9ef90c11 --- /dev/null +++ b/pkg/syscall/go122_export_ios_arm64.go @@ -0,0 +1,1954 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "Fbootstraptransfer_t": reflect.TypeOf((*q.Fbootstraptransfer_t)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "Fstore_t": reflect.TypeOf((*q.Fstore_t)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "IfmaMsghdr2": reflect.TypeOf((*q.IfmaMsghdr2)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Log2phys_t": reflect.TypeOf((*q.Log2phys_t)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Radvisory_t": reflect.TypeOf((*q.Radvisory_t)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timeval32": reflect.TypeOf((*q.Timeval32)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exchangedata": reflect.ValueOf(q.Exchangedata), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setprivexec": reflect.ValueOf(q.Setprivexec), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADARCH": {reflect.TypeOf(q.EBADARCH), constant.MakeInt64(int64(q.EBADARCH))}, + "EBADEXEC": {reflect.TypeOf(q.EBADEXEC), constant.MakeInt64(int64(q.EBADEXEC))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMACHO": {reflect.TypeOf(q.EBADMACHO), constant.MakeInt64(int64(q.EBADMACHO))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDEVERR": {reflect.TypeOf(q.EDEVERR), constant.MakeInt64(int64(q.EDEVERR))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPOLICY": {reflect.TypeOf(q.ENOPOLICY), constant.MakeInt64(int64(q.ENOPOLICY))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "EPWROFF": {reflect.TypeOf(q.EPWROFF), constant.MakeInt64(int64(q.EPWROFF))}, + "EQFULL": {reflect.TypeOf(q.EQFULL), constant.MakeInt64(int64(q.EQFULL))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHLIBVERS": {reflect.TypeOf(q.ESHLIBVERS), constant.MakeInt64(int64(q.ESHLIBVERS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NDRV": {"untyped int", constant.MakeInt64(int64(q.AF_NDRV))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PPP": {"untyped int", constant.MakeInt64(int64(q.AF_PPP))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_RESERVED_36": {"untyped int", constant.MakeInt64(int64(q.AF_RESERVED_36))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.AF_SYSTEM))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_UTUN": {"untyped int", constant.MakeInt64(int64(q.AF_UTUN))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_FS": {"untyped int", constant.MakeInt64(int64(q.EVFILT_FS))}, + "EVFILT_MACHPORT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_MACHPORT))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_THREADMARKER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_THREADMARKER))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_USER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_USER))}, + "EVFILT_VM": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VM))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG0": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG0))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_OOBAND": {"untyped int", constant.MakeInt64(int64(q.EV_OOBAND))}, + "EV_POLL": {"untyped int", constant.MakeInt64(int64(q.EV_POLL))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_ADDFILESIGS": {"untyped int", constant.MakeInt64(int64(q.F_ADDFILESIGS))}, + "F_ADDSIGS": {"untyped int", constant.MakeInt64(int64(q.F_ADDSIGS))}, + "F_ALLOCATEALL": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCATEALL))}, + "F_ALLOCATECONTIG": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCATECONTIG))}, + "F_CHKCLEAN": {"untyped int", constant.MakeInt64(int64(q.F_CHKCLEAN))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FINDSIGS": {"untyped int", constant.MakeInt64(int64(q.F_FINDSIGS))}, + "F_FLUSH_DATA": {"untyped int", constant.MakeInt64(int64(q.F_FLUSH_DATA))}, + "F_FREEZE_FS": {"untyped int", constant.MakeInt64(int64(q.F_FREEZE_FS))}, + "F_FULLFSYNC": {"untyped int", constant.MakeInt64(int64(q.F_FULLFSYNC))}, + "F_GETCODEDIR": {"untyped int", constant.MakeInt64(int64(q.F_GETCODEDIR))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLKPID": {"untyped int", constant.MakeInt64(int64(q.F_GETLKPID))}, + "F_GETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_GETNOSIGPIPE))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETPATH": {"untyped int", constant.MakeInt64(int64(q.F_GETPATH))}, + "F_GETPATH_MTMINFO": {"untyped int", constant.MakeInt64(int64(q.F_GETPATH_MTMINFO))}, + "F_GETPROTECTIONCLASS": {"untyped int", constant.MakeInt64(int64(q.F_GETPROTECTIONCLASS))}, + "F_GETPROTECTIONLEVEL": {"untyped int", constant.MakeInt64(int64(q.F_GETPROTECTIONLEVEL))}, + "F_GLOBAL_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.F_GLOBAL_NOCACHE))}, + "F_LOG2PHYS": {"untyped int", constant.MakeInt64(int64(q.F_LOG2PHYS))}, + "F_LOG2PHYS_EXT": {"untyped int", constant.MakeInt64(int64(q.F_LOG2PHYS_EXT))}, + "F_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.F_NOCACHE))}, + "F_NODIRECT": {"untyped int", constant.MakeInt64(int64(q.F_NODIRECT))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_PATHPKG_CHECK": {"untyped int", constant.MakeInt64(int64(q.F_PATHPKG_CHECK))}, + "F_PEOFPOSMODE": {"untyped int", constant.MakeInt64(int64(q.F_PEOFPOSMODE))}, + "F_PREALLOCATE": {"untyped int", constant.MakeInt64(int64(q.F_PREALLOCATE))}, + "F_RDADVISE": {"untyped int", constant.MakeInt64(int64(q.F_RDADVISE))}, + "F_RDAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_RDAHEAD))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETBACKINGSTORE": {"untyped int", constant.MakeInt64(int64(q.F_SETBACKINGSTORE))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKWTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.F_SETLKWTIMEOUT))}, + "F_SETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_SETNOSIGPIPE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETPROTECTIONCLASS": {"untyped int", constant.MakeInt64(int64(q.F_SETPROTECTIONCLASS))}, + "F_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.F_SETSIZE))}, + "F_SINGLE_WRITER": {"untyped int", constant.MakeInt64(int64(q.F_SINGLE_WRITER))}, + "F_THAW_FS": {"untyped int", constant.MakeInt64(int64(q.F_THAW_FS))}, + "F_TRANSCODEKEY": {"untyped int", constant.MakeInt64(int64(q.F_TRANSCODEKEY))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_VOLPOSMODE": {"untyped int", constant.MakeInt64(int64(q.F_VOLPOSMODE))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CELLULAR": {"untyped int", constant.MakeInt64(int64(q.IFT_CELLULAR))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PDP": {"untyped int", constant.MakeInt64(int64(q.IFT_PDP))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LINKLOCALNETNUM": {"untyped int", constant.MakeInt64(int64(q.IN_LINKLOCALNETNUM))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292NEXTHOP))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_BOUND_IF))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXOPTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXOPTHDR))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_GROUP_SRC_FILTER))}, + "IPV6_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_MEMBERSHIPS))}, + "IPV6_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_SOCK_SRC_FILTER))}, + "IPV6_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIN_MEMBERSHIPS))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IP_BOUND_IF))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_GROUP_SRC_FILTER))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MAX_SOCK_MUTE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_MUTE_FILTER))}, + "IP_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_SRC_FILTER))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_IFINDEX": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IFINDEX))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_NAT__XXX": {"untyped int", constant.MakeInt64(int64(q.IP_NAT__XXX))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OLD_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_ADD))}, + "IP_OLD_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_DEL))}, + "IP_OLD_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_FLUSH))}, + "IP_OLD_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_GET))}, + "IP_OLD_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_RESETLOG))}, + "IP_OLD_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_ZERO))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_RECVPKTINFO))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_STRIPHDR": {"untyped int", constant.MakeInt64(int64(q.IP_STRIPHDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRAFFIC_MGT_BACKGROUND": {"untyped int", constant.MakeInt64(int64(q.IP_TRAFFIC_MGT_BACKGROUND))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_CAN_REUSE": {"untyped int", constant.MakeInt64(int64(q.MADV_CAN_REUSE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_FREE_REUSABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE_REUSABLE))}, + "MADV_FREE_REUSE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE_REUSE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MADV_ZERO_WIRED_PAGES": {"untyped int", constant.MakeInt64(int64(q.MADV_ZERO_WIRED_PAGES))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_JIT": {"untyped int", constant.MakeInt64(int64(q.MAP_JIT))}, + "MAP_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCACHE))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_RESERVED0080": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0080))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_FLUSH": {"untyped int", constant.MakeInt64(int64(q.MSG_FLUSH))}, + "MSG_HAVEMORE": {"untyped int", constant.MakeInt64(int64(q.MSG_HAVEMORE))}, + "MSG_HOLD": {"untyped int", constant.MakeInt64(int64(q.MSG_HOLD))}, + "MSG_NEEDSA": {"untyped int", constant.MakeInt64(int64(q.MSG_NEEDSA))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_RCVMORE": {"untyped int", constant.MakeInt64(int64(q.MSG_RCVMORE))}, + "MSG_SEND": {"untyped int", constant.MakeInt64(int64(q.MSG_SEND))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITSTREAM": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITSTREAM))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_DEACTIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_DEACTIVATE))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_KILLPAGES": {"untyped int", constant.MakeInt64(int64(q.MS_KILLPAGES))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_DUMP2": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP2))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFLIST2": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST2))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_STAT": {"untyped int", constant.MakeInt64(int64(q.NET_RT_STAT))}, + "NET_RT_TRASH": {"untyped int", constant.MakeInt64(int64(q.NET_RT_TRASH))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ABSOLUTE": {"untyped int", constant.MakeInt64(int64(q.NOTE_ABSOLUTE))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_BACKGROUND": {"untyped int", constant.MakeInt64(int64(q.NOTE_BACKGROUND))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_CRITICAL": {"untyped int", constant.MakeInt64(int64(q.NOTE_CRITICAL))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXITSTATUS": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXITSTATUS))}, + "NOTE_EXIT_CSERROR": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_CSERROR))}, + "NOTE_EXIT_DECRYPTFAIL": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_DECRYPTFAIL))}, + "NOTE_EXIT_DETAIL": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_DETAIL))}, + "NOTE_EXIT_DETAIL_MASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_DETAIL_MASK))}, + "NOTE_EXIT_MEMORY": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_MEMORY))}, + "NOTE_EXIT_REPARENTED": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_REPARENTED))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FFAND": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFAND))}, + "NOTE_FFCOPY": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCOPY))}, + "NOTE_FFCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCTRLMASK))}, + "NOTE_FFLAGSMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFLAGSMASK))}, + "NOTE_FFNOP": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFNOP))}, + "NOTE_FFOR": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFOR))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LEEWAY": {"untyped int", constant.MakeInt64(int64(q.NOTE_LEEWAY))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_NONE": {"untyped int", constant.MakeInt64(int64(q.NOTE_NONE))}, + "NOTE_NSECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_NSECONDS))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_REAP": {"untyped int", constant.MakeInt64(int64(q.NOTE_REAP))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_SECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_SECONDS))}, + "NOTE_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.NOTE_SIGNAL))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRIGGER": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRIGGER))}, + "NOTE_USECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_USECONDS))}, + "NOTE_VM_ERROR": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_ERROR))}, + "NOTE_VM_PRESSURE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE))}, + "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE_SUDDEN_TERMINATE))}, + "NOTE_VM_PRESSURE_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE_TERMINATE))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_ALERT": {"untyped int", constant.MakeInt64(int64(q.O_ALERT))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DP_GETRAWENCRYPTED": {"untyped int", constant.MakeInt64(int64(q.O_DP_GETRAWENCRYPTED))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EVTONLY": {"untyped int", constant.MakeInt64(int64(q.O_EVTONLY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_POPUP": {"untyped int", constant.MakeInt64(int64(q.O_POPUP))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.O_SYMLINK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PT_ATTACH))}, + "PT_ATTACHEXC": {"untyped int", constant.MakeInt64(int64(q.PT_ATTACHEXC))}, + "PT_CONTINUE": {"untyped int", constant.MakeInt64(int64(q.PT_CONTINUE))}, + "PT_DENY_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PT_DENY_ATTACH))}, + "PT_DETACH": {"untyped int", constant.MakeInt64(int64(q.PT_DETACH))}, + "PT_FIRSTMACH": {"untyped int", constant.MakeInt64(int64(q.PT_FIRSTMACH))}, + "PT_FORCEQUOTA": {"untyped int", constant.MakeInt64(int64(q.PT_FORCEQUOTA))}, + "PT_KILL": {"untyped int", constant.MakeInt64(int64(q.PT_KILL))}, + "PT_READ_D": {"untyped int", constant.MakeInt64(int64(q.PT_READ_D))}, + "PT_READ_I": {"untyped int", constant.MakeInt64(int64(q.PT_READ_I))}, + "PT_READ_U": {"untyped int", constant.MakeInt64(int64(q.PT_READ_U))}, + "PT_SIGEXC": {"untyped int", constant.MakeInt64(int64(q.PT_SIGEXC))}, + "PT_STEP": {"untyped int", constant.MakeInt64(int64(q.PT_STEP))}, + "PT_THUPDATE": {"untyped int", constant.MakeInt64(int64(q.PT_THUPDATE))}, + "PT_TRACE_ME": {"untyped int", constant.MakeInt64(int64(q.PT_TRACE_ME))}, + "PT_WRITE_D": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_D))}, + "PT_WRITE_I": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_I))}, + "PT_WRITE_U": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_U))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_CPU_USAGE_MONITOR": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU_USAGE_MONITOR))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_CONDEMNED": {"untyped int", constant.MakeInt64(int64(q.RTF_CONDEMNED))}, + "RTF_DELCLONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DELCLONE))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_IFREF": {"untyped int", constant.MakeInt64(int64(q.RTF_IFREF))}, + "RTF_IFSCOPE": {"untyped int", constant.MakeInt64(int64(q.RTF_IFSCOPE))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_PROXY": {"untyped int", constant.MakeInt64(int64(q.RTF_PROXY))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_ROUTER": {"untyped int", constant.MakeInt64(int64(q.RTF_ROUTER))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WASCLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_WASCLONED))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_GET2": {"untyped int", constant.MakeInt64(int64(q.RTM_GET2))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_IFINFO2": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO2))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_NEWMADDR2": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR2))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMP_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP_MONOTONIC))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCARPIPLL": {"untyped int", constant.MakeInt64(int64(q.SIOCARPIPLL))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCAUTOADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAUTOADDR))}, + "SIOCAUTONETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCAUTONETMASK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVLAN))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFALTMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFALTMTU))}, + "SIOCGIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFASYNCMAP))}, + "SIOCGIFBOND": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBOND))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDEVMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDEVMTU))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFKPI": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFKPI))}, + "SIOCGIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGIFVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFVLAN))}, + "SIOCGIFWAKEFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFWAKEFLAGS))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCRSLVMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCRSLVMULTI))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSETVLAN))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFALTMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFALTMTU))}, + "SIOCSIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFASYNCMAP))}, + "SIOCSIFBOND": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBOND))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFKPI": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFKPI))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFVLAN))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_DONTTRUNC": {"untyped int", constant.MakeInt64(int64(q.SO_DONTTRUNC))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LABEL": {"untyped int", constant.MakeInt64(int64(q.SO_LABEL))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LINGER_SEC": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER_SEC))}, + "SO_NKE": {"untyped int", constant.MakeInt64(int64(q.SO_NKE))}, + "SO_NOADDRERR": {"untyped int", constant.MakeInt64(int64(q.SO_NOADDRERR))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_NOTIFYCONFLICT": {"untyped int", constant.MakeInt64(int64(q.SO_NOTIFYCONFLICT))}, + "SO_NP_EXTENSIONS": {"untyped int", constant.MakeInt64(int64(q.SO_NP_EXTENSIONS))}, + "SO_NREAD": {"untyped int", constant.MakeInt64(int64(q.SO_NREAD))}, + "SO_NUMRCVPKT": {"untyped int", constant.MakeInt64(int64(q.SO_NUMRCVPKT))}, + "SO_NWRITE": {"untyped int", constant.MakeInt64(int64(q.SO_NWRITE))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERLABEL": {"untyped int", constant.MakeInt64(int64(q.SO_PEERLABEL))}, + "SO_RANDOMPORT": {"untyped int", constant.MakeInt64(int64(q.SO_RANDOMPORT))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_REUSESHAREUID": {"untyped int", constant.MakeInt64(int64(q.SO_REUSESHAREUID))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMP_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP_MONOTONIC))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_UPCALLCLOSEWAIT": {"untyped int", constant.MakeInt64(int64(q.SO_UPCALLCLOSEWAIT))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_WANTMORE": {"untyped int", constant.MakeInt64(int64(q.SO_WANTMORE))}, + "SO_WANTOOBFLAG": {"untyped int", constant.MakeInt64(int64(q.SO_WANTOOBFLAG))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT_NOCANCEL))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCESS_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS_EXTENDED))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AIO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_CANCEL))}, + "SYS_AIO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_ERROR))}, + "SYS_AIO_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_FSYNC))}, + "SYS_AIO_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_READ))}, + "SYS_AIO_RETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_RETURN))}, + "SYS_AIO_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND))}, + "SYS_AIO_SUSPEND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND_NOCANCEL))}, + "SYS_AIO_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WRITE))}, + "SYS_ATGETMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_ATGETMSG))}, + "SYS_ATPGETREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPGETREQ))}, + "SYS_ATPGETRSP": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPGETRSP))}, + "SYS_ATPSNDREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPSNDREQ))}, + "SYS_ATPSNDRSP": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPSNDRSP))}, + "SYS_ATPUTMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPUTMSG))}, + "SYS_ATSOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_ATSOCKET))}, + "SYS_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT))}, + "SYS_AUDITCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITCTL))}, + "SYS_AUDITON": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITON))}, + "SYS_AUDIT_SESSION_JOIN": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_JOIN))}, + "SYS_AUDIT_SESSION_PORT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_PORT))}, + "SYS_AUDIT_SESSION_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_SELF))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BSDTHREAD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_CREATE))}, + "SYS_BSDTHREAD_REGISTER": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_REGISTER))}, + "SYS_BSDTHREAD_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_TERMINATE))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHMOD_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD_EXTENDED))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CHUD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHUD))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE_NOCANCEL))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CONNECT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT_NOCANCEL))}, + "SYS_COPYFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_COPYFILE))}, + "SYS_CSOPS": {"untyped int", constant.MakeInt64(int64(q.SYS_CSOPS))}, + "SYS_CSOPS_AUDITTOKEN": {"untyped int", constant.MakeInt64(int64(q.SYS_CSOPS_AUDITTOKEN))}, + "SYS_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EXCHANGEDATA": {"untyped int", constant.MakeInt64(int64(q.SYS_EXCHANGEDATA))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMOD_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD_EXTENDED))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL_NOCANCEL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FFSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FFSCTL))}, + "SYS_FGETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETATTRLIST))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FILEPORT_MAKEFD": {"untyped int", constant.MakeInt64(int64(q.SYS_FILEPORT_MAKEFD))}, + "SYS_FILEPORT_MAKEPORT": {"untyped int", constant.MakeInt64(int64(q.SYS_FILEPORT_MAKEPORT))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FSCTL))}, + "SYS_FSETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETATTRLIST))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSGETPATH": {"untyped int", constant.MakeInt64(int64(q.SYS_FSGETPATH))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64_EXTENDED))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSTAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT_EXTENDED))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FSYNC_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC_NOCANCEL))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GETATTRLIST))}, + "SYS_GETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT_ADDR))}, + "SYS_GETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUID))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDIRENTRIES64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES64))}, + "SYS_GETDIRENTRIESATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIESATTR))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETFSSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT64))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETHOSTUUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETHOSTUUID))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLCID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLCID))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSGROUPS))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETWGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETWGROUPS))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_IDENTITYSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_IDENTITYSVC))}, + "SYS_INITGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_INITGROUPS))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPOLICYSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPOLICYSYS))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KAS_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_KAS_INFO))}, + "SYS_KDEBUG_TRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KDEBUG_TRACE))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KEVENT64": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT64))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LEDGER": {"untyped int", constant.MakeInt64(int64(q.SYS_LEDGER))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LIO_LISTIO": {"untyped int", constant.MakeInt64(int64(q.SYS_LIO_LISTIO))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_LSTAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64_EXTENDED))}, + "SYS_LSTAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT_EXTENDED))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MAXSYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MAXSYSCALL))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIR_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR_EXTENDED))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFO_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO_EXTENDED))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODWATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_MODWATCH))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGRCV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV_NOCANCEL))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSGSND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND_NOCANCEL))}, + "SYS_MSGSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSYS))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MSYNC_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC_NOCANCEL))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NFSCLNT": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSCLNT))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPEN_DPROTECTED_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_DPROTECTED_NP))}, + "SYS_OPEN_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_EXTENDED))}, + "SYS_OPEN_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_NOCANCEL))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PID_HIBERNATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_HIBERNATE))}, + "SYS_PID_RESUME": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_RESUME))}, + "SYS_PID_SHUTDOWN_SOCKETS": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_SHUTDOWN_SOCKETS))}, + "SYS_PID_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_SUSPEND))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POLL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL_NOCANCEL))}, + "SYS_POSIX_SPAWN": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_SPAWN))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREAD_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD_NOCANCEL))}, + "SYS_PROCESS_POLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_POLICY))}, + "SYS_PROC_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_PROC_INFO))}, + "SYS_PSYNCH_CVBROAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVBROAD))}, + "SYS_PSYNCH_CVCLRPREPOST": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVCLRPREPOST))}, + "SYS_PSYNCH_CVSIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVSIGNAL))}, + "SYS_PSYNCH_CVWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVWAIT))}, + "SYS_PSYNCH_MUTEXDROP": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_MUTEXDROP))}, + "SYS_PSYNCH_MUTEXWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_MUTEXWAIT))}, + "SYS_PSYNCH_RW_DOWNGRADE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_DOWNGRADE))}, + "SYS_PSYNCH_RW_LONGRDLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_LONGRDLOCK))}, + "SYS_PSYNCH_RW_RDLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_RDLOCK))}, + "SYS_PSYNCH_RW_UNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UNLOCK))}, + "SYS_PSYNCH_RW_UNLOCK2": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UNLOCK2))}, + "SYS_PSYNCH_RW_UPGRADE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UPGRADE))}, + "SYS_PSYNCH_RW_WRLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_WRLOCK))}, + "SYS_PSYNCH_RW_YIELDWRLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_YIELDWRLOCK))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE_NOCANCEL))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_READV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_READV_NOCANCEL))}, + "SYS_READ_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_READ_NOCANCEL))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVFROM_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM_NOCANCEL))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RECVMSG_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG_NOCANCEL))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SEARCHFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEARCHFS))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SELECT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT_NOCANCEL))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMSYS))}, + "SYS_SEM_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_CLOSE))}, + "SYS_SEM_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_DESTROY))}, + "SYS_SEM_GETVALUE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_GETVALUE))}, + "SYS_SEM_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_INIT))}, + "SYS_SEM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_OPEN))}, + "SYS_SEM_POST": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_POST))}, + "SYS_SEM_TRYWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_TRYWAIT))}, + "SYS_SEM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_UNLINK))}, + "SYS_SEM_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_WAIT))}, + "SYS_SEM_WAIT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_WAIT_NOCANCEL))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDMSG_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG_NOCANCEL))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SENDTO_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO_NOCANCEL))}, + "SYS_SETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SETATTRLIST))}, + "SYS_SETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT_ADDR))}, + "SYS_SETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUID))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLCID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLCID))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETPRIVEXEC": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIVEXEC))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSGROUPS))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTID))}, + "SYS_SETTID_WITH_PID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTID_WITH_PID))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETWGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETWGROUPS))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SHARED_REGION_CHECK_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_SHARED_REGION_CHECK_NP))}, + "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_SHARED_REGION_MAP_AND_SLIDE_NP))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMSYS))}, + "SYS_SHM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_OPEN))}, + "SYS_SHM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_UNLINK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGSUSPEND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND_NOCANCEL))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_STACK_SNAPSHOT": {"untyped int", constant.MakeInt64(int64(q.SYS_STACK_SNAPSHOT))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64_EXTENDED))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT_EXTENDED))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL))}, + "SYS_THREAD_SELFID": {"untyped int", constant.MakeInt64(int64(q.SYS_THREAD_SELFID))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMASK_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK_EXTENDED))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VM_PRESSURE_MONITOR": {"untyped int", constant.MakeInt64(int64(q.SYS_VM_PRESSURE_MONITOR))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT4_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4_NOCANCEL))}, + "SYS_WAITEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITEVENT))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITID_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID_NOCANCEL))}, + "SYS_WATCHEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_WATCHEVENT))}, + "SYS_WORKQ_KERNRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_WORKQ_KERNRETURN))}, + "SYS_WORKQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_WORKQ_OPEN))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_WRITEV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV_NOCANCEL))}, + "SYS_WRITE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE_NOCANCEL))}, + "SYS___DISABLE_THREADSIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___DISABLE_THREADSIGNAL))}, + "SYS___MAC_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_EXECVE))}, + "SYS___MAC_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GETFSSTAT))}, + "SYS___MAC_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FD))}, + "SYS___MAC_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FILE))}, + "SYS___MAC_GET_LCID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LCID))}, + "SYS___MAC_GET_LCTX": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LCTX))}, + "SYS___MAC_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LINK))}, + "SYS___MAC_GET_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_MOUNT))}, + "SYS___MAC_GET_PID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PID))}, + "SYS___MAC_GET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PROC))}, + "SYS___MAC_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_MOUNT))}, + "SYS___MAC_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FD))}, + "SYS___MAC_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FILE))}, + "SYS___MAC_SET_LCTX": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LCTX))}, + "SYS___MAC_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LINK))}, + "SYS___MAC_SET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_PROC))}, + "SYS___MAC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SYSCALL))}, + "SYS___OLD_SEMWAIT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___OLD_SEMWAIT_SIGNAL))}, + "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL))}, + "SYS___PTHREAD_CANCELED": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_CANCELED))}, + "SYS___PTHREAD_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_CHDIR))}, + "SYS___PTHREAD_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_FCHDIR))}, + "SYS___PTHREAD_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_KILL))}, + "SYS___PTHREAD_MARKCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_MARKCANCEL))}, + "SYS___PTHREAD_SIGMASK": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_SIGMASK))}, + "SYS___SEMWAIT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMWAIT_SIGNAL))}, + "SYS___SEMWAIT_SIGNAL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMWAIT_SIGNAL_NOCANCEL))}, + "SYS___SIGWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGWAIT))}, + "SYS___SIGWAIT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGWAIT_NOCANCEL))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFWHT": {"untyped int", constant.MakeInt64(int64(q.S_IFWHT))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISTXT": {"untyped int", constant.MakeInt64(int64(q.S_ISTXT))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofIfmaMsghdr2": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr2))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONNECTIONTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_CONNECTIONTIMEOUT))}, + "TCP_ENABLE_ECN": {"untyped int", constant.MakeInt64(int64(q.TCP_ENABLE_ECN))}, + "TCP_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_NOTSENT_LOWAT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOTSENT_LOWAT))}, + "TCP_RXT_CONNDROPTIME": {"untyped int", constant.MakeInt64(int64(q.TCP_RXT_CONNDROPTIME))}, + "TCP_RXT_FINDROP": {"untyped int", constant.MakeInt64(int64(q.TCP_RXT_FINDROP))}, + "TCP_SENDMOREACKS": {"untyped int", constant.MakeInt64(int64(q.TCP_SENDMOREACKS))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDCDTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCDCDTIMESTAMP))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCDSIMICROCODE": {"untyped int", constant.MakeInt64(int64(q.TIOCDSIMICROCODE))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCIXOFF": {"untyped int", constant.MakeInt64(int64(q.TIOCIXOFF))}, + "TIOCIXON": {"untyped int", constant.MakeInt64(int64(q.TIOCIXON))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTYGNAME": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYGNAME))}, + "TIOCPTYGRANT": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYGRANT))}, + "TIOCPTYUNLK": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYUNLK))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCSCONS))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_js_wasm.go b/pkg/syscall/go122_export_js_wasm.go new file mode 100755 index 00000000..1a6019f6 --- /dev/null +++ b/pkg/syscall/go122_export_js_wasm.go @@ -0,0 +1,362 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "runtime": "runtime", + "sync": "sync", + "syscall/js": "js", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "Fstat": reflect.ValueOf(q.Fstat), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Kill": reflect.ValueOf(q.Kill), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Sendfile": reflect.ValueOf(q.Sendfile), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "SetReadDeadline": reflect.ValueOf(q.SetReadDeadline), + "SetWriteDeadline": reflect.ValueOf(q.SetWriteDeadline), + "Setenv": reflect.ValueOf(q.Setenv), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "Shutdown": reflect.ValueOf(q.Shutdown), + "Socket": reflect.ValueOf(q.Socket), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StopIO": reflect.ValueOf(q.StopIO), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "Symlink": reflect.ValueOf(q.Symlink), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysctl": reflect.ValueOf(q.Sysctl), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Unlink": reflect.ValueOf(q.Unlink), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECASECLASH": {reflect.TypeOf(q.ECASECLASH), constant.MakeInt64(int64(q.ECASECLASH))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELBIN": {reflect.TypeOf(q.ELBIN), constant.MakeInt64(int64(q.ELBIN))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENMFILE": {reflect.TypeOf(q.ENMFILE), constant.MakeInt64(int64(q.ENMFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSHARE": {reflect.TypeOf(q.ENOSHARE), constant.MakeInt64(int64(q.ENOSHARE))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "F_CNVT": {"untyped int", constant.MakeInt64(int64(q.F_CNVT))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_RGETLK": {"untyped int", constant.MakeInt64(int64(q.F_RGETLK))}, + "F_RSETLK": {"untyped int", constant.MakeInt64(int64(q.F_RSETLK))}, + "F_RSETLKW": {"untyped int", constant.MakeInt64(int64(q.F_RSETLKW))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_UNLKSYS": {"untyped int", constant.MakeInt64(int64(q.F_UNLKSYS))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_CREATE": {"untyped int", constant.MakeInt64(int64(q.O_CREATE))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFBOUNDSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFBOUNDSOCK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFCOND": {"untyped int", constant.MakeInt64(int64(q.S_IFCOND))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFDSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFDSOCK))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFMUTEX": {"untyped int", constant.MakeInt64(int64(q.S_IFMUTEX))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSEMA": {"untyped int", constant.MakeInt64(int64(q.S_IFSEMA))}, + "S_IFSHM": {"untyped int", constant.MakeInt64(int64(q.S_IFSHM))}, + "S_IFSHM_SYSV": {"untyped int", constant.MakeInt64(int64(q.S_IFSHM_SYSV))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFSOCKADDR": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCKADDR))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "S_UNSUP": {"untyped int", constant.MakeInt64(int64(q.S_UNSUP))}, + "Stderr": {"untyped int", constant.MakeInt64(int64(q.Stderr))}, + "Stdin": {"untyped int", constant.MakeInt64(int64(q.Stdin))}, + "Stdout": {"untyped int", constant.MakeInt64(int64(q.Stdout))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_linux_386.go b/pkg/syscall/go122_export_linux_386.go new file mode 100755 index 00000000..e1c02161 --- /dev/null +++ b/pkg/syscall/go122_export_linux_386.go @@ -0,0 +1,2266 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_PHY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_PHY))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "EPOLL_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.EPOLL_NONBLOCK))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_32BIT": {"untyped int", constant.MakeInt64(int64(q.MAP_32BIT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETFPXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPXREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETFPXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPXREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_THREAD_AREA))}, + "PTRACE_SINGLEBLOCK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLEBLOCK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_SYSEMU": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU))}, + "PTRACE_SYSEMU_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU_SINGLESTEP))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_BDFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_BDFLUSH))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN32))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FADVISE64_64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64_64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN32))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL64": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL64))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTATAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT64))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_FTIME))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FTRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE64))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID32))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETEUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID32))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID32))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETGROUPS32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS32))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID32))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRESUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID32))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID32))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_THREAD_AREA))}, + "SYS_GTTY": {"untyped int", constant.MakeInt64(int64(q.SYS_GTTY))}, + "SYS_IDLE": {"untyped int", constant.MakeInt64(int64(q.SYS_IDLE))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPERM": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPERM))}, + "SYS_IOPL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IPC": {"untyped int", constant.MakeInt64(int64(q.SYS_IPC))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LCHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN32))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_LOCK))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MADVISE1": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE1))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MMAP2": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP2))}, + "SYS_MODIFY_LDT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODIFY_LDT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MPX": {"untyped int", constant.MakeInt64(int64(q.SYS_MPX))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_NICE": {"untyped int", constant.MakeInt64(int64(q.SYS_NICE))}, + "SYS_OLDFSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDFSTAT))}, + "SYS_OLDLSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDLSTAT))}, + "SYS_OLDOLDUNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDOLDUNAME))}, + "SYS_OLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDSTAT))}, + "SYS_OLDUNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDUNAME))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROF": {"untyped int", constant.MakeInt64(int64(q.SYS_PROF))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_READDIR))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDFILE64": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE64))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID32))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETFSUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID32))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID32))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETGROUPS32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS32))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID32))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID32))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETRESUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID32))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETREUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID32))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID32))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_THREAD_AREA))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SGETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SGETMASK))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNAL))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKETCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETCALL))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_SSETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSETMASK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STIME": {"untyped int", constant.MakeInt64(int64(q.SYS_STIME))}, + "SYS_STTY": {"untyped int", constant.MakeInt64(int64(q.SYS_STTY))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE64))}, + "SYS_UGETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_UGETRLIMIT))}, + "SYS_ULIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_ULIMIT))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VM86": {"untyped int", constant.MakeInt64(int64(q.SYS_VM86))}, + "SYS_VM86OLD": {"untyped int", constant.MakeInt64(int64(q.SYS_VM86OLD))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITPID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITPID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LLSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS__LLSEEK))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_linux_amd64.go b/pkg/syscall/go122_export_linux_amd64.go new file mode 100755 index 00000000..3c7729f0 --- /dev/null +++ b/pkg/syscall/go122_export_linux_amd64.go @@ -0,0 +1,2232 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_PHY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_PHY))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "EPOLL_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.EPOLL_NONBLOCK))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_32BIT": {"untyped int", constant.MakeInt64(int64(q.MAP_32BIT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ARCH_PRCTL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ARCH_PRCTL))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETFPXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPXREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETFPXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPXREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_THREAD_AREA))}, + "PTRACE_SINGLEBLOCK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLEBLOCK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_SYSEMU": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU))}, + "PTRACE_SYSEMU_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU_SINGLESTEP))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_ARCH_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_ARCH_PRCTL))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_CTL_OLD": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL_OLD))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EPOLL_WAIT_OLD": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT_OLD))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_THREAD_AREA))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPERM": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPERM))}, + "SYS_IOPL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODIFY_LDT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODIFY_LDT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NEWFSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NEWFSTATAT))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SECURITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SECURITY))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_THREAD_AREA))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TUXCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_TUXCALL))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_linux_arm.go b/pkg/syscall/go122_export_linux_arm.go new file mode 100755 index 00000000..4f5c57b3 --- /dev/null +++ b/pkg/syscall/go122_export_linux_arm.go @@ -0,0 +1,2285 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_PHY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_PHY))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ELF_NGREG": {"untyped int", constant.MakeInt64(int64(q.ELF_NGREG))}, + "ELF_PRARGSZ": {"untyped int", constant.MakeInt64(int64(q.ELF_PRARGSZ))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "EPOLL_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.EPOLL_NONBLOCK))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_CLEAR_SECCOMP_FILTER": {"untyped int", constant.MakeInt64(int64(q.PR_CLEAR_SECCOMP_FILTER))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECCOMP_FILTER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP_FILTER))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SECCOMP_FILTER_EVENT": {"untyped int", constant.MakeInt64(int64(q.PR_SECCOMP_FILTER_EVENT))}, + "PR_SECCOMP_FILTER_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PR_SECCOMP_FILTER_SYSCALL))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECCOMP_FILTER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP_FILTER))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETCRUNCHREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETCRUNCHREGS))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETHBPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETHBPREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETVFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETVFPREGS))}, + "PTRACE_GETWMMXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETWMMXREGS))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SETCRUNCHREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETCRUNCHREGS))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETHBPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETHBPREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETVFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETVFPREGS))}, + "PTRACE_SETWMMXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETWMMXREGS))}, + "PTRACE_SET_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_SYSCALL))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_DATA_ADDR": {"untyped int", constant.MakeInt64(int64(q.PT_DATA_ADDR))}, + "PT_TEXT_ADDR": {"untyped int", constant.MakeInt64(int64(q.PT_TEXT_ADDR))}, + "PT_TEXT_END_ADDR": {"untyped int", constant.MakeInt64(int64(q.PT_TEXT_END_ADDR))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_ARM_FADVISE64_64": {"untyped int", constant.MakeInt64(int64(q.SYS_ARM_FADVISE64_64))}, + "SYS_ARM_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_ARM_SYNC_FILE_RANGE))}, + "SYS_BDFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_BDFLUSH))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN32))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN32))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL64": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL64))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTATAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT64))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FTRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE64))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID32))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETEUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID32))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID32))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETGROUPS32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS32))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID32))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRESUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID32))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID32))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IPC": {"untyped int", constant.MakeInt64(int64(q.SYS_IPC))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LCHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN32))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MMAP2": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP2))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_NICE": {"untyped int", constant.MakeInt64(int64(q.SYS_NICE))}, + "SYS_OABI_SYSCALL_BASE": {"untyped int", constant.MakeInt64(int64(q.SYS_OABI_SYSCALL_BASE))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PCICONFIG_IOBASE": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_IOBASE))}, + "SYS_PCICONFIG_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_READ))}, + "SYS_PCICONFIG_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_WRITE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_READDIR))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECV": {"untyped int", constant.MakeInt64(int64(q.SYS_RECV))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SEND))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDFILE64": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE64))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID32))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETFSUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID32))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID32))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETGROUPS32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS32))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID32))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID32))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETRESUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID32))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETREUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID32))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID32))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETCALL))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STIME": {"untyped int", constant.MakeInt64(int64(q.SYS_STIME))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL))}, + "SYS_SYSCALL_BASE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL_BASE))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE64))}, + "SYS_UGETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_UGETRLIMIT))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LLSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS__LLSEEK))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_linux_arm64.go b/pkg/syscall/go122_export_linux_arm64.go new file mode 100755 index 00000000..f05d4384 --- /dev/null +++ b/pkg/syscall/go122_export_linux_arm64.go @@ -0,0 +1,2376 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatat": reflect.ValueOf(q.Fstatat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VSOCK": {"untyped int", constant.MakeInt64(int64(q.AF_VSOCK))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PRP))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_802_1Q_VLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_802_1Q_VLAN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BONDING": {"untyped int", constant.MakeInt64(int64(q.IFF_BONDING))}, + "IFF_BRIDGE_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_BRIDGE_PORT))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DISABLE_NETPOLL": {"untyped int", constant.MakeInt64(int64(q.IFF_DISABLE_NETPOLL))}, + "IFF_DONT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_DONT_BRIDGE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_EBRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_EBRIDGE))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_ISATAP": {"untyped int", constant.MakeInt64(int64(q.IFF_ISATAP))}, + "IFF_LIVE_ADDR_CHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_LIVE_ADDR_CHANGE))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MACVLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN))}, + "IFF_MACVLAN_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN_PORT))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MASTER_8023AD": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_8023AD))}, + "IFF_MASTER_ALB": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ALB))}, + "IFF_MASTER_ARPMON": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ARPMON))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_OVS_DATAPATH": {"untyped int", constant.MakeInt64(int64(q.IFF_OVS_DATAPATH))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_SLAVE_INACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_INACTIVE))}, + "IFF_SLAVE_NEEDARP": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_NEEDARP))}, + "IFF_SUPP_NOFCS": {"untyped int", constant.MakeInt64(int64(q.IFF_SUPP_NOFCS))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TEAM_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_TEAM_PORT))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_TX_SKB_SHARING": {"untyped int", constant.MakeInt64(int64(q.IFF_TX_SKB_SHARING))}, + "IFF_UNICAST_FLT": {"untyped int", constant.MakeInt64(int64(q.IFF_UNICAST_FLT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFF_WAN_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFF_WAN_HDLC))}, + "IFF_XMIT_DST_RELEASE": {"untyped int", constant.MakeInt64(int64(q.IFF_XMIT_DST_RELEASE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_BEETPH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BEETPH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_HUGE_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_MASK))}, + "MAP_HUGE_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_SHIFT))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TMPFILE": {"untyped int", constant.MakeInt64(int64(q.O_TMPFILE))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_MAX_PACING_RATE": {"untyped int", constant.MakeInt64(int64(q.SO_MAX_PACING_RATE))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_ARCH_SPECIFIC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_ARCH_SPECIFIC_SYSCALL))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BPF": {"untyped int", constant.MakeInt64(int64(q.SYS_BPF))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXECVEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVEAT))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FINIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_FINIT_MODULE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRANDOM": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRANDOM))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_KCMP": {"untyped int", constant.MakeInt64(int64(q.SYS_KCMP))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MEMFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_MEMFD_CREATE))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_RENAMEAT2": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT2))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETATTR))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETATTR))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.SYS_SECCOMP))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYNC_FILE_RANGE2": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE2))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_COOKIE_IN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_IN_ALWAYS))}, + "TCP_COOKIE_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MAX))}, + "TCP_COOKIE_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MIN))}, + "TCP_COOKIE_OUT_NEVER": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_OUT_NEVER))}, + "TCP_COOKIE_PAIR_SIZE": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_PAIR_SIZE))}, + "TCP_COOKIE_TRANSACTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_TRANSACTIONS))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_MSS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DEFAULT))}, + "TCP_MSS_DESIRED": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DESIRED))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUEUE_SEQ": {"untyped int", constant.MakeInt64(int64(q.TCP_QUEUE_SEQ))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_REPAIR": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR))}, + "TCP_REPAIR_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OPTIONS))}, + "TCP_REPAIR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_QUEUE))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_S_DATA_IN": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_IN))}, + "TCP_S_DATA_OUT": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_OUT))}, + "TCP_THIN_DUPACK": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_DUPACK))}, + "TCP_THIN_LINEAR_TIMEOUTS": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_LINEAR_TIMEOUTS))}, + "TCP_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_TIMESTAMP))}, + "TCP_USER_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_USER_TIMEOUT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_linux_loong64.go b/pkg/syscall/go122_export_linux_loong64.go new file mode 100755 index 00000000..13a679c5 --- /dev/null +++ b/pkg/syscall/go122_export_linux_loong64.go @@ -0,0 +1,2709 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatat": reflect.ValueOf(q.Fstatat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IB": {"untyped int", constant.MakeInt64(int64(q.AF_IB))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KCM": {"untyped int", constant.MakeInt64(int64(q.AF_KCM))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MCTP": {"untyped int", constant.MakeInt64(int64(q.AF_MCTP))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_QIPCRTR": {"untyped int", constant.MakeInt64(int64(q.AF_QIPCRTR))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SMC": {"untyped int", constant.MakeInt64(int64(q.AF_SMC))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VSOCK": {"untyped int", constant.MakeInt64(int64(q.AF_VSOCK))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "AF_XDP": {"untyped int", constant.MakeInt64(int64(q.AF_XDP))}, + "ARPHRD_6LOWPAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_6LOWPAN))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_MCTP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_MCTP))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_RAWIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWIP))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_VSOCKMON": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VSOCKMON))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LL_OFF": {"untyped int", constant.MakeInt64(int64(q.BPF_LL_OFF))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_NET_OFF": {"untyped int", constant.MakeInt64(int64(q.BPF_NET_OFF))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_ARGS_SIZE_VER0": {"untyped int", constant.MakeInt64(int64(q.CLONE_ARGS_SIZE_VER0))}, + "CLONE_ARGS_SIZE_VER1": {"untyped int", constant.MakeInt64(int64(q.CLONE_ARGS_SIZE_VER1))}, + "CLONE_ARGS_SIZE_VER2": {"untyped int", constant.MakeInt64(int64(q.CLONE_ARGS_SIZE_VER2))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLEXCLUSIVE": {"untyped int", constant.MakeInt64(int64(q.EPOLLEXCLUSIVE))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_80221": {"untyped int", constant.MakeInt64(int64(q.ETH_P_80221))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CFM": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CFM))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_DSA_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA_8021Q))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_ERSPAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ERSPAN))}, + "ETH_P_ERSPAN2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ERSPAN2))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_HSR": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HSR))}, + "ETH_P_IBOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IBOE))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IFE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IFE))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LLDP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LLDP))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOPBACK))}, + "ETH_P_MACSEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MACSEC))}, + "ETH_P_MAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MAP))}, + "ETH_P_MCTP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MCTP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MRP))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_NCSI": {"untyped int", constant.MakeInt64(int64(q.ETH_P_NCSI))}, + "ETH_P_NSH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_NSH))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PREAUTH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PREAUTH))}, + "ETH_P_PRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PRP))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_REALTEK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_REALTEK))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_TSN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TSN))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "ETH_P_XDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_XDSA))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_ADD_SEALS": {"untyped int", constant.MakeInt64(int64(q.F_ADD_SEALS))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_GET_FILE_RW_HINT": {"untyped int", constant.MakeInt64(int64(q.F_GET_FILE_RW_HINT))}, + "F_GET_RW_HINT": {"untyped int", constant.MakeInt64(int64(q.F_GET_RW_HINT))}, + "F_GET_SEALS": {"untyped int", constant.MakeInt64(int64(q.F_GET_SEALS))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OFD_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_OFD_GETLK))}, + "F_OFD_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_OFD_SETLK))}, + "F_OFD_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_OFD_SETLKW))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SEAL_FUTURE_WRITE": {"untyped int", constant.MakeInt64(int64(q.F_SEAL_FUTURE_WRITE))}, + "F_SEAL_GROW": {"untyped int", constant.MakeInt64(int64(q.F_SEAL_GROW))}, + "F_SEAL_SEAL": {"untyped int", constant.MakeInt64(int64(q.F_SEAL_SEAL))}, + "F_SEAL_SHRINK": {"untyped int", constant.MakeInt64(int64(q.F_SEAL_SHRINK))}, + "F_SEAL_WRITE": {"untyped int", constant.MakeInt64(int64(q.F_SEAL_WRITE))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SET_FILE_RW_HINT": {"untyped int", constant.MakeInt64(int64(q.F_SET_FILE_RW_HINT))}, + "F_SET_RW_HINT": {"untyped int", constant.MakeInt64(int64(q.F_SET_RW_HINT))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_MANAGETEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IFA_F_MANAGETEMPADDR))}, + "IFA_F_MCAUTOJOIN": {"untyped int", constant.MakeInt64(int64(q.IFA_F_MCAUTOJOIN))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_NOPREFIXROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NOPREFIXROUTE))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_STABLE_PRIVACY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_STABLE_PRIVACY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NAPI": {"untyped int", constant.MakeInt64(int64(q.IFF_NAPI))}, + "IFF_NAPI_FRAGS": {"untyped int", constant.MakeInt64(int64(q.IFF_NAPI_FRAGS))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MASK_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_CREATE))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_BEETPH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BEETPH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERNET))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_MPTCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPTCP))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADDR_PREFERENCES": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDR_PREFERENCES))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IPV6_FREEBIND))}, + "IPV6_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IPV6_HDRINCL))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MINHOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.IPV6_MINHOPCOUNT))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_ALL))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_ORIGDSTADDR))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_INTERFACE))}, + "IPV6_PMTUDISC_OMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_OMIT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVERR_RFC4884": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR_RFC4884))}, + "IPV6_RECVFRAGSIZE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVFRAGSIZE))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVORIGDSTADDR))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_ROUTER_ALERT_ISOLATE": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT_ISOLATE))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IPV6_TRANSPARENT))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_IF))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BIND_ADDRESS_NO_PORT": {"untyped int", constant.MakeInt64(int64(q.IP_BIND_ADDRESS_NO_PORT))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IP_CHECKSUM))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_NODEFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_NODEFRAG))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_INTERFACE))}, + "IP_PMTUDISC_OMIT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_OMIT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVERR_RFC4884": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR_RFC4884))}, + "IP_RECVFRAGSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_RECVFRAGSIZE))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_COLD": {"untyped int", constant.MakeInt64(int64(q.MADV_COLD))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_KEEPONFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_KEEPONFORK))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_PAGEOUT": {"untyped int", constant.MakeInt64(int64(q.MADV_PAGEOUT))}, + "MADV_POPULATE_READ": {"untyped int", constant.MakeInt64(int64(q.MADV_POPULATE_READ))}, + "MADV_POPULATE_WRITE": {"untyped int", constant.MakeInt64(int64(q.MADV_POPULATE_WRITE))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MADV_WIPEONFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_WIPEONFORK))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_FIXED_NOREPLACE": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED_NOREPLACE))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_HUGE_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_MASK))}, + "MAP_HUGE_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_SHIFT))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_SHARED_VALIDATE": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED_VALIDATE))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_SYNC": {"untyped int", constant.MakeInt64(int64(q.MAP_SYNC))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MCL_ONFAULT": {"untyped int", constant.MakeInt64(int64(q.MCL_ONFAULT))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_BATCH": {"untyped int", constant.MakeInt64(int64(q.MSG_BATCH))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MSG_ZEROCOPY": {"untyped int", constant.MakeInt64(int64(q.MSG_ZEROCOPY))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_LAZYTIME": {"untyped int", constant.MakeInt64(int64(q.MS_LAZYTIME))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOSYMFOLLOW": {"untyped int", constant.MakeInt64(int64(q.MS_NOSYMFOLLOW))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CAP_ACK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CAP_ACK))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_EXT_ACK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_EXT_ACK))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_GET_STRICT_CHK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GET_STRICT_CHK))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_LISTEN_ALL_NSID": {"untyped int", constant.MakeInt64(int64(q.NETLINK_LISTEN_ALL_NSID))}, + "NETLINK_LIST_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_LIST_MEMBERSHIPS))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SMC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SMC))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_ACK_TLVS": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK_TLVS))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CAPPED": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CAPPED))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_FILTERED": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_FILTERED))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_NONREC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_NONREC))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TMPFILE": {"untyped int", constant.MakeInt64(int64(q.O_TMPFILE))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CBPF": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CBPF))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_DATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_DATA))}, + "PACKET_FANOUT_EBPF": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_EBPF))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_FLAG_UNIQUEID": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_UNIQUEID))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_QM": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_QM))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_IGNORE_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_IGNORE_OUTGOING))}, + "PACKET_KERNEL": {"untyped int", constant.MakeInt64(int64(q.PACKET_KERNEL))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_QDISC_BYPASS": {"untyped int", constant.MakeInt64(int64(q.PACKET_QDISC_BYPASS))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_ROLLOVER_STATS": {"untyped int", constant.MakeInt64(int64(q.PACKET_ROLLOVER_STATS))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_USER": {"untyped int", constant.MakeInt64(int64(q.PACKET_USER))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_CAP_AMBIENT": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT))}, + "PR_CAP_AMBIENT_CLEAR_ALL": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT_CLEAR_ALL))}, + "PR_CAP_AMBIENT_IS_SET": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT_IS_SET))}, + "PR_CAP_AMBIENT_LOWER": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT_LOWER))}, + "PR_CAP_AMBIENT_RAISE": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT_RAISE))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_FP_MODE_FR": {"untyped int", constant.MakeInt64(int64(q.PR_FP_MODE_FR))}, + "PR_FP_MODE_FRE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_MODE_FRE))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_FP_MODE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FP_MODE))}, + "PR_GET_IO_FLUSHER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_IO_FLUSHER))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_SPECULATION_CTRL": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SPECULATION_CTRL))}, + "PR_GET_TAGGED_ADDR_CTRL": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TAGGED_ADDR_CTRL))}, + "PR_GET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_THP_DISABLE))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_MPX_DISABLE_MANAGEMENT": {"untyped int", constant.MakeInt64(int64(q.PR_MPX_DISABLE_MANAGEMENT))}, + "PR_MPX_ENABLE_MANAGEMENT": {"untyped int", constant.MakeInt64(int64(q.PR_MPX_ENABLE_MANAGEMENT))}, + "PR_MTE_TAG_MASK": {"untyped int", constant.MakeInt64(int64(q.PR_MTE_TAG_MASK))}, + "PR_MTE_TAG_SHIFT": {"untyped int", constant.MakeInt64(int64(q.PR_MTE_TAG_SHIFT))}, + "PR_MTE_TCF_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_MTE_TCF_ASYNC))}, + "PR_MTE_TCF_MASK": {"untyped int", constant.MakeInt64(int64(q.PR_MTE_TCF_MASK))}, + "PR_MTE_TCF_NONE": {"untyped int", constant.MakeInt64(int64(q.PR_MTE_TCF_NONE))}, + "PR_MTE_TCF_SHIFT": {"untyped int", constant.MakeInt64(int64(q.PR_MTE_TCF_SHIFT))}, + "PR_MTE_TCF_SYNC": {"untyped int", constant.MakeInt64(int64(q.PR_MTE_TCF_SYNC))}, + "PR_PAC_APDAKEY": {"untyped int", constant.MakeInt64(int64(q.PR_PAC_APDAKEY))}, + "PR_PAC_APDBKEY": {"untyped int", constant.MakeInt64(int64(q.PR_PAC_APDBKEY))}, + "PR_PAC_APGAKEY": {"untyped int", constant.MakeInt64(int64(q.PR_PAC_APGAKEY))}, + "PR_PAC_APIAKEY": {"untyped int", constant.MakeInt64(int64(q.PR_PAC_APIAKEY))}, + "PR_PAC_APIBKEY": {"untyped int", constant.MakeInt64(int64(q.PR_PAC_APIBKEY))}, + "PR_PAC_GET_ENABLED_KEYS": {"untyped int", constant.MakeInt64(int64(q.PR_PAC_GET_ENABLED_KEYS))}, + "PR_PAC_RESET_KEYS": {"untyped int", constant.MakeInt64(int64(q.PR_PAC_RESET_KEYS))}, + "PR_PAC_SET_ENABLED_KEYS": {"untyped int", constant.MakeInt64(int64(q.PR_PAC_SET_ENABLED_KEYS))}, + "PR_SCHED_CORE": {"untyped int", constant.MakeInt64(int64(q.PR_SCHED_CORE))}, + "PR_SCHED_CORE_CREATE": {"untyped int", constant.MakeInt64(int64(q.PR_SCHED_CORE_CREATE))}, + "PR_SCHED_CORE_GET": {"untyped int", constant.MakeInt64(int64(q.PR_SCHED_CORE_GET))}, + "PR_SCHED_CORE_MAX": {"untyped int", constant.MakeInt64(int64(q.PR_SCHED_CORE_MAX))}, + "PR_SCHED_CORE_SCOPE_PROCESS_GROUP": {"untyped int", constant.MakeInt64(int64(q.PR_SCHED_CORE_SCOPE_PROCESS_GROUP))}, + "PR_SCHED_CORE_SCOPE_THREAD": {"untyped int", constant.MakeInt64(int64(q.PR_SCHED_CORE_SCOPE_THREAD))}, + "PR_SCHED_CORE_SCOPE_THREAD_GROUP": {"untyped int", constant.MakeInt64(int64(q.PR_SCHED_CORE_SCOPE_THREAD_GROUP))}, + "PR_SCHED_CORE_SHARE_FROM": {"untyped int", constant.MakeInt64(int64(q.PR_SCHED_CORE_SHARE_FROM))}, + "PR_SCHED_CORE_SHARE_TO": {"untyped int", constant.MakeInt64(int64(q.PR_SCHED_CORE_SHARE_TO))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_FP_MODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FP_MODE))}, + "PR_SET_IO_FLUSHER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_IO_FLUSHER))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_MAP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_MAP))}, + "PR_SET_MM_MAP_SIZE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_MAP_SIZE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeUint64(uint64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_SPECULATION_CTRL": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SPECULATION_CTRL))}, + "PR_SET_SYSCALL_USER_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SYSCALL_USER_DISPATCH))}, + "PR_SET_TAGGED_ADDR_CTRL": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TAGGED_ADDR_CTRL))}, + "PR_SET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_THP_DISABLE))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_SET_VMA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_VMA))}, + "PR_SET_VMA_ANON_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_VMA_ANON_NAME))}, + "PR_SPEC_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SPEC_DISABLE))}, + "PR_SPEC_DISABLE_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.PR_SPEC_DISABLE_NOEXEC))}, + "PR_SPEC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SPEC_ENABLE))}, + "PR_SPEC_FORCE_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SPEC_FORCE_DISABLE))}, + "PR_SPEC_INDIRECT_BRANCH": {"untyped int", constant.MakeInt64(int64(q.PR_SPEC_INDIRECT_BRANCH))}, + "PR_SPEC_L1D_FLUSH": {"untyped int", constant.MakeInt64(int64(q.PR_SPEC_L1D_FLUSH))}, + "PR_SPEC_NOT_AFFECTED": {"untyped int", constant.MakeInt64(int64(q.PR_SPEC_NOT_AFFECTED))}, + "PR_SPEC_PRCTL": {"untyped int", constant.MakeInt64(int64(q.PR_SPEC_PRCTL))}, + "PR_SPEC_STORE_BYPASS": {"untyped int", constant.MakeInt64(int64(q.PR_SPEC_STORE_BYPASS))}, + "PR_SVE_GET_VL": {"untyped int", constant.MakeInt64(int64(q.PR_SVE_GET_VL))}, + "PR_SVE_SET_VL": {"untyped int", constant.MakeInt64(int64(q.PR_SVE_SET_VL))}, + "PR_SVE_SET_VL_ONEXEC": {"untyped int", constant.MakeInt64(int64(q.PR_SVE_SET_VL_ONEXEC))}, + "PR_SVE_VL_INHERIT": {"untyped int", constant.MakeInt64(int64(q.PR_SVE_VL_INHERIT))}, + "PR_SVE_VL_LEN_MASK": {"untyped int", constant.MakeInt64(int64(q.PR_SVE_VL_LEN_MASK))}, + "PR_SYS_DISPATCH_OFF": {"untyped int", constant.MakeInt64(int64(q.PR_SYS_DISPATCH_OFF))}, + "PR_SYS_DISPATCH_ON": {"untyped int", constant.MakeInt64(int64(q.PR_SYS_DISPATCH_ON))}, + "PR_TAGGED_ADDR_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TAGGED_ADDR_ENABLE))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENTMSG_SYSCALL_ENTRY": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENTMSG_SYSCALL_ENTRY))}, + "PTRACE_EVENTMSG_SYSCALL_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENTMSG_SYSCALL_EXIT))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_GET_RSEQ_CONFIGURATION": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_RSEQ_CONFIGURATION))}, + "PTRACE_GET_SYSCALL_INFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_SYSCALL_INFO))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_SUSPEND_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_SUSPEND_SECCOMP))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SECCOMP_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SECCOMP_GET_FILTER))}, + "PTRACE_SECCOMP_GET_METADATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SECCOMP_GET_METADATA))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_SYSCALL_INFO_ENTRY": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL_INFO_ENTRY))}, + "PTRACE_SYSCALL_INFO_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL_INFO_EXIT))}, + "PTRACE_SYSCALL_INFO_NONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL_INFO_NONE))}, + "PTRACE_SYSCALL_INFO_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL_INFO_SECCOMP))}, + "PTRACE_SYSEMU": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU))}, + "PTRACE_SYSEMU_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU_SINGLESTEP))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeUint64(uint64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CC_ALGO": {"untyped int", constant.MakeInt64(int64(q.RTAX_CC_ALGO))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FASTOPEN_NO_COOKIE": {"untyped int", constant.MakeInt64(int64(q.RTAX_FASTOPEN_NO_COOKIE))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_MASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_MASK))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELCHAIN": {"untyped int", constant.MakeInt64(int64(q.RTM_DELCHAIN))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELLINKPROP": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINKPROP))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNETCONF))}, + "RTM_DELNEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEXTHOP))}, + "RTM_DELNEXTHOPBUCKET": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEXTHOPBUCKET))}, + "RTM_DELNSID": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNSID))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_DELVLAN": {"untyped int", constant.MakeInt64(int64(q.RTM_DELVLAN))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_FIB_MATCH": {"untyped int", constant.MakeInt64(int64(q.RTM_F_FIB_MATCH))}, + "RTM_F_LOOKUP_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_LOOKUP_TABLE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.RTM_F_OFFLOAD))}, + "RTM_F_OFFLOAD_FAILED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_OFFLOAD_FAILED))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_F_TRAP": {"untyped int", constant.MakeInt64(int64(q.RTM_F_TRAP))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETCHAIN": {"untyped int", constant.MakeInt64(int64(q.RTM_GETCHAIN))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETLINKPROP": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINKPROP))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETNEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEXTHOP))}, + "RTM_GETNEXTHOPBUCKET": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEXTHOPBUCKET))}, + "RTM_GETNSID": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNSID))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETSTATS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETSTATS))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_GETVLAN": {"untyped int", constant.MakeInt64(int64(q.RTM_GETVLAN))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWCACHEREPORT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWCACHEREPORT))}, + "RTM_NEWCHAIN": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWCHAIN))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWLINKPROP": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINKPROP))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWNEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEXTHOP))}, + "RTM_NEWNEXTHOPBUCKET": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEXTHOPBUCKET))}, + "RTM_NEWNSID": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNSID))}, + "RTM_NEWNVLAN": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNVLAN))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWSTATS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWSTATS))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_COMPARE_MASK": {"untyped int", constant.MakeInt64(int64(q.RTNH_COMPARE_MASK))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_LINKDOWN": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_LINKDOWN))}, + "RTNH_F_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_OFFLOAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNH_F_TRAP": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_TRAP))}, + "RTNH_F_UNRESOLVED": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_UNRESOLVED))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BABEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BABEL))}, + "RTPROT_BGP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BGP))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_EIGRP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_EIGRP))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_ISIS": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ISIS))}, + "RTPROT_KEEPALIVED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KEEPALIVED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_OPENR": {"untyped int", constant.MakeInt64(int64(q.RTPROT_OPENR))}, + "RTPROT_OSPF": {"untyped int", constant.MakeInt64(int64(q.RTPROT_OSPF))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_RIP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RIP))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPING_OPT_STATS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING_OPT_STATS))}, + "SCM_TIMESTAMPING_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING_PKTINFO))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_TXTIME": {"untyped int", constant.MakeInt64(int64(q.SCM_TXTIME))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMPNS_OLD": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS_OLD))}, + "SIOCGSTAMP_OLD": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP_OLD))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_BUF_LOCK_MASK": {"untyped int", constant.MakeInt64(int64(q.SOCK_BUF_LOCK_MASK))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RCVBUF_LOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_RCVBUF_LOCK))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_SNDBUF_LOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_SNDBUF_LOCK))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ALG": {"untyped int", constant.MakeInt64(int64(q.SOL_ALG))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.SOL_BLUETOOTH))}, + "SOL_CAIF": {"untyped int", constant.MakeInt64(int64(q.SOL_CAIF))}, + "SOL_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOL_DCCP))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_IUCV": {"untyped int", constant.MakeInt64(int64(q.SOL_IUCV))}, + "SOL_KCM": {"untyped int", constant.MakeInt64(int64(q.SOL_KCM))}, + "SOL_LLC": {"untyped int", constant.MakeInt64(int64(q.SOL_LLC))}, + "SOL_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.SOL_NETBEUI))}, + "SOL_NETLINK": {"untyped int", constant.MakeInt64(int64(q.SOL_NETLINK))}, + "SOL_NFC": {"untyped int", constant.MakeInt64(int64(q.SOL_NFC))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_PNPIPE": {"untyped int", constant.MakeInt64(int64(q.SOL_PNPIPE))}, + "SOL_PPPOL2TP": {"untyped int", constant.MakeInt64(int64(q.SOL_PPPOL2TP))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_RDS": {"untyped int", constant.MakeInt64(int64(q.SOL_RDS))}, + "SOL_RXRPC": {"untyped int", constant.MakeInt64(int64(q.SOL_RXRPC))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_TIPC": {"untyped int", constant.MakeInt64(int64(q.SOL_TIPC))}, + "SOL_TLS": {"untyped int", constant.MakeInt64(int64(q.SOL_TLS))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOL_XDP": {"untyped int", constant.MakeInt64(int64(q.SOL_XDP))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_BPF": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_BPF))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_ATTACH_REUSEPORT_CBPF": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_REUSEPORT_CBPF))}, + "SO_ATTACH_REUSEPORT_EBPF": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_REUSEPORT_EBPF))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BINDTOIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTOIFINDEX))}, + "SO_BPF_EXTENSIONS": {"untyped int", constant.MakeInt64(int64(q.SO_BPF_EXTENSIONS))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUF_LOCK": {"untyped int", constant.MakeInt64(int64(q.SO_BUF_LOCK))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_BUSY_POLL_BUDGET": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL_BUDGET))}, + "SO_CNX_ADVICE": {"untyped int", constant.MakeInt64(int64(q.SO_CNX_ADVICE))}, + "SO_COOKIE": {"untyped int", constant.MakeInt64(int64(q.SO_COOKIE))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_BPF": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_BPF))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DETACH_REUSEPORT_BPF": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_REUSEPORT_BPF))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_INCOMING_CPU": {"untyped int", constant.MakeInt64(int64(q.SO_INCOMING_CPU))}, + "SO_INCOMING_NAPI_ID": {"untyped int", constant.MakeInt64(int64(q.SO_INCOMING_NAPI_ID))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_MAX_PACING_RATE": {"untyped int", constant.MakeInt64(int64(q.SO_MAX_PACING_RATE))}, + "SO_MEMINFO": {"untyped int", constant.MakeInt64(int64(q.SO_MEMINFO))}, + "SO_NETNS_COOKIE": {"untyped int", constant.MakeInt64(int64(q.SO_NETNS_COOKIE))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERGROUPS": {"untyped int", constant.MakeInt64(int64(q.SO_PEERGROUPS))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PREFER_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_PREFER_BUSY_POLL))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_RCVTIMEO_NEW": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO_NEW))}, + "SO_RCVTIMEO_OLD": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO_OLD))}, + "SO_RESERVE_MEM": {"untyped int", constant.MakeInt64(int64(q.SO_RESERVE_MEM))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_SNDTIMEO_NEW": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO_NEW))}, + "SO_SNDTIMEO_OLD": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO_OLD))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPING_NEW": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING_NEW))}, + "SO_TIMESTAMPING_OLD": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING_OLD))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TIMESTAMPNS_NEW": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS_NEW))}, + "SO_TIMESTAMPNS_OLD": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS_OLD))}, + "SO_TIMESTAMP_NEW": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP_NEW))}, + "SO_TIMESTAMP_OLD": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP_OLD))}, + "SO_TXTIME": {"untyped int", constant.MakeInt64(int64(q.SO_TXTIME))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SO_ZEROCOPY": {"untyped int", constant.MakeInt64(int64(q.SO_ZEROCOPY))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_ARCH_SPECIFIC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_ARCH_SPECIFIC_SYSCALL))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BPF": {"untyped int", constant.MakeInt64(int64(q.SYS_BPF))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE_RANGE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_COPY_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_COPY_FILE_RANGE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_PWAIT2": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT2))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXECVEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVEAT))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FACCESSAT2": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT2))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FINIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_FINIT_MODULE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSCONFIG": {"untyped int", constant.MakeInt64(int64(q.SYS_FSCONFIG))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSMOUNT))}, + "SYS_FSOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FSOPEN))}, + "SYS_FSPICK": {"untyped int", constant.MakeInt64(int64(q.SYS_FSPICK))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTEX_WAITV": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX_WAITV))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRANDOM": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRANDOM))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_PGETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_PGETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IO_URING_ENTER": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_URING_ENTER))}, + "SYS_IO_URING_REGISTER": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_URING_REGISTER))}, + "SYS_IO_URING_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_URING_SETUP))}, + "SYS_KCMP": {"untyped int", constant.MakeInt64(int64(q.SYS_KCMP))}, + "SYS_KEXEC_FILE_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_FILE_LOAD))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LANDLOCK_ADD_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_LANDLOCK_ADD_RULE))}, + "SYS_LANDLOCK_CREATE_RULESET": {"untyped int", constant.MakeInt64(int64(q.SYS_LANDLOCK_CREATE_RULESET))}, + "SYS_LANDLOCK_RESTRICT_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_LANDLOCK_RESTRICT_SELF))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MEMBARRIER": {"untyped int", constant.MakeInt64(int64(q.SYS_MEMBARRIER))}, + "SYS_MEMFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_MEMFD_CREATE))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCK2": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK2))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOUNT_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT_SETATTR))}, + "SYS_MOVE_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPENAT2": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT2))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_OPEN_TREE": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_TREE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIDFD_GETFD": {"untyped int", constant.MakeInt64(int64(q.SYS_PIDFD_GETFD))}, + "SYS_PIDFD_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PIDFD_OPEN))}, + "SYS_PIDFD_SEND_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_PIDFD_SEND_SIGNAL))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_PKEY_ALLOC": {"untyped int", constant.MakeInt64(int64(q.SYS_PKEY_ALLOC))}, + "SYS_PKEY_FREE": {"untyped int", constant.MakeInt64(int64(q.SYS_PKEY_FREE))}, + "SYS_PKEY_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PKEY_MPROTECT))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PREADV2": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV2))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_MADVISE))}, + "SYS_PROCESS_MRELEASE": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_MRELEASE))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_PWRITEV2": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV2))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_QUOTACTL_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL_FD))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAMEAT2": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT2))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RSEQ": {"untyped int", constant.MakeInt64(int64(q.SYS_RSEQ))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETATTR))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETATTR))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.SYS_SECCOMP))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_MEMPOLICY_HOME_NODE": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY_HOME_NODE))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATX": {"untyped int", constant.MakeInt64(int64(q.SYS_STATX))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USERFAULTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_USERFAULTFD))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CC_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_CC_INFO))}, + "TCP_CM_INQ": {"untyped int", constant.MakeInt64(int64(q.TCP_CM_INQ))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_COOKIE_IN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_IN_ALWAYS))}, + "TCP_COOKIE_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MAX))}, + "TCP_COOKIE_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MIN))}, + "TCP_COOKIE_OUT_NEVER": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_OUT_NEVER))}, + "TCP_COOKIE_PAIR_SIZE": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_PAIR_SIZE))}, + "TCP_COOKIE_TRANSACTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_TRANSACTIONS))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN))}, + "TCP_FASTOPEN_CONNECT": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN_CONNECT))}, + "TCP_FASTOPEN_KEY": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN_KEY))}, + "TCP_FASTOPEN_NO_COOKIE": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN_NO_COOKIE))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_INQ": {"untyped int", constant.MakeInt64(int64(q.TCP_INQ))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_EXT": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_EXT))}, + "TCP_MD5SIG_FLAG_PREFIX": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_FLAG_PREFIX))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_MSS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DEFAULT))}, + "TCP_MSS_DESIRED": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DESIRED))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOTSENT_LOWAT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOTSENT_LOWAT))}, + "TCP_QUEUE_SEQ": {"untyped int", constant.MakeInt64(int64(q.TCP_QUEUE_SEQ))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_REPAIR": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR))}, + "TCP_REPAIR_OFF": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OFF))}, + "TCP_REPAIR_OFF_NO_WP": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OFF_NO_WP))}, + "TCP_REPAIR_ON": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_ON))}, + "TCP_REPAIR_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OPTIONS))}, + "TCP_REPAIR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_QUEUE))}, + "TCP_REPAIR_WINDOW": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_WINDOW))}, + "TCP_SAVED_SYN": {"untyped int", constant.MakeInt64(int64(q.TCP_SAVED_SYN))}, + "TCP_SAVE_SYN": {"untyped int", constant.MakeInt64(int64(q.TCP_SAVE_SYN))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_S_DATA_IN": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_IN))}, + "TCP_S_DATA_OUT": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_OUT))}, + "TCP_THIN_DUPACK": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_DUPACK))}, + "TCP_THIN_LINEAR_TIMEOUTS": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_LINEAR_TIMEOUTS))}, + "TCP_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_TIMESTAMP))}, + "TCP_TX_DELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_TX_DELAY))}, + "TCP_ULP": {"untyped int", constant.MakeInt64(int64(q.TCP_ULP))}, + "TCP_USER_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_USER_TIMEOUT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCP_ZEROCOPY_RECEIVE": {"untyped int", constant.MakeInt64(int64(q.TCP_ZEROCOPY_RECEIVE))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGISO7816": {"untyped int", constant.MakeInt64(int64(q.TIOCGISO7816))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGPTPEER": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTPEER))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSISO7816": {"untyped int", constant.MakeInt64(int64(q.TIOCSISO7816))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETDEVNETNS": {"untyped int", constant.MakeInt64(int64(q.TUNGETDEVNETNS))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETBE": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETBE))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNGETVNETLE": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETLE))}, + "TUNSETCARRIER": {"untyped int", constant.MakeInt64(int64(q.TUNSETCARRIER))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETFILTEREBPF": {"untyped int", constant.MakeInt64(int64(q.TUNSETFILTEREBPF))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETSTEERINGEBPF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSTEERINGEBPF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETBE": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETBE))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "TUNSETVNETLE": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETLE))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_linux_mips.go b/pkg/syscall/go122_export_linux_mips.go new file mode 100755 index 00000000..025c594d --- /dev/null +++ b/pkg/syscall/go122_export_linux_mips.go @@ -0,0 +1,2471 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINIT": {reflect.TypeOf(q.EINIT), constant.MakeInt64(int64(q.EINIT))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMDEV": {reflect.TypeOf(q.EREMDEV), constant.MakeInt64(int64(q.EREMDEV))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VSOCK": {"untyped int", constant.MakeInt64(int64(q.AF_VSOCK))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_6LOWPAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_6LOWPAN))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_80221": {"untyped int", constant.MakeInt64(int64(q.ETH_P_80221))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOPBACK))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PRP))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_MANAGETEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IFA_F_MANAGETEMPADDR))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_NOPREFIXROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NOPREFIXROUTE))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_BEETPH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BEETPH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_HUGE_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_MASK))}, + "MAP_HUGE_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_SHIFT))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TMPFILE": {"untyped int", constant.MakeInt64(int64(q.O_TMPFILE))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_QM": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_QM))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_KERNEL": {"untyped int", constant.MakeInt64(int64(q.PACKET_KERNEL))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_QDISC_BYPASS": {"untyped int", constant.MakeInt64(int64(q.PACKET_QDISC_BYPASS))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_USER": {"untyped int", constant.MakeInt64(int64(q.PACKET_USER))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_THP_DISABLE))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_THP_DISABLE))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_GET_THREAD_AREA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA_3264))}, + "PTRACE_GET_WATCH_REGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_WATCH_REGS))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKDATA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA_3264))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKTEXT_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT_3264))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKEDATA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA_3264))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKETEXT_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT_3264))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_THREAD_AREA))}, + "PTRACE_SET_WATCH_REGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_WATCH_REGS))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BPF_EXTENSIONS": {"untyped int", constant.MakeInt64(int64(q.SO_BPF_EXTENSIONS))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_MAX_PACING_RATE": {"untyped int", constant.MakeInt64(int64(q.SO_MAX_PACING_RATE))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_STYLE": {"untyped int", constant.MakeInt64(int64(q.SO_STYLE))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_64_LINUX_SYSCALLS": {"untyped int", constant.MakeInt64(int64(q.SYS_64_LINUX_SYSCALLS))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_BDFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_BDFLUSH))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CACHECTL": {"untyped int", constant.MakeInt64(int64(q.SYS_CACHECTL))}, + "SYS_CACHEFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_CACHEFLUSH))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL64": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL64))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTATAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT64))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_FTIME))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FTRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE64))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_GTTY": {"untyped int", constant.MakeInt64(int64(q.SYS_GTTY))}, + "SYS_IDLE": {"untyped int", constant.MakeInt64(int64(q.SYS_IDLE))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPERM": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPERM))}, + "SYS_IOPL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IPC": {"untyped int", constant.MakeInt64(int64(q.SYS_IPC))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LINUX_SYSCALLS": {"untyped int", constant.MakeInt64(int64(q.SYS_LINUX_SYSCALLS))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_LOCK))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MMAP2": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP2))}, + "SYS_MODIFY_LDT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODIFY_LDT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MPX": {"untyped int", constant.MakeInt64(int64(q.SYS_MPX))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_N32_LINUX_SYSCALLS": {"untyped int", constant.MakeInt64(int64(q.SYS_N32_LINUX_SYSCALLS))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_NICE": {"untyped int", constant.MakeInt64(int64(q.SYS_NICE))}, + "SYS_O32_LINUX_SYSCALLS": {"untyped int", constant.MakeInt64(int64(q.SYS_O32_LINUX_SYSCALLS))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PROF": {"untyped int", constant.MakeInt64(int64(q.SYS_PROF))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_READDIR))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECV": {"untyped int", constant.MakeInt64(int64(q.SYS_RECV))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESERVED221": {"untyped int", constant.MakeInt64(int64(q.SYS_RESERVED221))}, + "SYS_RESERVED82": {"untyped int", constant.MakeInt64(int64(q.SYS_RESERVED82))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SEND))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDFILE64": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE64))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_THREAD_AREA))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SGETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SGETMASK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNAL))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETCALL))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_SSETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSETMASK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STIME": {"untyped int", constant.MakeInt64(int64(q.SYS_STIME))}, + "SYS_STTY": {"untyped int", constant.MakeInt64(int64(q.SYS_STTY))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_SYSMIPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSMIPS))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE64))}, + "SYS_ULIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_ULIMIT))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_UNUSED109": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED109))}, + "SYS_UNUSED150": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED150))}, + "SYS_UNUSED18": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED18))}, + "SYS_UNUSED28": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED28))}, + "SYS_UNUSED59": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED59))}, + "SYS_UNUSED84": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED84))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VM86": {"untyped int", constant.MakeInt64(int64(q.SYS_VM86))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITPID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITPID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LLSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS__LLSEEK))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_COOKIE_IN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_IN_ALWAYS))}, + "TCP_COOKIE_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MAX))}, + "TCP_COOKIE_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MIN))}, + "TCP_COOKIE_OUT_NEVER": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_OUT_NEVER))}, + "TCP_COOKIE_PAIR_SIZE": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_PAIR_SIZE))}, + "TCP_COOKIE_TRANSACTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_TRANSACTIONS))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_MSS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DEFAULT))}, + "TCP_MSS_DESIRED": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DESIRED))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUEUE_SEQ": {"untyped int", constant.MakeInt64(int64(q.TCP_QUEUE_SEQ))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_REPAIR": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR))}, + "TCP_REPAIR_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OPTIONS))}, + "TCP_REPAIR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_QUEUE))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_S_DATA_IN": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_IN))}, + "TCP_S_DATA_OUT": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_OUT))}, + "TCP_THIN_DUPACK": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_DUPACK))}, + "TCP_THIN_LINEAR_TIMEOUTS": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_LINEAR_TIMEOUTS))}, + "TCP_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_TIMESTAMP))}, + "TCP_USER_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_USER_TIMEOUT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGETP": {"untyped int", constant.MakeInt64(int64(q.TIOCGETP))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCGLTC))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETN": {"untyped int", constant.MakeInt64(int64(q.TIOCSETN))}, + "TIOCSETP": {"untyped int", constant.MakeInt64(int64(q.TIOCSETP))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCSLTC))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VSWTCH": {"untyped int", constant.MakeInt64(int64(q.VSWTCH))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_linux_mips64.go b/pkg/syscall/go122_export_linux_mips64.go new file mode 100755 index 00000000..b536d893 --- /dev/null +++ b/pkg/syscall/go122_export_linux_mips64.go @@ -0,0 +1,2419 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINIT": {reflect.TypeOf(q.EINIT), constant.MakeInt64(int64(q.EINIT))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMDEV": {reflect.TypeOf(q.EREMDEV), constant.MakeInt64(int64(q.EREMDEV))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "EPOLL_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.EPOLL_NONBLOCK))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_802_1Q_VLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_802_1Q_VLAN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BONDING": {"untyped int", constant.MakeInt64(int64(q.IFF_BONDING))}, + "IFF_BRIDGE_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_BRIDGE_PORT))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DISABLE_NETPOLL": {"untyped int", constant.MakeInt64(int64(q.IFF_DISABLE_NETPOLL))}, + "IFF_DONT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_DONT_BRIDGE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_EBRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_EBRIDGE))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_ISATAP": {"untyped int", constant.MakeInt64(int64(q.IFF_ISATAP))}, + "IFF_LIVE_ADDR_CHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_LIVE_ADDR_CHANGE))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MACVLAN_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN_PORT))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MASTER_8023AD": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_8023AD))}, + "IFF_MASTER_ALB": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ALB))}, + "IFF_MASTER_ARPMON": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ARPMON))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_OVS_DATAPATH": {"untyped int", constant.MakeInt64(int64(q.IFF_OVS_DATAPATH))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_SLAVE_INACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_INACTIVE))}, + "IFF_SLAVE_NEEDARP": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_NEEDARP))}, + "IFF_SUPP_NOFCS": {"untyped int", constant.MakeInt64(int64(q.IFF_SUPP_NOFCS))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TEAM_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_TEAM_PORT))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_TX_SKB_SHARING": {"untyped int", constant.MakeInt64(int64(q.IFF_TX_SKB_SHARING))}, + "IFF_UNICAST_FLT": {"untyped int", constant.MakeInt64(int64(q.IFF_UNICAST_FLT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFF_WAN_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFF_WAN_HDLC))}, + "IFF_XMIT_DST_RELEASE": {"untyped int", constant.MakeInt64(int64(q.IFF_XMIT_DST_RELEASE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_GET_THREAD_AREA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA_3264))}, + "PTRACE_GET_WATCH_REGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_WATCH_REGS))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKDATA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA_3264))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKTEXT_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT_3264))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKEDATA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA_3264))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKETEXT_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT_3264))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_THREAD_AREA))}, + "PTRACE_SET_WATCH_REGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_WATCH_REGS))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_STYLE": {"untyped int", constant.MakeInt64(int64(q.SO_STYLE))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BPF": {"untyped int", constant.MakeInt64(int64(q.SYS_BPF))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CACHECTL": {"untyped int", constant.MakeInt64(int64(q.SYS_CACHECTL))}, + "SYS_CACHEFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_CACHEFLUSH))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXECVEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVEAT))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FINIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_FINIT_MODULE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRANDOM": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRANDOM))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_KCMP": {"untyped int", constant.MakeInt64(int64(q.SYS_KCMP))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MEMFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_MEMFD_CREATE))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NEWFSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NEWFSTATAT))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_RENAMEAT2": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT2))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESERVED177": {"untyped int", constant.MakeInt64(int64(q.SYS_RESERVED177))}, + "SYS_RESERVED193": {"untyped int", constant.MakeInt64(int64(q.SYS_RESERVED193))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETATTR))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETATTR))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.SYS_SECCOMP))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_THREAD_AREA))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_SYSMIPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSMIPS))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIMERFD": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGETP": {"untyped int", constant.MakeInt64(int64(q.TIOCGETP))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCGLTC))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETN": {"untyped int", constant.MakeInt64(int64(q.TIOCSETN))}, + "TIOCSETP": {"untyped int", constant.MakeInt64(int64(q.TIOCSETP))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCSLTC))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VSWTCH": {"untyped int", constant.MakeInt64(int64(q.VSWTCH))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_linux_mips64le.go b/pkg/syscall/go122_export_linux_mips64le.go new file mode 100755 index 00000000..b536d893 --- /dev/null +++ b/pkg/syscall/go122_export_linux_mips64le.go @@ -0,0 +1,2419 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINIT": {reflect.TypeOf(q.EINIT), constant.MakeInt64(int64(q.EINIT))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMDEV": {reflect.TypeOf(q.EREMDEV), constant.MakeInt64(int64(q.EREMDEV))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "EPOLL_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.EPOLL_NONBLOCK))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_802_1Q_VLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_802_1Q_VLAN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BONDING": {"untyped int", constant.MakeInt64(int64(q.IFF_BONDING))}, + "IFF_BRIDGE_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_BRIDGE_PORT))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DISABLE_NETPOLL": {"untyped int", constant.MakeInt64(int64(q.IFF_DISABLE_NETPOLL))}, + "IFF_DONT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_DONT_BRIDGE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_EBRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_EBRIDGE))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_ISATAP": {"untyped int", constant.MakeInt64(int64(q.IFF_ISATAP))}, + "IFF_LIVE_ADDR_CHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_LIVE_ADDR_CHANGE))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MACVLAN_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN_PORT))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MASTER_8023AD": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_8023AD))}, + "IFF_MASTER_ALB": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ALB))}, + "IFF_MASTER_ARPMON": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ARPMON))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_OVS_DATAPATH": {"untyped int", constant.MakeInt64(int64(q.IFF_OVS_DATAPATH))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_SLAVE_INACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_INACTIVE))}, + "IFF_SLAVE_NEEDARP": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_NEEDARP))}, + "IFF_SUPP_NOFCS": {"untyped int", constant.MakeInt64(int64(q.IFF_SUPP_NOFCS))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TEAM_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_TEAM_PORT))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_TX_SKB_SHARING": {"untyped int", constant.MakeInt64(int64(q.IFF_TX_SKB_SHARING))}, + "IFF_UNICAST_FLT": {"untyped int", constant.MakeInt64(int64(q.IFF_UNICAST_FLT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFF_WAN_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFF_WAN_HDLC))}, + "IFF_XMIT_DST_RELEASE": {"untyped int", constant.MakeInt64(int64(q.IFF_XMIT_DST_RELEASE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_GET_THREAD_AREA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA_3264))}, + "PTRACE_GET_WATCH_REGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_WATCH_REGS))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKDATA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA_3264))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKTEXT_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT_3264))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKEDATA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA_3264))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKETEXT_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT_3264))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_THREAD_AREA))}, + "PTRACE_SET_WATCH_REGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_WATCH_REGS))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_STYLE": {"untyped int", constant.MakeInt64(int64(q.SO_STYLE))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BPF": {"untyped int", constant.MakeInt64(int64(q.SYS_BPF))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CACHECTL": {"untyped int", constant.MakeInt64(int64(q.SYS_CACHECTL))}, + "SYS_CACHEFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_CACHEFLUSH))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXECVEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVEAT))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FINIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_FINIT_MODULE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRANDOM": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRANDOM))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_KCMP": {"untyped int", constant.MakeInt64(int64(q.SYS_KCMP))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MEMFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_MEMFD_CREATE))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NEWFSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NEWFSTATAT))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_RENAMEAT2": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT2))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESERVED177": {"untyped int", constant.MakeInt64(int64(q.SYS_RESERVED177))}, + "SYS_RESERVED193": {"untyped int", constant.MakeInt64(int64(q.SYS_RESERVED193))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETATTR))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETATTR))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.SYS_SECCOMP))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_THREAD_AREA))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_SYSMIPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSMIPS))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIMERFD": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGETP": {"untyped int", constant.MakeInt64(int64(q.TIOCGETP))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCGLTC))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETN": {"untyped int", constant.MakeInt64(int64(q.TIOCSETN))}, + "TIOCSETP": {"untyped int", constant.MakeInt64(int64(q.TIOCSETP))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCSLTC))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VSWTCH": {"untyped int", constant.MakeInt64(int64(q.VSWTCH))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_linux_mipsle.go b/pkg/syscall/go122_export_linux_mipsle.go new file mode 100755 index 00000000..025c594d --- /dev/null +++ b/pkg/syscall/go122_export_linux_mipsle.go @@ -0,0 +1,2471 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINIT": {reflect.TypeOf(q.EINIT), constant.MakeInt64(int64(q.EINIT))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMDEV": {reflect.TypeOf(q.EREMDEV), constant.MakeInt64(int64(q.EREMDEV))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VSOCK": {"untyped int", constant.MakeInt64(int64(q.AF_VSOCK))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_6LOWPAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_6LOWPAN))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_80221": {"untyped int", constant.MakeInt64(int64(q.ETH_P_80221))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOPBACK))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PRP))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_MANAGETEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IFA_F_MANAGETEMPADDR))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_NOPREFIXROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NOPREFIXROUTE))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_BEETPH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BEETPH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_HUGE_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_MASK))}, + "MAP_HUGE_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_SHIFT))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TMPFILE": {"untyped int", constant.MakeInt64(int64(q.O_TMPFILE))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_QM": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_QM))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_KERNEL": {"untyped int", constant.MakeInt64(int64(q.PACKET_KERNEL))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_QDISC_BYPASS": {"untyped int", constant.MakeInt64(int64(q.PACKET_QDISC_BYPASS))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_USER": {"untyped int", constant.MakeInt64(int64(q.PACKET_USER))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_THP_DISABLE))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_THP_DISABLE))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_GET_THREAD_AREA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA_3264))}, + "PTRACE_GET_WATCH_REGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_WATCH_REGS))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKDATA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA_3264))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKTEXT_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT_3264))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKEDATA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA_3264))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKETEXT_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT_3264))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_THREAD_AREA))}, + "PTRACE_SET_WATCH_REGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_WATCH_REGS))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BPF_EXTENSIONS": {"untyped int", constant.MakeInt64(int64(q.SO_BPF_EXTENSIONS))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_MAX_PACING_RATE": {"untyped int", constant.MakeInt64(int64(q.SO_MAX_PACING_RATE))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_STYLE": {"untyped int", constant.MakeInt64(int64(q.SO_STYLE))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_64_LINUX_SYSCALLS": {"untyped int", constant.MakeInt64(int64(q.SYS_64_LINUX_SYSCALLS))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_BDFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_BDFLUSH))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CACHECTL": {"untyped int", constant.MakeInt64(int64(q.SYS_CACHECTL))}, + "SYS_CACHEFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_CACHEFLUSH))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL64": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL64))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTATAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT64))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_FTIME))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FTRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE64))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_GTTY": {"untyped int", constant.MakeInt64(int64(q.SYS_GTTY))}, + "SYS_IDLE": {"untyped int", constant.MakeInt64(int64(q.SYS_IDLE))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPERM": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPERM))}, + "SYS_IOPL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IPC": {"untyped int", constant.MakeInt64(int64(q.SYS_IPC))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LINUX_SYSCALLS": {"untyped int", constant.MakeInt64(int64(q.SYS_LINUX_SYSCALLS))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_LOCK))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MMAP2": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP2))}, + "SYS_MODIFY_LDT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODIFY_LDT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MPX": {"untyped int", constant.MakeInt64(int64(q.SYS_MPX))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_N32_LINUX_SYSCALLS": {"untyped int", constant.MakeInt64(int64(q.SYS_N32_LINUX_SYSCALLS))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_NICE": {"untyped int", constant.MakeInt64(int64(q.SYS_NICE))}, + "SYS_O32_LINUX_SYSCALLS": {"untyped int", constant.MakeInt64(int64(q.SYS_O32_LINUX_SYSCALLS))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PROF": {"untyped int", constant.MakeInt64(int64(q.SYS_PROF))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_READDIR))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECV": {"untyped int", constant.MakeInt64(int64(q.SYS_RECV))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESERVED221": {"untyped int", constant.MakeInt64(int64(q.SYS_RESERVED221))}, + "SYS_RESERVED82": {"untyped int", constant.MakeInt64(int64(q.SYS_RESERVED82))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SEND))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDFILE64": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE64))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_THREAD_AREA))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SGETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SGETMASK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNAL))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETCALL))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_SSETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSETMASK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STIME": {"untyped int", constant.MakeInt64(int64(q.SYS_STIME))}, + "SYS_STTY": {"untyped int", constant.MakeInt64(int64(q.SYS_STTY))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_SYSMIPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSMIPS))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE64))}, + "SYS_ULIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_ULIMIT))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_UNUSED109": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED109))}, + "SYS_UNUSED150": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED150))}, + "SYS_UNUSED18": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED18))}, + "SYS_UNUSED28": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED28))}, + "SYS_UNUSED59": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED59))}, + "SYS_UNUSED84": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED84))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VM86": {"untyped int", constant.MakeInt64(int64(q.SYS_VM86))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITPID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITPID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LLSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS__LLSEEK))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_COOKIE_IN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_IN_ALWAYS))}, + "TCP_COOKIE_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MAX))}, + "TCP_COOKIE_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MIN))}, + "TCP_COOKIE_OUT_NEVER": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_OUT_NEVER))}, + "TCP_COOKIE_PAIR_SIZE": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_PAIR_SIZE))}, + "TCP_COOKIE_TRANSACTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_TRANSACTIONS))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_MSS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DEFAULT))}, + "TCP_MSS_DESIRED": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DESIRED))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUEUE_SEQ": {"untyped int", constant.MakeInt64(int64(q.TCP_QUEUE_SEQ))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_REPAIR": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR))}, + "TCP_REPAIR_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OPTIONS))}, + "TCP_REPAIR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_QUEUE))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_S_DATA_IN": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_IN))}, + "TCP_S_DATA_OUT": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_OUT))}, + "TCP_THIN_DUPACK": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_DUPACK))}, + "TCP_THIN_LINEAR_TIMEOUTS": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_LINEAR_TIMEOUTS))}, + "TCP_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_TIMESTAMP))}, + "TCP_USER_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_USER_TIMEOUT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGETP": {"untyped int", constant.MakeInt64(int64(q.TIOCGETP))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCGLTC))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETN": {"untyped int", constant.MakeInt64(int64(q.TIOCSETN))}, + "TIOCSETP": {"untyped int", constant.MakeInt64(int64(q.TIOCSETP))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCSLTC))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VSWTCH": {"untyped int", constant.MakeInt64(int64(q.VSWTCH))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_linux_ppc64.go b/pkg/syscall/go122_export_linux_ppc64.go new file mode 100755 index 00000000..9c24cf34 --- /dev/null +++ b/pkg/syscall/go122_export_linux_ppc64.go @@ -0,0 +1,2510 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "EPOLL_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.EPOLL_NONBLOCK))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PRP))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_802_1Q_VLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_802_1Q_VLAN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BONDING": {"untyped int", constant.MakeInt64(int64(q.IFF_BONDING))}, + "IFF_BRIDGE_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_BRIDGE_PORT))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DISABLE_NETPOLL": {"untyped int", constant.MakeInt64(int64(q.IFF_DISABLE_NETPOLL))}, + "IFF_DONT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_DONT_BRIDGE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_EBRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_EBRIDGE))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_ISATAP": {"untyped int", constant.MakeInt64(int64(q.IFF_ISATAP))}, + "IFF_LIVE_ADDR_CHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_LIVE_ADDR_CHANGE))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MACVLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN))}, + "IFF_MACVLAN_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN_PORT))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MASTER_8023AD": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_8023AD))}, + "IFF_MASTER_ALB": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ALB))}, + "IFF_MASTER_ARPMON": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ARPMON))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_OVS_DATAPATH": {"untyped int", constant.MakeInt64(int64(q.IFF_OVS_DATAPATH))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_SLAVE_INACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_INACTIVE))}, + "IFF_SLAVE_NEEDARP": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_NEEDARP))}, + "IFF_SUPP_NOFCS": {"untyped int", constant.MakeInt64(int64(q.IFF_SUPP_NOFCS))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TEAM_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_TEAM_PORT))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_TX_SKB_SHARING": {"untyped int", constant.MakeInt64(int64(q.IFF_TX_SKB_SHARING))}, + "IFF_UNICAST_FLT": {"untyped int", constant.MakeInt64(int64(q.IFF_UNICAST_FLT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFF_WAN_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFF_WAN_HDLC))}, + "IFF_XMIT_DST_RELEASE": {"untyped int", constant.MakeInt64(int64(q.IFF_XMIT_DST_RELEASE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_SAO": {"untyped int", constant.MakeInt64(int64(q.PROT_SAO))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETEVRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVRREGS))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGS64": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS64))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_GETVRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETVRREGS))}, + "PTRACE_GETVSRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETVSRREGS))}, + "PTRACE_GET_DEBUGREG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_DEBUGREG))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETEVRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETEVRREGS))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGS64": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS64))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SETVRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETVRREGS))}, + "PTRACE_SETVSRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETVSRREGS))}, + "PTRACE_SET_DEBUGREG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_DEBUGREG))}, + "PTRACE_SINGLEBLOCK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLEBLOCK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_CCR": {"untyped int", constant.MakeInt64(int64(q.PT_CCR))}, + "PT_CTR": {"untyped int", constant.MakeInt64(int64(q.PT_CTR))}, + "PT_DAR": {"untyped int", constant.MakeInt64(int64(q.PT_DAR))}, + "PT_DSCR": {"untyped int", constant.MakeInt64(int64(q.PT_DSCR))}, + "PT_DSISR": {"untyped int", constant.MakeInt64(int64(q.PT_DSISR))}, + "PT_FPR0": {"untyped int", constant.MakeInt64(int64(q.PT_FPR0))}, + "PT_FPSCR": {"untyped int", constant.MakeInt64(int64(q.PT_FPSCR))}, + "PT_LNK": {"untyped int", constant.MakeInt64(int64(q.PT_LNK))}, + "PT_MSR": {"untyped int", constant.MakeInt64(int64(q.PT_MSR))}, + "PT_NIP": {"untyped int", constant.MakeInt64(int64(q.PT_NIP))}, + "PT_ORIG_R3": {"untyped int", constant.MakeInt64(int64(q.PT_ORIG_R3))}, + "PT_R0": {"untyped int", constant.MakeInt64(int64(q.PT_R0))}, + "PT_R1": {"untyped int", constant.MakeInt64(int64(q.PT_R1))}, + "PT_R10": {"untyped int", constant.MakeInt64(int64(q.PT_R10))}, + "PT_R11": {"untyped int", constant.MakeInt64(int64(q.PT_R11))}, + "PT_R12": {"untyped int", constant.MakeInt64(int64(q.PT_R12))}, + "PT_R13": {"untyped int", constant.MakeInt64(int64(q.PT_R13))}, + "PT_R14": {"untyped int", constant.MakeInt64(int64(q.PT_R14))}, + "PT_R15": {"untyped int", constant.MakeInt64(int64(q.PT_R15))}, + "PT_R16": {"untyped int", constant.MakeInt64(int64(q.PT_R16))}, + "PT_R17": {"untyped int", constant.MakeInt64(int64(q.PT_R17))}, + "PT_R18": {"untyped int", constant.MakeInt64(int64(q.PT_R18))}, + "PT_R19": {"untyped int", constant.MakeInt64(int64(q.PT_R19))}, + "PT_R2": {"untyped int", constant.MakeInt64(int64(q.PT_R2))}, + "PT_R20": {"untyped int", constant.MakeInt64(int64(q.PT_R20))}, + "PT_R21": {"untyped int", constant.MakeInt64(int64(q.PT_R21))}, + "PT_R22": {"untyped int", constant.MakeInt64(int64(q.PT_R22))}, + "PT_R23": {"untyped int", constant.MakeInt64(int64(q.PT_R23))}, + "PT_R24": {"untyped int", constant.MakeInt64(int64(q.PT_R24))}, + "PT_R25": {"untyped int", constant.MakeInt64(int64(q.PT_R25))}, + "PT_R26": {"untyped int", constant.MakeInt64(int64(q.PT_R26))}, + "PT_R27": {"untyped int", constant.MakeInt64(int64(q.PT_R27))}, + "PT_R28": {"untyped int", constant.MakeInt64(int64(q.PT_R28))}, + "PT_R29": {"untyped int", constant.MakeInt64(int64(q.PT_R29))}, + "PT_R3": {"untyped int", constant.MakeInt64(int64(q.PT_R3))}, + "PT_R30": {"untyped int", constant.MakeInt64(int64(q.PT_R30))}, + "PT_R31": {"untyped int", constant.MakeInt64(int64(q.PT_R31))}, + "PT_R4": {"untyped int", constant.MakeInt64(int64(q.PT_R4))}, + "PT_R5": {"untyped int", constant.MakeInt64(int64(q.PT_R5))}, + "PT_R6": {"untyped int", constant.MakeInt64(int64(q.PT_R6))}, + "PT_R7": {"untyped int", constant.MakeInt64(int64(q.PT_R7))}, + "PT_R8": {"untyped int", constant.MakeInt64(int64(q.PT_R8))}, + "PT_R9": {"untyped int", constant.MakeInt64(int64(q.PT_R9))}, + "PT_REGS_COUNT": {"untyped int", constant.MakeInt64(int64(q.PT_REGS_COUNT))}, + "PT_RESULT": {"untyped int", constant.MakeInt64(int64(q.PT_RESULT))}, + "PT_SOFTE": {"untyped int", constant.MakeInt64(int64(q.PT_SOFTE))}, + "PT_TRAP": {"untyped int", constant.MakeInt64(int64(q.PT_TRAP))}, + "PT_VR0": {"untyped int", constant.MakeInt64(int64(q.PT_VR0))}, + "PT_VRSAVE": {"untyped int", constant.MakeInt64(int64(q.PT_VRSAVE))}, + "PT_VSCR": {"untyped int", constant.MakeInt64(int64(q.PT_VSCR))}, + "PT_VSR0": {"untyped int", constant.MakeInt64(int64(q.PT_VSR0))}, + "PT_VSR31": {"untyped int", constant.MakeInt64(int64(q.PT_VSR31))}, + "PT_XER": {"untyped int", constant.MakeInt64(int64(q.PT_XER))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_MAX_PACING_RATE": {"untyped int", constant.MakeInt64(int64(q.SO_MAX_PACING_RATE))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_BDFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_BDFLUSH))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FINIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_FINIT_MODULE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_FTIME))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_GTTY": {"untyped int", constant.MakeInt64(int64(q.SYS_GTTY))}, + "SYS_IDLE": {"untyped int", constant.MakeInt64(int64(q.SYS_IDLE))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPERM": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPERM))}, + "SYS_IOPL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IPC": {"untyped int", constant.MakeInt64(int64(q.SYS_IPC))}, + "SYS_KCMP": {"untyped int", constant.MakeInt64(int64(q.SYS_KCMP))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_LOCK))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODIFY_LDT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODIFY_LDT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MPX": {"untyped int", constant.MakeInt64(int64(q.SYS_MPX))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MULTIPLEXER": {"untyped int", constant.MakeInt64(int64(q.SYS_MULTIPLEXER))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NEWFSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NEWFSTATAT))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_NICE": {"untyped int", constant.MakeInt64(int64(q.SYS_NICE))}, + "SYS_OLDFSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDFSTAT))}, + "SYS_OLDLSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDLSTAT))}, + "SYS_OLDOLDUNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDOLDUNAME))}, + "SYS_OLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDSTAT))}, + "SYS_OLDUNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDUNAME))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PCICONFIG_IOBASE": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_IOBASE))}, + "SYS_PCICONFIG_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_READ))}, + "SYS_PCICONFIG_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_WRITE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PROF": {"untyped int", constant.MakeInt64(int64(q.SYS_PROF))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_READDIR))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECV": {"untyped int", constant.MakeInt64(int64(q.SYS_RECV))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RTAS": {"untyped int", constant.MakeInt64(int64(q.SYS_RTAS))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SEND))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SGETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SGETMASK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNAL))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETCALL))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_SPU_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPU_CREATE))}, + "SYS_SPU_RUN": {"untyped int", constant.MakeInt64(int64(q.SYS_SPU_RUN))}, + "SYS_SSETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSETMASK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STIME": {"untyped int", constant.MakeInt64(int64(q.SYS_STIME))}, + "SYS_STTY": {"untyped int", constant.MakeInt64(int64(q.SYS_STTY))}, + "SYS_SUBPAGE_PROT": {"untyped int", constant.MakeInt64(int64(q.SYS_SUBPAGE_PROT))}, + "SYS_SWAPCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCONTEXT))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE2": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE2))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_SYS_DEBUG_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYS_DEBUG_SETCONTEXT))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TUXCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_TUXCALL))}, + "SYS_UGETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_UGETRLIMIT))}, + "SYS_ULIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_ULIMIT))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VM86": {"untyped int", constant.MakeInt64(int64(q.SYS_VM86))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITPID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITPID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LLSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS__LLSEEK))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETC": {"untyped int", constant.MakeInt64(int64(q.TIOCGETC))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGETP": {"untyped int", constant.MakeInt64(int64(q.TIOCGETP))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCGLTC))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_LOOP": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LOOP))}, + "TIOCM_OUT1": {"untyped int", constant.MakeInt64(int64(q.TIOCM_OUT1))}, + "TIOCM_OUT2": {"untyped int", constant.MakeInt64(int64(q.TIOCM_OUT2))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETC": {"untyped int", constant.MakeInt64(int64(q.TIOCSETC))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETN": {"untyped int", constant.MakeInt64(int64(q.TIOCSETN))}, + "TIOCSETP": {"untyped int", constant.MakeInt64(int64(q.TIOCSETP))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCSLTC))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_linux_ppc64le.go b/pkg/syscall/go122_export_linux_ppc64le.go new file mode 100755 index 00000000..2285895d --- /dev/null +++ b/pkg/syscall/go122_export_linux_ppc64le.go @@ -0,0 +1,2534 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VSOCK": {"untyped int", constant.MakeInt64(int64(q.AF_VSOCK))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PRP))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_802_1Q_VLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_802_1Q_VLAN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BONDING": {"untyped int", constant.MakeInt64(int64(q.IFF_BONDING))}, + "IFF_BRIDGE_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_BRIDGE_PORT))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DISABLE_NETPOLL": {"untyped int", constant.MakeInt64(int64(q.IFF_DISABLE_NETPOLL))}, + "IFF_DONT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_DONT_BRIDGE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_EBRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_EBRIDGE))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_ISATAP": {"untyped int", constant.MakeInt64(int64(q.IFF_ISATAP))}, + "IFF_LIVE_ADDR_CHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_LIVE_ADDR_CHANGE))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MACVLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN))}, + "IFF_MACVLAN_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN_PORT))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MASTER_8023AD": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_8023AD))}, + "IFF_MASTER_ALB": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ALB))}, + "IFF_MASTER_ARPMON": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ARPMON))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_OVS_DATAPATH": {"untyped int", constant.MakeInt64(int64(q.IFF_OVS_DATAPATH))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_SLAVE_INACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_INACTIVE))}, + "IFF_SLAVE_NEEDARP": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_NEEDARP))}, + "IFF_SUPP_NOFCS": {"untyped int", constant.MakeInt64(int64(q.IFF_SUPP_NOFCS))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TEAM_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_TEAM_PORT))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_TX_SKB_SHARING": {"untyped int", constant.MakeInt64(int64(q.IFF_TX_SKB_SHARING))}, + "IFF_UNICAST_FLT": {"untyped int", constant.MakeInt64(int64(q.IFF_UNICAST_FLT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFF_WAN_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFF_WAN_HDLC))}, + "IFF_XMIT_DST_RELEASE": {"untyped int", constant.MakeInt64(int64(q.IFF_XMIT_DST_RELEASE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_BEETPH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BEETPH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_HUGE_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_MASK))}, + "MAP_HUGE_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_SHIFT))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TMPFILE": {"untyped int", constant.MakeInt64(int64(q.O_TMPFILE))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_SAO": {"untyped int", constant.MakeInt64(int64(q.PROT_SAO))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETEVRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVRREGS))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGS64": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS64))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_GETVRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETVRREGS))}, + "PTRACE_GETVSRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETVSRREGS))}, + "PTRACE_GET_DEBUGREG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_DEBUGREG))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETEVRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETEVRREGS))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGS64": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS64))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SETVRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETVRREGS))}, + "PTRACE_SETVSRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETVSRREGS))}, + "PTRACE_SET_DEBUGREG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_DEBUGREG))}, + "PTRACE_SINGLEBLOCK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLEBLOCK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_CCR": {"untyped int", constant.MakeInt64(int64(q.PT_CCR))}, + "PT_CTR": {"untyped int", constant.MakeInt64(int64(q.PT_CTR))}, + "PT_DAR": {"untyped int", constant.MakeInt64(int64(q.PT_DAR))}, + "PT_DSCR": {"untyped int", constant.MakeInt64(int64(q.PT_DSCR))}, + "PT_DSISR": {"untyped int", constant.MakeInt64(int64(q.PT_DSISR))}, + "PT_FPR0": {"untyped int", constant.MakeInt64(int64(q.PT_FPR0))}, + "PT_FPSCR": {"untyped int", constant.MakeInt64(int64(q.PT_FPSCR))}, + "PT_LNK": {"untyped int", constant.MakeInt64(int64(q.PT_LNK))}, + "PT_MSR": {"untyped int", constant.MakeInt64(int64(q.PT_MSR))}, + "PT_NIP": {"untyped int", constant.MakeInt64(int64(q.PT_NIP))}, + "PT_ORIG_R3": {"untyped int", constant.MakeInt64(int64(q.PT_ORIG_R3))}, + "PT_R0": {"untyped int", constant.MakeInt64(int64(q.PT_R0))}, + "PT_R1": {"untyped int", constant.MakeInt64(int64(q.PT_R1))}, + "PT_R10": {"untyped int", constant.MakeInt64(int64(q.PT_R10))}, + "PT_R11": {"untyped int", constant.MakeInt64(int64(q.PT_R11))}, + "PT_R12": {"untyped int", constant.MakeInt64(int64(q.PT_R12))}, + "PT_R13": {"untyped int", constant.MakeInt64(int64(q.PT_R13))}, + "PT_R14": {"untyped int", constant.MakeInt64(int64(q.PT_R14))}, + "PT_R15": {"untyped int", constant.MakeInt64(int64(q.PT_R15))}, + "PT_R16": {"untyped int", constant.MakeInt64(int64(q.PT_R16))}, + "PT_R17": {"untyped int", constant.MakeInt64(int64(q.PT_R17))}, + "PT_R18": {"untyped int", constant.MakeInt64(int64(q.PT_R18))}, + "PT_R19": {"untyped int", constant.MakeInt64(int64(q.PT_R19))}, + "PT_R2": {"untyped int", constant.MakeInt64(int64(q.PT_R2))}, + "PT_R20": {"untyped int", constant.MakeInt64(int64(q.PT_R20))}, + "PT_R21": {"untyped int", constant.MakeInt64(int64(q.PT_R21))}, + "PT_R22": {"untyped int", constant.MakeInt64(int64(q.PT_R22))}, + "PT_R23": {"untyped int", constant.MakeInt64(int64(q.PT_R23))}, + "PT_R24": {"untyped int", constant.MakeInt64(int64(q.PT_R24))}, + "PT_R25": {"untyped int", constant.MakeInt64(int64(q.PT_R25))}, + "PT_R26": {"untyped int", constant.MakeInt64(int64(q.PT_R26))}, + "PT_R27": {"untyped int", constant.MakeInt64(int64(q.PT_R27))}, + "PT_R28": {"untyped int", constant.MakeInt64(int64(q.PT_R28))}, + "PT_R29": {"untyped int", constant.MakeInt64(int64(q.PT_R29))}, + "PT_R3": {"untyped int", constant.MakeInt64(int64(q.PT_R3))}, + "PT_R30": {"untyped int", constant.MakeInt64(int64(q.PT_R30))}, + "PT_R31": {"untyped int", constant.MakeInt64(int64(q.PT_R31))}, + "PT_R4": {"untyped int", constant.MakeInt64(int64(q.PT_R4))}, + "PT_R5": {"untyped int", constant.MakeInt64(int64(q.PT_R5))}, + "PT_R6": {"untyped int", constant.MakeInt64(int64(q.PT_R6))}, + "PT_R7": {"untyped int", constant.MakeInt64(int64(q.PT_R7))}, + "PT_R8": {"untyped int", constant.MakeInt64(int64(q.PT_R8))}, + "PT_R9": {"untyped int", constant.MakeInt64(int64(q.PT_R9))}, + "PT_REGS_COUNT": {"untyped int", constant.MakeInt64(int64(q.PT_REGS_COUNT))}, + "PT_RESULT": {"untyped int", constant.MakeInt64(int64(q.PT_RESULT))}, + "PT_SOFTE": {"untyped int", constant.MakeInt64(int64(q.PT_SOFTE))}, + "PT_TRAP": {"untyped int", constant.MakeInt64(int64(q.PT_TRAP))}, + "PT_VR0": {"untyped int", constant.MakeInt64(int64(q.PT_VR0))}, + "PT_VRSAVE": {"untyped int", constant.MakeInt64(int64(q.PT_VRSAVE))}, + "PT_VSCR": {"untyped int", constant.MakeInt64(int64(q.PT_VSCR))}, + "PT_VSR0": {"untyped int", constant.MakeInt64(int64(q.PT_VSR0))}, + "PT_VSR31": {"untyped int", constant.MakeInt64(int64(q.PT_VSR31))}, + "PT_XER": {"untyped int", constant.MakeInt64(int64(q.PT_XER))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_MAX_PACING_RATE": {"untyped int", constant.MakeInt64(int64(q.SO_MAX_PACING_RATE))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_BDFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_BDFLUSH))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FINIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_FINIT_MODULE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_FTIME))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_GTTY": {"untyped int", constant.MakeInt64(int64(q.SYS_GTTY))}, + "SYS_IDLE": {"untyped int", constant.MakeInt64(int64(q.SYS_IDLE))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPERM": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPERM))}, + "SYS_IOPL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IPC": {"untyped int", constant.MakeInt64(int64(q.SYS_IPC))}, + "SYS_KCMP": {"untyped int", constant.MakeInt64(int64(q.SYS_KCMP))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_LOCK))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODIFY_LDT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODIFY_LDT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MPX": {"untyped int", constant.MakeInt64(int64(q.SYS_MPX))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MULTIPLEXER": {"untyped int", constant.MakeInt64(int64(q.SYS_MULTIPLEXER))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NEWFSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NEWFSTATAT))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_NICE": {"untyped int", constant.MakeInt64(int64(q.SYS_NICE))}, + "SYS_OLDFSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDFSTAT))}, + "SYS_OLDLSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDLSTAT))}, + "SYS_OLDOLDUNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDOLDUNAME))}, + "SYS_OLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDSTAT))}, + "SYS_OLDUNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDUNAME))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PCICONFIG_IOBASE": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_IOBASE))}, + "SYS_PCICONFIG_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_READ))}, + "SYS_PCICONFIG_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_WRITE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PROF": {"untyped int", constant.MakeInt64(int64(q.SYS_PROF))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_READDIR))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECV": {"untyped int", constant.MakeInt64(int64(q.SYS_RECV))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RTAS": {"untyped int", constant.MakeInt64(int64(q.SYS_RTAS))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SEND))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SGETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SGETMASK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNAL))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETCALL))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_SPU_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPU_CREATE))}, + "SYS_SPU_RUN": {"untyped int", constant.MakeInt64(int64(q.SYS_SPU_RUN))}, + "SYS_SSETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSETMASK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STIME": {"untyped int", constant.MakeInt64(int64(q.SYS_STIME))}, + "SYS_STTY": {"untyped int", constant.MakeInt64(int64(q.SYS_STTY))}, + "SYS_SUBPAGE_PROT": {"untyped int", constant.MakeInt64(int64(q.SYS_SUBPAGE_PROT))}, + "SYS_SWAPCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCONTEXT))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE2": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE2))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_SYS_DEBUG_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYS_DEBUG_SETCONTEXT))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TUXCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_TUXCALL))}, + "SYS_UGETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_UGETRLIMIT))}, + "SYS_ULIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_ULIMIT))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VM86": {"untyped int", constant.MakeInt64(int64(q.SYS_VM86))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITPID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITPID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LLSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS__LLSEEK))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_COOKIE_IN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_IN_ALWAYS))}, + "TCP_COOKIE_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MAX))}, + "TCP_COOKIE_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MIN))}, + "TCP_COOKIE_OUT_NEVER": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_OUT_NEVER))}, + "TCP_COOKIE_PAIR_SIZE": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_PAIR_SIZE))}, + "TCP_COOKIE_TRANSACTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_TRANSACTIONS))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_MSS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DEFAULT))}, + "TCP_MSS_DESIRED": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DESIRED))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUEUE_SEQ": {"untyped int", constant.MakeInt64(int64(q.TCP_QUEUE_SEQ))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_REPAIR": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR))}, + "TCP_REPAIR_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OPTIONS))}, + "TCP_REPAIR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_QUEUE))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_S_DATA_IN": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_IN))}, + "TCP_S_DATA_OUT": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_OUT))}, + "TCP_THIN_DUPACK": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_DUPACK))}, + "TCP_THIN_LINEAR_TIMEOUTS": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_LINEAR_TIMEOUTS))}, + "TCP_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_TIMESTAMP))}, + "TCP_USER_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_USER_TIMEOUT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETC": {"untyped int", constant.MakeInt64(int64(q.TIOCGETC))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGETP": {"untyped int", constant.MakeInt64(int64(q.TIOCGETP))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCGLTC))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_LOOP": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LOOP))}, + "TIOCM_OUT1": {"untyped int", constant.MakeInt64(int64(q.TIOCM_OUT1))}, + "TIOCM_OUT2": {"untyped int", constant.MakeInt64(int64(q.TIOCM_OUT2))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETC": {"untyped int", constant.MakeInt64(int64(q.TIOCSETC))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETN": {"untyped int", constant.MakeInt64(int64(q.TIOCSETN))}, + "TIOCSETP": {"untyped int", constant.MakeInt64(int64(q.TIOCSETP))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCSLTC))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_linux_riscv64.go b/pkg/syscall/go122_export_linux_riscv64.go new file mode 100755 index 00000000..55614329 --- /dev/null +++ b/pkg/syscall/go122_export_linux_riscv64.go @@ -0,0 +1,2430 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatat": reflect.ValueOf(q.Fstatat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IB": {"untyped int", constant.MakeInt64(int64(q.AF_IB))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KCM": {"untyped int", constant.MakeInt64(int64(q.AF_KCM))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VSOCK": {"untyped int", constant.MakeInt64(int64(q.AF_VSOCK))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_6LOWPAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_6LOWPAN))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LL_OFF": {"untyped int", constant.MakeInt64(int64(q.BPF_LL_OFF))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_NET_OFF": {"untyped int", constant.MakeInt64(int64(q.BPF_NET_OFF))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLEXCLUSIVE": {"untyped int", constant.MakeInt64(int64(q.EPOLLEXCLUSIVE))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_80221": {"untyped int", constant.MakeInt64(int64(q.ETH_P_80221))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOPBACK))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PRP))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "ETH_P_XDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_XDSA))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OFD_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_OFD_GETLK))}, + "F_OFD_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_OFD_SETLK))}, + "F_OFD_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_OFD_SETLKW))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_MANAGETEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IFA_F_MANAGETEMPADDR))}, + "IFA_F_MCAUTOJOIN": {"untyped int", constant.MakeInt64(int64(q.IFA_F_MCAUTOJOIN))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_NOPREFIXROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NOPREFIXROUTE))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_STABLE_PRIVACY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_STABLE_PRIVACY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_BEETPH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BEETPH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IPV6_HDRINCL))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_INTERFACE))}, + "IPV6_PMTUDISC_OMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_OMIT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BIND_ADDRESS_NO_PORT": {"untyped int", constant.MakeInt64(int64(q.IP_BIND_ADDRESS_NO_PORT))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IP_CHECKSUM))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_NODEFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_NODEFRAG))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_INTERFACE))}, + "IP_PMTUDISC_OMIT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_OMIT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_HUGE_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_MASK))}, + "MAP_HUGE_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_SHIFT))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MCL_ONFAULT": {"untyped int", constant.MakeInt64(int64(q.MCL_ONFAULT))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_BATCH": {"untyped int", constant.MakeInt64(int64(q.MSG_BATCH))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_LAZYTIME": {"untyped int", constant.MakeInt64(int64(q.MS_LAZYTIME))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TMPFILE": {"untyped int", constant.MakeInt64(int64(q.O_TMPFILE))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_QM": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_QM))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_KERNEL": {"untyped int", constant.MakeInt64(int64(q.PACKET_KERNEL))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_QDISC_BYPASS": {"untyped int", constant.MakeInt64(int64(q.PACKET_QDISC_BYPASS))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_USER": {"untyped int", constant.MakeInt64(int64(q.PACKET_USER))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_FP_MODE_FR": {"untyped int", constant.MakeInt64(int64(q.PR_FP_MODE_FR))}, + "PR_FP_MODE_FRE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_MODE_FRE))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_FP_MODE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FP_MODE))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_THP_DISABLE))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_MPX_DISABLE_MANAGEMENT": {"untyped int", constant.MakeInt64(int64(q.PR_MPX_DISABLE_MANAGEMENT))}, + "PR_MPX_ENABLE_MANAGEMENT": {"untyped int", constant.MakeInt64(int64(q.PR_MPX_ENABLE_MANAGEMENT))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_FP_MODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FP_MODE))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_MAP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_MAP))}, + "PR_SET_MM_MAP_SIZE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_MAP_SIZE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_THP_DISABLE))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CC_ALGO": {"untyped int", constant.MakeInt64(int64(q.RTAX_CC_ALGO))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELNSID": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNSID))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETNSID": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNSID))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWNSID": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNSID))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_OFFLOAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BABEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BABEL))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ALG": {"untyped int", constant.MakeInt64(int64(q.SOL_ALG))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.SOL_BLUETOOTH))}, + "SOL_CAIF": {"untyped int", constant.MakeInt64(int64(q.SOL_CAIF))}, + "SOL_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOL_DCCP))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_IUCV": {"untyped int", constant.MakeInt64(int64(q.SOL_IUCV))}, + "SOL_KCM": {"untyped int", constant.MakeInt64(int64(q.SOL_KCM))}, + "SOL_LLC": {"untyped int", constant.MakeInt64(int64(q.SOL_LLC))}, + "SOL_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.SOL_NETBEUI))}, + "SOL_NETLINK": {"untyped int", constant.MakeInt64(int64(q.SOL_NETLINK))}, + "SOL_NFC": {"untyped int", constant.MakeInt64(int64(q.SOL_NFC))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_PNPIPE": {"untyped int", constant.MakeInt64(int64(q.SOL_PNPIPE))}, + "SOL_PPPOL2TP": {"untyped int", constant.MakeInt64(int64(q.SOL_PPPOL2TP))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_RDS": {"untyped int", constant.MakeInt64(int64(q.SOL_RDS))}, + "SOL_RXRPC": {"untyped int", constant.MakeInt64(int64(q.SOL_RXRPC))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_TIPC": {"untyped int", constant.MakeInt64(int64(q.SOL_TIPC))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_BPF": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_BPF))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BPF_EXTENSIONS": {"untyped int", constant.MakeInt64(int64(q.SO_BPF_EXTENSIONS))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_BPF": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_BPF))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_INCOMING_CPU": {"untyped int", constant.MakeInt64(int64(q.SO_INCOMING_CPU))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_MAX_PACING_RATE": {"untyped int", constant.MakeInt64(int64(q.SO_MAX_PACING_RATE))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_ARCH_SPECIFIC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_ARCH_SPECIFIC_SYSCALL))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BPF": {"untyped int", constant.MakeInt64(int64(q.SYS_BPF))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXECVEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVEAT))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FINIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_FINIT_MODULE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRANDOM": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRANDOM))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_KCMP": {"untyped int", constant.MakeInt64(int64(q.SYS_KCMP))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MEMFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_MEMFD_CREATE))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAMEAT2": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT2))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETATTR))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETATTR))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.SYS_SECCOMP))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CC_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_CC_INFO))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_COOKIE_IN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_IN_ALWAYS))}, + "TCP_COOKIE_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MAX))}, + "TCP_COOKIE_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MIN))}, + "TCP_COOKIE_OUT_NEVER": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_OUT_NEVER))}, + "TCP_COOKIE_PAIR_SIZE": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_PAIR_SIZE))}, + "TCP_COOKIE_TRANSACTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_TRANSACTIONS))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_MSS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DEFAULT))}, + "TCP_MSS_DESIRED": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DESIRED))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOTSENT_LOWAT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOTSENT_LOWAT))}, + "TCP_QUEUE_SEQ": {"untyped int", constant.MakeInt64(int64(q.TCP_QUEUE_SEQ))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_REPAIR": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR))}, + "TCP_REPAIR_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OPTIONS))}, + "TCP_REPAIR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_QUEUE))}, + "TCP_SAVED_SYN": {"untyped int", constant.MakeInt64(int64(q.TCP_SAVED_SYN))}, + "TCP_SAVE_SYN": {"untyped int", constant.MakeInt64(int64(q.TCP_SAVE_SYN))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_S_DATA_IN": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_IN))}, + "TCP_S_DATA_OUT": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_OUT))}, + "TCP_THIN_DUPACK": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_DUPACK))}, + "TCP_THIN_LINEAR_TIMEOUTS": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_LINEAR_TIMEOUTS))}, + "TCP_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_TIMESTAMP))}, + "TCP_USER_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_USER_TIMEOUT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNGETVNETLE": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETLE))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "TUNSETVNETLE": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETLE))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_linux_s390x.go b/pkg/syscall/go122_export_linux_s390x.go new file mode 100755 index 00000000..b060ab2a --- /dev/null +++ b/pkg/syscall/go122_export_linux_s390x.go @@ -0,0 +1,2548 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceFpregs": reflect.TypeOf((*q.PtraceFpregs)(nil)).Elem(), + "PtracePer": reflect.TypeOf((*q.PtracePer)(nil)).Elem(), + "PtracePsw": reflect.TypeOf((*q.PtracePsw)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VSOCK": {"untyped int", constant.MakeInt64(int64(q.AF_VSOCK))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_6LOWPAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_6LOWPAN))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LL_OFF": {"untyped int", constant.MakeInt64(int64(q.BPF_LL_OFF))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_NET_OFF": {"untyped int", constant.MakeInt64(int64(q.BPF_NET_OFF))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_80221": {"untyped int", constant.MakeInt64(int64(q.ETH_P_80221))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOPBACK))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PRP))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_TSN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TSN))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "ETH_P_XDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_XDSA))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OFD_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_OFD_GETLK))}, + "F_OFD_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_OFD_SETLK))}, + "F_OFD_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_OFD_SETLKW))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_MANAGETEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IFA_F_MANAGETEMPADDR))}, + "IFA_F_MCAUTOJOIN": {"untyped int", constant.MakeInt64(int64(q.IFA_F_MCAUTOJOIN))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_NOPREFIXROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NOPREFIXROUTE))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_STABLE_PRIVACY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_STABLE_PRIVACY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_BEETPH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BEETPH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_INTERFACE))}, + "IPV6_PMTUDISC_OMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_OMIT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_NODEFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_NODEFRAG))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_INTERFACE))}, + "IP_PMTUDISC_OMIT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_OMIT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_HUGE_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_MASK))}, + "MAP_HUGE_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_SHIFT))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CAP_ACK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CAP_ACK))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_LISTEN_ALL_NSID": {"untyped int", constant.MakeInt64(int64(q.NETLINK_LISTEN_ALL_NSID))}, + "NETLINK_LIST_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_LIST_MEMBERSHIPS))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_FILTERED": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_FILTERED))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TMPFILE": {"untyped int", constant.MakeInt64(int64(q.O_TMPFILE))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CBPF": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CBPF))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_DATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_DATA))}, + "PACKET_FANOUT_EBPF": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_EBPF))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_QM": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_QM))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_KERNEL": {"untyped int", constant.MakeInt64(int64(q.PACKET_KERNEL))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_QDISC_BYPASS": {"untyped int", constant.MakeInt64(int64(q.PACKET_QDISC_BYPASS))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_ROLLOVER_STATS": {"untyped int", constant.MakeInt64(int64(q.PACKET_ROLLOVER_STATS))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_USER": {"untyped int", constant.MakeInt64(int64(q.PACKET_USER))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_CAP_AMBIENT": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT))}, + "PR_CAP_AMBIENT_CLEAR_ALL": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT_CLEAR_ALL))}, + "PR_CAP_AMBIENT_IS_SET": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT_IS_SET))}, + "PR_CAP_AMBIENT_LOWER": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT_LOWER))}, + "PR_CAP_AMBIENT_RAISE": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT_RAISE))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_FP_MODE_FR": {"untyped int", constant.MakeInt64(int64(q.PR_FP_MODE_FR))}, + "PR_FP_MODE_FRE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_MODE_FRE))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_FP_MODE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FP_MODE))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_THP_DISABLE))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_MPX_DISABLE_MANAGEMENT": {"untyped int", constant.MakeInt64(int64(q.PR_MPX_DISABLE_MANAGEMENT))}, + "PR_MPX_ENABLE_MANAGEMENT": {"untyped int", constant.MakeInt64(int64(q.PR_MPX_ENABLE_MANAGEMENT))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_FP_MODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FP_MODE))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_MAP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_MAP))}, + "PR_SET_MM_MAP_SIZE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_MAP_SIZE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_THP_DISABLE))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_DISABLE_TE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DISABLE_TE))}, + "PTRACE_ENABLE_TE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ENABLE_TE))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_GET_LAST_BREAK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_LAST_BREAK))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_SUSPEND_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_SUSPEND_SECCOMP))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKDATA_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA_AREA))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKTEXT_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT_AREA))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_PEEKUSR_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR_AREA))}, + "PTRACE_PEEK_SYSTEM_CALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEK_SYSTEM_CALL))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKEDATA_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA_AREA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKETEXT_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT_AREA))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_POKEUSR_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR_AREA))}, + "PTRACE_POKE_SYSTEM_CALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKE_SYSTEM_CALL))}, + "PTRACE_PROT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PROT))}, + "PTRACE_SECCOMP_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SECCOMP_GET_FILTER))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SINGLEBLOCK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLEBLOCK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TE_ABORT_RAND": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TE_ABORT_RAND))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_ACR0": {"untyped int", constant.MakeInt64(int64(q.PT_ACR0))}, + "PT_ACR1": {"untyped int", constant.MakeInt64(int64(q.PT_ACR1))}, + "PT_ACR10": {"untyped int", constant.MakeInt64(int64(q.PT_ACR10))}, + "PT_ACR11": {"untyped int", constant.MakeInt64(int64(q.PT_ACR11))}, + "PT_ACR12": {"untyped int", constant.MakeInt64(int64(q.PT_ACR12))}, + "PT_ACR13": {"untyped int", constant.MakeInt64(int64(q.PT_ACR13))}, + "PT_ACR14": {"untyped int", constant.MakeInt64(int64(q.PT_ACR14))}, + "PT_ACR15": {"untyped int", constant.MakeInt64(int64(q.PT_ACR15))}, + "PT_ACR2": {"untyped int", constant.MakeInt64(int64(q.PT_ACR2))}, + "PT_ACR3": {"untyped int", constant.MakeInt64(int64(q.PT_ACR3))}, + "PT_ACR4": {"untyped int", constant.MakeInt64(int64(q.PT_ACR4))}, + "PT_ACR5": {"untyped int", constant.MakeInt64(int64(q.PT_ACR5))}, + "PT_ACR6": {"untyped int", constant.MakeInt64(int64(q.PT_ACR6))}, + "PT_ACR7": {"untyped int", constant.MakeInt64(int64(q.PT_ACR7))}, + "PT_ACR8": {"untyped int", constant.MakeInt64(int64(q.PT_ACR8))}, + "PT_ACR9": {"untyped int", constant.MakeInt64(int64(q.PT_ACR9))}, + "PT_CR_10": {"untyped int", constant.MakeInt64(int64(q.PT_CR_10))}, + "PT_CR_11": {"untyped int", constant.MakeInt64(int64(q.PT_CR_11))}, + "PT_CR_9": {"untyped int", constant.MakeInt64(int64(q.PT_CR_9))}, + "PT_ENDREGS": {"untyped int", constant.MakeInt64(int64(q.PT_ENDREGS))}, + "PT_FPC": {"untyped int", constant.MakeInt64(int64(q.PT_FPC))}, + "PT_FPR0": {"untyped int", constant.MakeInt64(int64(q.PT_FPR0))}, + "PT_FPR1": {"untyped int", constant.MakeInt64(int64(q.PT_FPR1))}, + "PT_FPR10": {"untyped int", constant.MakeInt64(int64(q.PT_FPR10))}, + "PT_FPR11": {"untyped int", constant.MakeInt64(int64(q.PT_FPR11))}, + "PT_FPR12": {"untyped int", constant.MakeInt64(int64(q.PT_FPR12))}, + "PT_FPR13": {"untyped int", constant.MakeInt64(int64(q.PT_FPR13))}, + "PT_FPR14": {"untyped int", constant.MakeInt64(int64(q.PT_FPR14))}, + "PT_FPR15": {"untyped int", constant.MakeInt64(int64(q.PT_FPR15))}, + "PT_FPR2": {"untyped int", constant.MakeInt64(int64(q.PT_FPR2))}, + "PT_FPR3": {"untyped int", constant.MakeInt64(int64(q.PT_FPR3))}, + "PT_FPR4": {"untyped int", constant.MakeInt64(int64(q.PT_FPR4))}, + "PT_FPR5": {"untyped int", constant.MakeInt64(int64(q.PT_FPR5))}, + "PT_FPR6": {"untyped int", constant.MakeInt64(int64(q.PT_FPR6))}, + "PT_FPR7": {"untyped int", constant.MakeInt64(int64(q.PT_FPR7))}, + "PT_FPR8": {"untyped int", constant.MakeInt64(int64(q.PT_FPR8))}, + "PT_FPR9": {"untyped int", constant.MakeInt64(int64(q.PT_FPR9))}, + "PT_GPR0": {"untyped int", constant.MakeInt64(int64(q.PT_GPR0))}, + "PT_GPR1": {"untyped int", constant.MakeInt64(int64(q.PT_GPR1))}, + "PT_GPR10": {"untyped int", constant.MakeInt64(int64(q.PT_GPR10))}, + "PT_GPR11": {"untyped int", constant.MakeInt64(int64(q.PT_GPR11))}, + "PT_GPR12": {"untyped int", constant.MakeInt64(int64(q.PT_GPR12))}, + "PT_GPR13": {"untyped int", constant.MakeInt64(int64(q.PT_GPR13))}, + "PT_GPR14": {"untyped int", constant.MakeInt64(int64(q.PT_GPR14))}, + "PT_GPR15": {"untyped int", constant.MakeInt64(int64(q.PT_GPR15))}, + "PT_GPR2": {"untyped int", constant.MakeInt64(int64(q.PT_GPR2))}, + "PT_GPR3": {"untyped int", constant.MakeInt64(int64(q.PT_GPR3))}, + "PT_GPR4": {"untyped int", constant.MakeInt64(int64(q.PT_GPR4))}, + "PT_GPR5": {"untyped int", constant.MakeInt64(int64(q.PT_GPR5))}, + "PT_GPR6": {"untyped int", constant.MakeInt64(int64(q.PT_GPR6))}, + "PT_GPR7": {"untyped int", constant.MakeInt64(int64(q.PT_GPR7))}, + "PT_GPR8": {"untyped int", constant.MakeInt64(int64(q.PT_GPR8))}, + "PT_GPR9": {"untyped int", constant.MakeInt64(int64(q.PT_GPR9))}, + "PT_IEEE_IP": {"untyped int", constant.MakeInt64(int64(q.PT_IEEE_IP))}, + "PT_LASTOFF": {"untyped int", constant.MakeInt64(int64(q.PT_LASTOFF))}, + "PT_ORIGGPR2": {"untyped int", constant.MakeInt64(int64(q.PT_ORIGGPR2))}, + "PT_PSWADDR": {"untyped int", constant.MakeInt64(int64(q.PT_PSWADDR))}, + "PT_PSWMASK": {"untyped int", constant.MakeInt64(int64(q.PT_PSWMASK))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CC_ALGO": {"untyped int", constant.MakeInt64(int64(q.RTAX_CC_ALGO))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_MASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_MASK))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELNSID": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNSID))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_LOOKUP_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_LOOKUP_TABLE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETNSID": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNSID))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWNSID": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNSID))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_COMPARE_MASK": {"untyped int", constant.MakeInt64(int64(q.RTNH_COMPARE_MASK))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_LINKDOWN": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_LINKDOWN))}, + "RTNH_F_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_OFFLOAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BABEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BABEL))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_BPF": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_BPF))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BPF_EXTENSIONS": {"untyped int", constant.MakeInt64(int64(q.SO_BPF_EXTENSIONS))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_BPF": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_BPF))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_INCOMING_CPU": {"untyped int", constant.MakeInt64(int64(q.SO_INCOMING_CPU))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_MAX_PACING_RATE": {"untyped int", constant.MakeInt64(int64(q.SO_MAX_PACING_RATE))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_BDFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_BDFLUSH))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BPF": {"untyped int", constant.MakeInt64(int64(q.SYS_BPF))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXECVEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVEAT))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FINIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_FINIT_MODULE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRANDOM": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRANDOM))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_IDLE": {"untyped int", constant.MakeInt64(int64(q.SYS_IDLE))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IPC": {"untyped int", constant.MakeInt64(int64(q.SYS_IPC))}, + "SYS_KCMP": {"untyped int", constant.MakeInt64(int64(q.SYS_KCMP))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MEMBARRIER": {"untyped int", constant.MakeInt64(int64(q.SYS_MEMBARRIER))}, + "SYS_MEMFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_MEMFD_CREATE))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCK2": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK2))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NEWFSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NEWFSTATAT))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_NICE": {"untyped int", constant.MakeInt64(int64(q.SYS_NICE))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_READDIR))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_RENAMEAT2": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT2))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_S390_PCI_MMIO_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_S390_PCI_MMIO_READ))}, + "SYS_S390_PCI_MMIO_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_S390_PCI_MMIO_WRITE))}, + "SYS_S390_RUNTIME_INSTR": {"untyped int", constant.MakeInt64(int64(q.SYS_S390_RUNTIME_INSTR))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETATTR))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETATTR))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.SYS_SECCOMP))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNAL))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETCALL))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIMERFD": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USERFAULTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_USERFAULTFD))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_COOKIE_IN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_IN_ALWAYS))}, + "TCP_COOKIE_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MAX))}, + "TCP_COOKIE_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MIN))}, + "TCP_COOKIE_OUT_NEVER": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_OUT_NEVER))}, + "TCP_COOKIE_PAIR_SIZE": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_PAIR_SIZE))}, + "TCP_COOKIE_TRANSACTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_TRANSACTIONS))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_MSS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DEFAULT))}, + "TCP_MSS_DESIRED": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DESIRED))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUEUE_SEQ": {"untyped int", constant.MakeInt64(int64(q.TCP_QUEUE_SEQ))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_REPAIR": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR))}, + "TCP_REPAIR_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OPTIONS))}, + "TCP_REPAIR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_QUEUE))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_S_DATA_IN": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_IN))}, + "TCP_S_DATA_OUT": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_OUT))}, + "TCP_THIN_DUPACK": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_DUPACK))}, + "TCP_THIN_LINEAR_TIMEOUTS": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_LINEAR_TIMEOUTS))}, + "TCP_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_TIMESTAMP))}, + "TCP_USER_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_USER_TIMEOUT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETBE": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETBE))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNGETVNETLE": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETLE))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETBE": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETBE))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "TUNSETVNETLE": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETLE))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_netbsd_386.go b/pkg/syscall/go122_export_netbsd_386.go new file mode 100755 index 00000000..18527962 --- /dev/null +++ b/pkg/syscall/go122_export_netbsd_386.go @@ -0,0 +1,2135 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Mclpool": reflect.TypeOf((*q.Mclpool)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Sysctlnode": reflect.TypeOf((*q.Sysctlnode)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ARP": {"untyped int", constant.MakeInt64(int64(q.AF_ARP))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_OROUTE))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FRELAY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRELAY))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_STRIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_STRIP))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCFEEDBACK))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCGFEEDBACK))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGSTATSOLD": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATSOLD))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCSFEEDBACK))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTCPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSTCPF))}, + "BIOCSUDPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSUDPF))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALIGNMENT32": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT32))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DFLTBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_DFLTBUFSIZE))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CLONE_CSIGNAL))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_PID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PID))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "CTL_QUERY": {"untyped int", constant.MakeInt64(int64(q.CTL_QUERY))}, + "DIOCBSFLUSH": {"untyped int", constant.MakeInt64(int64(q.DIOCBSFLUSH))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_AOS": {"untyped int", constant.MakeInt64(int64(q.DLT_AOS))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CAN_SOCKETCAN": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN_SOCKETCAN))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DECT": {"untyped int", constant.MakeInt64(int64(q.DLT_DECT))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FC_2": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2))}, + "DLT_FC_2_WITH_FRAME_DELIMS": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2_WITH_FRAME_DELIMS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_GSMTAP_ABIS": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_ABIS))}, + "DLT_GSMTAP_UM": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_UM))}, + "DLT_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HDLC))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.DLT_HIPPI))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPV4": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV4))}, + "DLT_IPV6": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV6))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_EVDEV": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_EVDEV))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RAWAF_MASK": {"untyped int", constant.MakeInt64(int64(q.DLT_RAWAF_MASK))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_USB_LINUX_MMAPPED": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX_MMAPPED))}, + "DLT_WIHART": {"untyped int", constant.MakeInt64(int64(q.DLT_WIHART))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMUL_LINUX": {"untyped int", constant.MakeInt64(int64(q.EMUL_LINUX))}, + "EMUL_LINUX32": {"untyped int", constant.MakeInt64(int64(q.EMUL_LINUX32))}, + "EMUL_MAXID": {"untyped int", constant.MakeInt64(int64(q.EMUL_MAXID))}, + "EN_SW_CTL_INF": {"untyped int", constant.MakeInt64(int64(q.EN_SW_CTL_INF))}, + "EN_SW_CTL_PREC": {"untyped int", constant.MakeInt64(int64(q.EN_SW_CTL_PREC))}, + "EN_SW_CTL_ROUND": {"untyped int", constant.MakeInt64(int64(q.EN_SW_CTL_ROUND))}, + "EN_SW_DATACHAIN": {"untyped int", constant.MakeInt64(int64(q.EN_SW_DATACHAIN))}, + "EN_SW_DENORM": {"untyped int", constant.MakeInt64(int64(q.EN_SW_DENORM))}, + "EN_SW_INVOP": {"untyped int", constant.MakeInt64(int64(q.EN_SW_INVOP))}, + "EN_SW_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.EN_SW_OVERFLOW))}, + "EN_SW_PRECLOSS": {"untyped int", constant.MakeInt64(int64(q.EN_SW_PRECLOSS))}, + "EN_SW_UNDERFLOW": {"untyped int", constant.MakeInt64(int64(q.EN_SW_UNDERFLOW))}, + "EN_SW_ZERODIV": {"untyped int", constant.MakeInt64(int64(q.EN_SW_ZERODIV))}, + "ETHERCAP_JUMBO_MTU": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_JUMBO_MTU))}, + "ETHERCAP_VLAN_HWTAGGING": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_VLAN_HWTAGGING))}, + "ETHERCAP_VLAN_MTU": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_VLAN_MTU))}, + "ETHERMIN": {"untyped int", constant.MakeInt64(int64(q.ETHERMIN))}, + "ETHERMTU": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU))}, + "ETHERMTU_JUMBO": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU_JUMBO))}, + "ETHERTYPE_8023": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_8023))}, + "ETHERTYPE_AARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AARP))}, + "ETHERTYPE_ACCTON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ACCTON))}, + "ETHERTYPE_AEONIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AEONIC))}, + "ETHERTYPE_ALPHA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ALPHA))}, + "ETHERTYPE_AMBER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMBER))}, + "ETHERTYPE_AMOEBA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMOEBA))}, + "ETHERTYPE_APOLLO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLO))}, + "ETHERTYPE_APOLLODOMAIN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLODOMAIN))}, + "ETHERTYPE_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLETALK))}, + "ETHERTYPE_APPLITEK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLITEK))}, + "ETHERTYPE_ARGONAUT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARGONAUT))}, + "ETHERTYPE_ARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARP))}, + "ETHERTYPE_AT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AT))}, + "ETHERTYPE_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATALK))}, + "ETHERTYPE_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATOMIC))}, + "ETHERTYPE_ATT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATT))}, + "ETHERTYPE_ATTSTANFORD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATTSTANFORD))}, + "ETHERTYPE_AUTOPHON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AUTOPHON))}, + "ETHERTYPE_AXIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AXIS))}, + "ETHERTYPE_BCLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BCLOOP))}, + "ETHERTYPE_BOFL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BOFL))}, + "ETHERTYPE_CABLETRON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CABLETRON))}, + "ETHERTYPE_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CHAOS))}, + "ETHERTYPE_COMDESIGN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMDESIGN))}, + "ETHERTYPE_COMPUGRAPHIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMPUGRAPHIC))}, + "ETHERTYPE_COUNTERPOINT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COUNTERPOINT))}, + "ETHERTYPE_CRONUS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUS))}, + "ETHERTYPE_CRONUSVLN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUSVLN))}, + "ETHERTYPE_DCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DCA))}, + "ETHERTYPE_DDE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DDE))}, + "ETHERTYPE_DEBNI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DEBNI))}, + "ETHERTYPE_DECAM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECAM))}, + "ETHERTYPE_DECCUST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECCUST))}, + "ETHERTYPE_DECDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDIAG))}, + "ETHERTYPE_DECDNS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDNS))}, + "ETHERTYPE_DECDTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDTS))}, + "ETHERTYPE_DECEXPER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECEXPER))}, + "ETHERTYPE_DECLAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLAST))}, + "ETHERTYPE_DECLTM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLTM))}, + "ETHERTYPE_DECMUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECMUMPS))}, + "ETHERTYPE_DECNETBIOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECNETBIOS))}, + "ETHERTYPE_DELTACON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DELTACON))}, + "ETHERTYPE_DIDDLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DIDDLE))}, + "ETHERTYPE_DLOG1": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG1))}, + "ETHERTYPE_DLOG2": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG2))}, + "ETHERTYPE_DN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DN))}, + "ETHERTYPE_DOGFIGHT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DOGFIGHT))}, + "ETHERTYPE_DSMD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DSMD))}, + "ETHERTYPE_ECMA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ECMA))}, + "ETHERTYPE_ENCRYPT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ENCRYPT))}, + "ETHERTYPE_ES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ES))}, + "ETHERTYPE_EXCELAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXCELAN))}, + "ETHERTYPE_EXPERDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXPERDATA))}, + "ETHERTYPE_FLIP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLIP))}, + "ETHERTYPE_FLOWCONTROL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLOWCONTROL))}, + "ETHERTYPE_FRARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FRARP))}, + "ETHERTYPE_GENDYN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_GENDYN))}, + "ETHERTYPE_HAYES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HAYES))}, + "ETHERTYPE_HIPPI_FP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HIPPI_FP))}, + "ETHERTYPE_HITACHI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HITACHI))}, + "ETHERTYPE_HP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HP))}, + "ETHERTYPE_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUP))}, + "ETHERTYPE_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUPAT))}, + "ETHERTYPE_IMLBL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBL))}, + "ETHERTYPE_IMLBLDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBLDIAG))}, + "ETHERTYPE_IP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IP))}, + "ETHERTYPE_IPAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPAS))}, + "ETHERTYPE_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPV6))}, + "ETHERTYPE_IPX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPX))}, + "ETHERTYPE_IPXNEW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPXNEW))}, + "ETHERTYPE_KALPANA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_KALPANA))}, + "ETHERTYPE_LANBRIDGE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANBRIDGE))}, + "ETHERTYPE_LANPROBE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANPROBE))}, + "ETHERTYPE_LAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LAT))}, + "ETHERTYPE_LBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LBACK))}, + "ETHERTYPE_LITTLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LITTLE))}, + "ETHERTYPE_LOGICRAFT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOGICRAFT))}, + "ETHERTYPE_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOOPBACK))}, + "ETHERTYPE_MATRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MATRA))}, + "ETHERTYPE_MAX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MAX))}, + "ETHERTYPE_MERIT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MERIT))}, + "ETHERTYPE_MICP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MICP))}, + "ETHERTYPE_MOPDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPDL))}, + "ETHERTYPE_MOPRC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPRC))}, + "ETHERTYPE_MOTOROLA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOTOROLA))}, + "ETHERTYPE_MPLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS))}, + "ETHERTYPE_MPLS_MCAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS_MCAST))}, + "ETHERTYPE_MUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MUMPS))}, + "ETHERTYPE_NBPCC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCC))}, + "ETHERTYPE_NBPCLAIM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLAIM))}, + "ETHERTYPE_NBPCLREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLREQ))}, + "ETHERTYPE_NBPCLRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLRSP))}, + "ETHERTYPE_NBPCREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCREQ))}, + "ETHERTYPE_NBPCRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCRSP))}, + "ETHERTYPE_NBPDG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDG))}, + "ETHERTYPE_NBPDGB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDGB))}, + "ETHERTYPE_NBPDLTE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDLTE))}, + "ETHERTYPE_NBPRAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAR))}, + "ETHERTYPE_NBPRAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAS))}, + "ETHERTYPE_NBPRST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRST))}, + "ETHERTYPE_NBPSCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPSCD))}, + "ETHERTYPE_NBPVCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPVCD))}, + "ETHERTYPE_NBS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBS))}, + "ETHERTYPE_NCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NCD))}, + "ETHERTYPE_NESTAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NESTAR))}, + "ETHERTYPE_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NETBEUI))}, + "ETHERTYPE_NOVELL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NOVELL))}, + "ETHERTYPE_NS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NS))}, + "ETHERTYPE_NSAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSAT))}, + "ETHERTYPE_NSCOMPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSCOMPAT))}, + "ETHERTYPE_NTRAILER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NTRAILER))}, + "ETHERTYPE_OS9": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9))}, + "ETHERTYPE_OS9NET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9NET))}, + "ETHERTYPE_PACER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PACER))}, + "ETHERTYPE_PAE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PAE))}, + "ETHERTYPE_PCS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PCS))}, + "ETHERTYPE_PLANNING": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PLANNING))}, + "ETHERTYPE_PPP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPP))}, + "ETHERTYPE_PPPOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOE))}, + "ETHERTYPE_PPPOEDISC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOEDISC))}, + "ETHERTYPE_PRIMENTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PRIMENTS))}, + "ETHERTYPE_PUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUP))}, + "ETHERTYPE_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUPAT))}, + "ETHERTYPE_RACAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RACAL))}, + "ETHERTYPE_RATIONAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RATIONAL))}, + "ETHERTYPE_RAWFR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RAWFR))}, + "ETHERTYPE_RCL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RCL))}, + "ETHERTYPE_RDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RDP))}, + "ETHERTYPE_RETIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RETIX))}, + "ETHERTYPE_REVARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_REVARP))}, + "ETHERTYPE_SCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SCA))}, + "ETHERTYPE_SECTRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECTRA))}, + "ETHERTYPE_SECUREDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECUREDATA))}, + "ETHERTYPE_SGITW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SGITW))}, + "ETHERTYPE_SG_BOUNCE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_BOUNCE))}, + "ETHERTYPE_SG_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_DIAG))}, + "ETHERTYPE_SG_NETGAMES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_NETGAMES))}, + "ETHERTYPE_SG_RESV": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_RESV))}, + "ETHERTYPE_SIMNET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SIMNET))}, + "ETHERTYPE_SLOWPROTOCOLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SLOWPROTOCOLS))}, + "ETHERTYPE_SNA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNA))}, + "ETHERTYPE_SNMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNMP))}, + "ETHERTYPE_SONIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SONIX))}, + "ETHERTYPE_SPIDER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPIDER))}, + "ETHERTYPE_SPRITE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPRITE))}, + "ETHERTYPE_STP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_STP))}, + "ETHERTYPE_TALARIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARIS))}, + "ETHERTYPE_TALARISMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARISMC))}, + "ETHERTYPE_TCPCOMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPCOMP))}, + "ETHERTYPE_TCPSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPSM))}, + "ETHERTYPE_TEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TEC))}, + "ETHERTYPE_TIGAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TIGAN))}, + "ETHERTYPE_TRAIL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRAIL))}, + "ETHERTYPE_TRANSETHER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRANSETHER))}, + "ETHERTYPE_TYMSHARE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TYMSHARE))}, + "ETHERTYPE_UBBST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBBST))}, + "ETHERTYPE_UBDEBUG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDEBUG))}, + "ETHERTYPE_UBDIAGLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDIAGLOOP))}, + "ETHERTYPE_UBDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDL))}, + "ETHERTYPE_UBNIU": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNIU))}, + "ETHERTYPE_UBNMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNMC))}, + "ETHERTYPE_VALID": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VALID))}, + "ETHERTYPE_VARIAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VARIAN))}, + "ETHERTYPE_VAXELN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VAXELN))}, + "ETHERTYPE_VEECO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEECO))}, + "ETHERTYPE_VEXP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEXP))}, + "ETHERTYPE_VGLAB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VGLAB))}, + "ETHERTYPE_VINES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINES))}, + "ETHERTYPE_VINESECHO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESECHO))}, + "ETHERTYPE_VINESLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESLOOP))}, + "ETHERTYPE_VITAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VITAL))}, + "ETHERTYPE_VLAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLAN))}, + "ETHERTYPE_VLTLMAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLTLMAN))}, + "ETHERTYPE_VPROD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VPROD))}, + "ETHERTYPE_VURESERVED": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VURESERVED))}, + "ETHERTYPE_WATERLOO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WATERLOO))}, + "ETHERTYPE_WELLFLEET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WELLFLEET))}, + "ETHERTYPE_X25": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X25))}, + "ETHERTYPE_X75": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X75))}, + "ETHERTYPE_XNSSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XNSSM))}, + "ETHERTYPE_XTP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XTP))}, + "ETHER_ADDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ADDR_LEN))}, + "ETHER_CRC_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_LEN))}, + "ETHER_CRC_POLY_BE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_BE))}, + "ETHER_CRC_POLY_LE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_LE))}, + "ETHER_HDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_HDR_LEN))}, + "ETHER_MAX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN))}, + "ETHER_MAX_LEN_JUMBO": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN_JUMBO))}, + "ETHER_MIN_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MIN_LEN))}, + "ETHER_PPPOE_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_PPPOE_ENCAP_LEN))}, + "ETHER_TYPE_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_TYPE_LEN))}, + "ETHER_VLAN_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_VLAN_ENCAP_LEN))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_CLOSEM": {"untyped int", constant.MakeInt64(int64(q.F_CLOSEM))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FSCTL": {"untyped int", constant.MakeInt64(int64(q.F_FSCTL))}, + "F_FSDIRMASK": {"untyped int", constant.MakeInt64(int64(q.F_FSDIRMASK))}, + "F_FSIN": {"untyped int", constant.MakeInt64(int64(q.F_FSIN))}, + "F_FSINOUT": {"untyped int", constant.MakeInt64(int64(q.F_FSINOUT))}, + "F_FSOUT": {"untyped int", constant.MakeInt64(int64(q.F_FSOUT))}, + "F_FSPRIV": {"untyped int", constant.MakeInt64(int64(q.F_FSPRIV))}, + "F_FSVOID": {"untyped int", constant.MakeInt64(int64(q.F_FSVOID))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_GETNOSIGPIPE))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_MAXFD": {"untyped int", constant.MakeInt64(int64(q.F_MAXFD))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_PARAM_MASK": {"untyped int", constant.MakeInt64(int64(q.F_PARAM_MASK))}, + "F_PARAM_MAX": {"untyped int", constant.MakeInt64(int64(q.F_PARAM_MAX))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_SETNOSIGPIPE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFA_ROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_ROUTE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DOCSCABLEUPSTREAMCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAMCHANNEL))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ECONET": {"untyped int", constant.MakeInt64(int64(q.IFT_ECONET))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LINEGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_LINEGROUP))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_PON155": {"untyped int", constant.MakeInt64(int64(q.IFT_PON155))}, + "IFT_PON622": {"untyped int", constant.MakeInt64(int64(q.IFT_PON622))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPATM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPATM))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_Q2931": {"untyped int", constant.MakeInt64(int64(q.IFT_Q2931))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SIPSIG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPSIG))}, + "IFT_SIPTG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPTG))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_TELINK))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VIRTUALTG": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALTG))}, + "IFT_VOICEDID": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEDID))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEEMFGD": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEMFGD))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFGDEANA": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFGDEANA))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERCABLE": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERCABLE))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IPV6_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6_ICMP))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VRRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VRRP))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_EF": {"untyped int", constant.MakeInt64(int64(q.IP_EF))}, + "IP_ERRORMTU": {"untyped int", constant.MakeInt64(int64(q.IP_ERRORMTU))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINFRAGSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_MINFRAGSIZE))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ALIGNMENT_16MB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_16MB))}, + "MAP_ALIGNMENT_1TB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_1TB))}, + "MAP_ALIGNMENT_256TB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_256TB))}, + "MAP_ALIGNMENT_4GB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_4GB))}, + "MAP_ALIGNMENT_64KB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_64KB))}, + "MAP_ALIGNMENT_64PB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_64PB))}, + "MAP_ALIGNMENT_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_MASK))}, + "MAP_ALIGNMENT_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_SHIFT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_INHERIT_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_COPY))}, + "MAP_INHERIT_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DEFAULT))}, + "MAP_INHERIT_DONATE_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DONATE_COPY))}, + "MAP_INHERIT_NONE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_NONE))}, + "MAP_INHERIT_SHARE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_SHARE))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MAP_WIRED": {"untyped int", constant.MakeInt64(int64(q.MAP_WIRED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_BCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_BCAST))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONTROLMBUF": {"untyped int", constant.MakeInt64(int64(q.MSG_CONTROLMBUF))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_IOVUSRSPACE": {"untyped int", constant.MakeInt64(int64(q.MSG_IOVUSRSPACE))}, + "MSG_LENUSRSPACE": {"untyped int", constant.MakeInt64(int64(q.MSG_LENUSRSPACE))}, + "MSG_MCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_MCAST))}, + "MSG_NAMEMBUF": {"untyped int", constant.MakeInt64(int64(q.MSG_NAMEMBUF))}, + "MSG_NBIO": {"untyped int", constant.MakeInt64(int64(q.MSG_NBIO))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_USERFLAGS": {"untyped int", constant.MakeInt64(int64(q.MSG_USERFLAGS))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_OIFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_OIFLIST))}, + "NET_RT_OOIFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_OOIFLIST))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFIOGETBMAP": {"untyped int", constant.MakeInt64(int64(q.OFIOGETBMAP))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_ALT_IO": {"untyped int", constant.MakeInt64(int64(q.O_ALT_IO))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.O_NOSIGPIPE))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PRI_IOFLUSH": {"untyped int", constant.MakeInt64(int64(q.PRI_IOFLUSH))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_TAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_TAG))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_TAG": {"untyped int", constant.MakeInt64(int64(q.RTA_TAG))}, + "RTF_ANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTF_ANNOUNCE))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_SRC": {"untyped int", constant.MakeInt64(int64(q.RTF_SRC))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_CHGADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_CHGADDR))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LLINFO_UPD": {"untyped int", constant.MakeInt64(int64(q.RTM_LLINFO_UPD))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_OIFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_OIFINFO))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_OOIFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_OOIFINFO))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_SETGATE": {"untyped int", constant.MakeInt64(int64(q.RTM_SETGATE))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFSYNC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFADDRPREF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDRPREF))}, + "SIOCGIFALIAS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFALIAS))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDLT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDLT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLINKSTR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLINKSTR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGVH": {"untyped int", constant.MakeInt64(int64(q.SIOCGVH))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCINITIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCINITIFADDR))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFSYNC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFADDRPREF": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDRPREF))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLINKSTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLINKSTR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSVH": {"untyped int", constant.MakeInt64(int64(q.SIOCSVH))}, + "SIOCZIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCZIFDATA))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_FLAGS_MASK": {"untyped int", constant.MakeInt64(int64(q.SOCK_FLAGS_MASK))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SOCK_NOSIGPIPE))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NOHEADER": {"untyped int", constant.MakeInt64(int64(q.SO_NOHEADER))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_OVERFLOWED": {"untyped int", constant.MakeInt64(int64(q.SO_OVERFLOWED))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SYSCTL_VERSION": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERSION))}, + "SYSCTL_VERS_0": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_0))}, + "SYSCTL_VERS_1": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_1))}, + "SYSCTL_VERS_MASK": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_MASK))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FD))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_LINK))}, + "SYS_EXTATTR_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FD))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_LINK))}, + "SYS_EXTATTR_LIST_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FD))}, + "SYS_EXTATTR_LIST_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FILE))}, + "SYS_EXTATTR_LIST_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_LINK))}, + "SYS_EXTATTR_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FD))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTATTR_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_LINK))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHROOT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FEXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_FEXECVE))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FKTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_FKTRACE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATVFS1": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATVFS1))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FSYNC_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC_RANGE))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCONTEXT))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETVFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETVFSSTAT))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KQUEUE1": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE1))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MODCTL))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_NTP_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_GETTIME))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_PACCEPT))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PMC_CONTROL": {"untyped int", constant.MakeInt64(int64(q.SYS_PMC_CONTROL))}, + "SYS_PMC_GET_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_PMC_GET_INFO))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POLLTS": {"untyped int", constant.MakeInt64(int64(q.SYS_POLLTS))}, + "SYS_POSIX_FADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FADVISE))}, + "SYS_POSIX_SPAWN": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_SPAWN))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PSET_ASSIGN": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_ASSIGN))}, + "SYS_PSET_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_CREATE))}, + "SYS_PSET_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_DESTROY))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_RASCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_RASCTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMCONFIG": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCONFIG))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETCONTEXT))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGQUEUEINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATVFS1": {"untyped int", constant.MakeInt64(int64(q.SYS_STATVFS1))}, + "SYS_SWAPCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCTL))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_VADVISE))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LWP_CONTINUE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CONTINUE))}, + "SYS__LWP_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CREATE))}, + "SYS__LWP_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CTL))}, + "SYS__LWP_DETACH": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_DETACH))}, + "SYS__LWP_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_EXIT))}, + "SYS__LWP_GETNAME": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_GETNAME))}, + "SYS__LWP_GETPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_GETPRIVATE))}, + "SYS__LWP_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_KILL))}, + "SYS__LWP_PARK": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_PARK))}, + "SYS__LWP_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SELF))}, + "SYS__LWP_SETNAME": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SETNAME))}, + "SYS__LWP_SETPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SETPRIVATE))}, + "SYS__LWP_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SUSPEND))}, + "SYS__LWP_UNPARK": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_UNPARK))}, + "SYS__LWP_UNPARK_ALL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_UNPARK_ALL))}, + "SYS__LWP_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_WAIT))}, + "SYS__LWP_WAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_WAKEUP))}, + "SYS__PSET_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS__PSET_BIND))}, + "SYS__SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_GETAFFINITY))}, + "SYS__SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_GETPARAM))}, + "SYS__SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_SETAFFINITY))}, + "SYS__SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_SETPARAM))}, + "SYS___CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS___CLONE))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS___GETLOGIN))}, + "SYS___POSIX_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_CHOWN))}, + "SYS___POSIX_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_FCHOWN))}, + "SYS___POSIX_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_LCHOWN))}, + "SYS___POSIX_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_RENAME))}, + "SYS___QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS___QUOTACTL))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS___SETLOGIN))}, + "SYS___SIGACTION_SIGTRAMP": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGACTION_SIGTRAMP))}, + "SYS___SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGTIMEDWAIT))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_ARCH1": {"untyped int", constant.MakeInt64(int64(q.S_ARCH1))}, + "S_ARCH2": {"untyped int", constant.MakeInt64(int64(q.S_ARCH2))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFWHT": {"untyped int", constant.MakeInt64(int64(q.S_IFWHT))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISTXT": {"untyped int", constant.MakeInt64(int64(q.S_ISTXT))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "S_LOGIN_SET": {"untyped int", constant.MakeInt64(int64(q.S_LOGIN_SET))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGCTL": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGCTL))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDCDTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCDCDTIMESTAMP))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLAG_CDTRCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CDTRCTS))}, + "TIOCFLAG_CLOCAL": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CLOCAL))}, + "TIOCFLAG_CRTSCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CRTSCTS))}, + "TIOCFLAG_MDMBUF": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_MDMBUF))}, + "TIOCFLAG_SOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_SOFTCAR))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCGFLAGS))}, + "TIOCGLINED": {"untyped int", constant.MakeInt64(int64(q.TIOCGLINED))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGQSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGQSIZE))}, + "TIOCGRANTPT": {"untyped int", constant.MakeInt64(int64(q.TIOCGRANTPT))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGSIZE))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCPTMGET))}, + "TIOCPTSNAME": {"untyped int", constant.MakeInt64(int64(q.TIOCPTSNAME))}, + "TIOCRCVFRAME": {"untyped int", constant.MakeInt64(int64(q.TIOCRCVFRAME))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCSFLAGS))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLINED": {"untyped int", constant.MakeInt64(int64(q.TIOCSLINED))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSQSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCSQSIZE))}, + "TIOCSSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCSSIZE))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TIOCXMTFRAME": {"untyped int", constant.MakeInt64(int64(q.TIOCXMTFRAME))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WALLSIG": {"untyped int", constant.MakeInt64(int64(q.WALLSIG))}, + "WALTSIG": {"untyped int", constant.MakeInt64(int64(q.WALTSIG))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WNOZOMBIE": {"untyped int", constant.MakeInt64(int64(q.WNOZOMBIE))}, + "WOPTSCHECKED": {"untyped int", constant.MakeInt64(int64(q.WOPTSCHECKED))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_netbsd_amd64.go b/pkg/syscall/go122_export_netbsd_amd64.go new file mode 100755 index 00000000..88f30de6 --- /dev/null +++ b/pkg/syscall/go122_export_netbsd_amd64.go @@ -0,0 +1,2125 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Mclpool": reflect.TypeOf((*q.Mclpool)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Sysctlnode": reflect.TypeOf((*q.Sysctlnode)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ARP": {"untyped int", constant.MakeInt64(int64(q.AF_ARP))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_OROUTE))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FRELAY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRELAY))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_STRIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_STRIP))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCFEEDBACK))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCGFEEDBACK))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGSTATSOLD": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATSOLD))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCSFEEDBACK))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTCPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSTCPF))}, + "BIOCSUDPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSUDPF))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALIGNMENT32": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT32))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DFLTBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_DFLTBUFSIZE))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CLONE_CSIGNAL))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_PID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PID))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "CTL_QUERY": {"untyped int", constant.MakeInt64(int64(q.CTL_QUERY))}, + "DIOCBSFLUSH": {"untyped int", constant.MakeInt64(int64(q.DIOCBSFLUSH))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_AOS": {"untyped int", constant.MakeInt64(int64(q.DLT_AOS))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CAN_SOCKETCAN": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN_SOCKETCAN))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DECT": {"untyped int", constant.MakeInt64(int64(q.DLT_DECT))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FC_2": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2))}, + "DLT_FC_2_WITH_FRAME_DELIMS": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2_WITH_FRAME_DELIMS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_GSMTAP_ABIS": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_ABIS))}, + "DLT_GSMTAP_UM": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_UM))}, + "DLT_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HDLC))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.DLT_HIPPI))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPV4": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV4))}, + "DLT_IPV6": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV6))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_EVDEV": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_EVDEV))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RAWAF_MASK": {"untyped int", constant.MakeInt64(int64(q.DLT_RAWAF_MASK))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_USB_LINUX_MMAPPED": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX_MMAPPED))}, + "DLT_WIHART": {"untyped int", constant.MakeInt64(int64(q.DLT_WIHART))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMUL_LINUX": {"untyped int", constant.MakeInt64(int64(q.EMUL_LINUX))}, + "EMUL_LINUX32": {"untyped int", constant.MakeInt64(int64(q.EMUL_LINUX32))}, + "EMUL_MAXID": {"untyped int", constant.MakeInt64(int64(q.EMUL_MAXID))}, + "ETHERCAP_JUMBO_MTU": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_JUMBO_MTU))}, + "ETHERCAP_VLAN_HWTAGGING": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_VLAN_HWTAGGING))}, + "ETHERCAP_VLAN_MTU": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_VLAN_MTU))}, + "ETHERMIN": {"untyped int", constant.MakeInt64(int64(q.ETHERMIN))}, + "ETHERMTU": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU))}, + "ETHERMTU_JUMBO": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU_JUMBO))}, + "ETHERTYPE_8023": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_8023))}, + "ETHERTYPE_AARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AARP))}, + "ETHERTYPE_ACCTON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ACCTON))}, + "ETHERTYPE_AEONIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AEONIC))}, + "ETHERTYPE_ALPHA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ALPHA))}, + "ETHERTYPE_AMBER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMBER))}, + "ETHERTYPE_AMOEBA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMOEBA))}, + "ETHERTYPE_APOLLO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLO))}, + "ETHERTYPE_APOLLODOMAIN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLODOMAIN))}, + "ETHERTYPE_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLETALK))}, + "ETHERTYPE_APPLITEK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLITEK))}, + "ETHERTYPE_ARGONAUT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARGONAUT))}, + "ETHERTYPE_ARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARP))}, + "ETHERTYPE_AT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AT))}, + "ETHERTYPE_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATALK))}, + "ETHERTYPE_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATOMIC))}, + "ETHERTYPE_ATT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATT))}, + "ETHERTYPE_ATTSTANFORD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATTSTANFORD))}, + "ETHERTYPE_AUTOPHON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AUTOPHON))}, + "ETHERTYPE_AXIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AXIS))}, + "ETHERTYPE_BCLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BCLOOP))}, + "ETHERTYPE_BOFL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BOFL))}, + "ETHERTYPE_CABLETRON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CABLETRON))}, + "ETHERTYPE_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CHAOS))}, + "ETHERTYPE_COMDESIGN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMDESIGN))}, + "ETHERTYPE_COMPUGRAPHIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMPUGRAPHIC))}, + "ETHERTYPE_COUNTERPOINT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COUNTERPOINT))}, + "ETHERTYPE_CRONUS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUS))}, + "ETHERTYPE_CRONUSVLN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUSVLN))}, + "ETHERTYPE_DCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DCA))}, + "ETHERTYPE_DDE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DDE))}, + "ETHERTYPE_DEBNI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DEBNI))}, + "ETHERTYPE_DECAM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECAM))}, + "ETHERTYPE_DECCUST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECCUST))}, + "ETHERTYPE_DECDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDIAG))}, + "ETHERTYPE_DECDNS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDNS))}, + "ETHERTYPE_DECDTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDTS))}, + "ETHERTYPE_DECEXPER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECEXPER))}, + "ETHERTYPE_DECLAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLAST))}, + "ETHERTYPE_DECLTM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLTM))}, + "ETHERTYPE_DECMUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECMUMPS))}, + "ETHERTYPE_DECNETBIOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECNETBIOS))}, + "ETHERTYPE_DELTACON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DELTACON))}, + "ETHERTYPE_DIDDLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DIDDLE))}, + "ETHERTYPE_DLOG1": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG1))}, + "ETHERTYPE_DLOG2": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG2))}, + "ETHERTYPE_DN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DN))}, + "ETHERTYPE_DOGFIGHT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DOGFIGHT))}, + "ETHERTYPE_DSMD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DSMD))}, + "ETHERTYPE_ECMA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ECMA))}, + "ETHERTYPE_ENCRYPT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ENCRYPT))}, + "ETHERTYPE_ES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ES))}, + "ETHERTYPE_EXCELAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXCELAN))}, + "ETHERTYPE_EXPERDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXPERDATA))}, + "ETHERTYPE_FLIP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLIP))}, + "ETHERTYPE_FLOWCONTROL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLOWCONTROL))}, + "ETHERTYPE_FRARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FRARP))}, + "ETHERTYPE_GENDYN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_GENDYN))}, + "ETHERTYPE_HAYES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HAYES))}, + "ETHERTYPE_HIPPI_FP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HIPPI_FP))}, + "ETHERTYPE_HITACHI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HITACHI))}, + "ETHERTYPE_HP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HP))}, + "ETHERTYPE_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUP))}, + "ETHERTYPE_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUPAT))}, + "ETHERTYPE_IMLBL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBL))}, + "ETHERTYPE_IMLBLDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBLDIAG))}, + "ETHERTYPE_IP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IP))}, + "ETHERTYPE_IPAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPAS))}, + "ETHERTYPE_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPV6))}, + "ETHERTYPE_IPX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPX))}, + "ETHERTYPE_IPXNEW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPXNEW))}, + "ETHERTYPE_KALPANA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_KALPANA))}, + "ETHERTYPE_LANBRIDGE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANBRIDGE))}, + "ETHERTYPE_LANPROBE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANPROBE))}, + "ETHERTYPE_LAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LAT))}, + "ETHERTYPE_LBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LBACK))}, + "ETHERTYPE_LITTLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LITTLE))}, + "ETHERTYPE_LOGICRAFT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOGICRAFT))}, + "ETHERTYPE_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOOPBACK))}, + "ETHERTYPE_MATRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MATRA))}, + "ETHERTYPE_MAX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MAX))}, + "ETHERTYPE_MERIT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MERIT))}, + "ETHERTYPE_MICP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MICP))}, + "ETHERTYPE_MOPDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPDL))}, + "ETHERTYPE_MOPRC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPRC))}, + "ETHERTYPE_MOTOROLA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOTOROLA))}, + "ETHERTYPE_MPLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS))}, + "ETHERTYPE_MPLS_MCAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS_MCAST))}, + "ETHERTYPE_MUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MUMPS))}, + "ETHERTYPE_NBPCC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCC))}, + "ETHERTYPE_NBPCLAIM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLAIM))}, + "ETHERTYPE_NBPCLREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLREQ))}, + "ETHERTYPE_NBPCLRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLRSP))}, + "ETHERTYPE_NBPCREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCREQ))}, + "ETHERTYPE_NBPCRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCRSP))}, + "ETHERTYPE_NBPDG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDG))}, + "ETHERTYPE_NBPDGB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDGB))}, + "ETHERTYPE_NBPDLTE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDLTE))}, + "ETHERTYPE_NBPRAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAR))}, + "ETHERTYPE_NBPRAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAS))}, + "ETHERTYPE_NBPRST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRST))}, + "ETHERTYPE_NBPSCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPSCD))}, + "ETHERTYPE_NBPVCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPVCD))}, + "ETHERTYPE_NBS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBS))}, + "ETHERTYPE_NCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NCD))}, + "ETHERTYPE_NESTAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NESTAR))}, + "ETHERTYPE_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NETBEUI))}, + "ETHERTYPE_NOVELL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NOVELL))}, + "ETHERTYPE_NS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NS))}, + "ETHERTYPE_NSAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSAT))}, + "ETHERTYPE_NSCOMPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSCOMPAT))}, + "ETHERTYPE_NTRAILER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NTRAILER))}, + "ETHERTYPE_OS9": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9))}, + "ETHERTYPE_OS9NET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9NET))}, + "ETHERTYPE_PACER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PACER))}, + "ETHERTYPE_PAE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PAE))}, + "ETHERTYPE_PCS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PCS))}, + "ETHERTYPE_PLANNING": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PLANNING))}, + "ETHERTYPE_PPP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPP))}, + "ETHERTYPE_PPPOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOE))}, + "ETHERTYPE_PPPOEDISC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOEDISC))}, + "ETHERTYPE_PRIMENTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PRIMENTS))}, + "ETHERTYPE_PUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUP))}, + "ETHERTYPE_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUPAT))}, + "ETHERTYPE_RACAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RACAL))}, + "ETHERTYPE_RATIONAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RATIONAL))}, + "ETHERTYPE_RAWFR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RAWFR))}, + "ETHERTYPE_RCL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RCL))}, + "ETHERTYPE_RDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RDP))}, + "ETHERTYPE_RETIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RETIX))}, + "ETHERTYPE_REVARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_REVARP))}, + "ETHERTYPE_SCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SCA))}, + "ETHERTYPE_SECTRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECTRA))}, + "ETHERTYPE_SECUREDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECUREDATA))}, + "ETHERTYPE_SGITW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SGITW))}, + "ETHERTYPE_SG_BOUNCE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_BOUNCE))}, + "ETHERTYPE_SG_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_DIAG))}, + "ETHERTYPE_SG_NETGAMES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_NETGAMES))}, + "ETHERTYPE_SG_RESV": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_RESV))}, + "ETHERTYPE_SIMNET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SIMNET))}, + "ETHERTYPE_SLOWPROTOCOLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SLOWPROTOCOLS))}, + "ETHERTYPE_SNA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNA))}, + "ETHERTYPE_SNMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNMP))}, + "ETHERTYPE_SONIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SONIX))}, + "ETHERTYPE_SPIDER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPIDER))}, + "ETHERTYPE_SPRITE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPRITE))}, + "ETHERTYPE_STP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_STP))}, + "ETHERTYPE_TALARIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARIS))}, + "ETHERTYPE_TALARISMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARISMC))}, + "ETHERTYPE_TCPCOMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPCOMP))}, + "ETHERTYPE_TCPSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPSM))}, + "ETHERTYPE_TEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TEC))}, + "ETHERTYPE_TIGAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TIGAN))}, + "ETHERTYPE_TRAIL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRAIL))}, + "ETHERTYPE_TRANSETHER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRANSETHER))}, + "ETHERTYPE_TYMSHARE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TYMSHARE))}, + "ETHERTYPE_UBBST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBBST))}, + "ETHERTYPE_UBDEBUG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDEBUG))}, + "ETHERTYPE_UBDIAGLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDIAGLOOP))}, + "ETHERTYPE_UBDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDL))}, + "ETHERTYPE_UBNIU": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNIU))}, + "ETHERTYPE_UBNMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNMC))}, + "ETHERTYPE_VALID": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VALID))}, + "ETHERTYPE_VARIAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VARIAN))}, + "ETHERTYPE_VAXELN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VAXELN))}, + "ETHERTYPE_VEECO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEECO))}, + "ETHERTYPE_VEXP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEXP))}, + "ETHERTYPE_VGLAB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VGLAB))}, + "ETHERTYPE_VINES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINES))}, + "ETHERTYPE_VINESECHO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESECHO))}, + "ETHERTYPE_VINESLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESLOOP))}, + "ETHERTYPE_VITAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VITAL))}, + "ETHERTYPE_VLAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLAN))}, + "ETHERTYPE_VLTLMAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLTLMAN))}, + "ETHERTYPE_VPROD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VPROD))}, + "ETHERTYPE_VURESERVED": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VURESERVED))}, + "ETHERTYPE_WATERLOO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WATERLOO))}, + "ETHERTYPE_WELLFLEET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WELLFLEET))}, + "ETHERTYPE_X25": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X25))}, + "ETHERTYPE_X75": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X75))}, + "ETHERTYPE_XNSSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XNSSM))}, + "ETHERTYPE_XTP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XTP))}, + "ETHER_ADDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ADDR_LEN))}, + "ETHER_CRC_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_LEN))}, + "ETHER_CRC_POLY_BE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_BE))}, + "ETHER_CRC_POLY_LE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_LE))}, + "ETHER_HDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_HDR_LEN))}, + "ETHER_MAX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN))}, + "ETHER_MAX_LEN_JUMBO": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN_JUMBO))}, + "ETHER_MIN_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MIN_LEN))}, + "ETHER_PPPOE_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_PPPOE_ENCAP_LEN))}, + "ETHER_TYPE_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_TYPE_LEN))}, + "ETHER_VLAN_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_VLAN_ENCAP_LEN))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_CLOSEM": {"untyped int", constant.MakeInt64(int64(q.F_CLOSEM))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FSCTL": {"untyped int", constant.MakeInt64(int64(q.F_FSCTL))}, + "F_FSDIRMASK": {"untyped int", constant.MakeInt64(int64(q.F_FSDIRMASK))}, + "F_FSIN": {"untyped int", constant.MakeInt64(int64(q.F_FSIN))}, + "F_FSINOUT": {"untyped int", constant.MakeInt64(int64(q.F_FSINOUT))}, + "F_FSOUT": {"untyped int", constant.MakeInt64(int64(q.F_FSOUT))}, + "F_FSPRIV": {"untyped int", constant.MakeInt64(int64(q.F_FSPRIV))}, + "F_FSVOID": {"untyped int", constant.MakeInt64(int64(q.F_FSVOID))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_GETNOSIGPIPE))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_MAXFD": {"untyped int", constant.MakeInt64(int64(q.F_MAXFD))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_PARAM_MASK": {"untyped int", constant.MakeInt64(int64(q.F_PARAM_MASK))}, + "F_PARAM_MAX": {"untyped int", constant.MakeInt64(int64(q.F_PARAM_MAX))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_SETNOSIGPIPE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFA_ROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_ROUTE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DOCSCABLEUPSTREAMCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAMCHANNEL))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ECONET": {"untyped int", constant.MakeInt64(int64(q.IFT_ECONET))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LINEGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_LINEGROUP))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_PON155": {"untyped int", constant.MakeInt64(int64(q.IFT_PON155))}, + "IFT_PON622": {"untyped int", constant.MakeInt64(int64(q.IFT_PON622))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPATM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPATM))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_Q2931": {"untyped int", constant.MakeInt64(int64(q.IFT_Q2931))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SIPSIG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPSIG))}, + "IFT_SIPTG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPTG))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_TELINK))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VIRTUALTG": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALTG))}, + "IFT_VOICEDID": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEDID))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEEMFGD": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEMFGD))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFGDEANA": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFGDEANA))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERCABLE": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERCABLE))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IPV6_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6_ICMP))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VRRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VRRP))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_EF": {"untyped int", constant.MakeInt64(int64(q.IP_EF))}, + "IP_ERRORMTU": {"untyped int", constant.MakeInt64(int64(q.IP_ERRORMTU))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINFRAGSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_MINFRAGSIZE))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ALIGNMENT_16MB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_16MB))}, + "MAP_ALIGNMENT_1TB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_1TB))}, + "MAP_ALIGNMENT_256TB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_256TB))}, + "MAP_ALIGNMENT_4GB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_4GB))}, + "MAP_ALIGNMENT_64KB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_64KB))}, + "MAP_ALIGNMENT_64PB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_64PB))}, + "MAP_ALIGNMENT_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_MASK))}, + "MAP_ALIGNMENT_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_SHIFT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_INHERIT_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_COPY))}, + "MAP_INHERIT_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DEFAULT))}, + "MAP_INHERIT_DONATE_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DONATE_COPY))}, + "MAP_INHERIT_NONE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_NONE))}, + "MAP_INHERIT_SHARE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_SHARE))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MAP_WIRED": {"untyped int", constant.MakeInt64(int64(q.MAP_WIRED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_BCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_BCAST))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONTROLMBUF": {"untyped int", constant.MakeInt64(int64(q.MSG_CONTROLMBUF))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_IOVUSRSPACE": {"untyped int", constant.MakeInt64(int64(q.MSG_IOVUSRSPACE))}, + "MSG_LENUSRSPACE": {"untyped int", constant.MakeInt64(int64(q.MSG_LENUSRSPACE))}, + "MSG_MCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_MCAST))}, + "MSG_NAMEMBUF": {"untyped int", constant.MakeInt64(int64(q.MSG_NAMEMBUF))}, + "MSG_NBIO": {"untyped int", constant.MakeInt64(int64(q.MSG_NBIO))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_USERFLAGS": {"untyped int", constant.MakeInt64(int64(q.MSG_USERFLAGS))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_OIFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_OIFLIST))}, + "NET_RT_OOIFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_OOIFLIST))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFIOGETBMAP": {"untyped int", constant.MakeInt64(int64(q.OFIOGETBMAP))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_ALT_IO": {"untyped int", constant.MakeInt64(int64(q.O_ALT_IO))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.O_NOSIGPIPE))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PRI_IOFLUSH": {"untyped int", constant.MakeInt64(int64(q.PRI_IOFLUSH))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_TAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_TAG))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_TAG": {"untyped int", constant.MakeInt64(int64(q.RTA_TAG))}, + "RTF_ANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTF_ANNOUNCE))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_SRC": {"untyped int", constant.MakeInt64(int64(q.RTF_SRC))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_CHGADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_CHGADDR))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LLINFO_UPD": {"untyped int", constant.MakeInt64(int64(q.RTM_LLINFO_UPD))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_OIFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_OIFINFO))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_OOIFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_OOIFINFO))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_SETGATE": {"untyped int", constant.MakeInt64(int64(q.RTM_SETGATE))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFSYNC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFADDRPREF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDRPREF))}, + "SIOCGIFALIAS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFALIAS))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDLT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDLT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLINKSTR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLINKSTR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGVH": {"untyped int", constant.MakeInt64(int64(q.SIOCGVH))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCINITIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCINITIFADDR))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFSYNC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFADDRPREF": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDRPREF))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLINKSTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLINKSTR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSVH": {"untyped int", constant.MakeInt64(int64(q.SIOCSVH))}, + "SIOCZIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCZIFDATA))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_FLAGS_MASK": {"untyped int", constant.MakeInt64(int64(q.SOCK_FLAGS_MASK))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SOCK_NOSIGPIPE))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NOHEADER": {"untyped int", constant.MakeInt64(int64(q.SO_NOHEADER))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_OVERFLOWED": {"untyped int", constant.MakeInt64(int64(q.SO_OVERFLOWED))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SYSCTL_VERSION": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERSION))}, + "SYSCTL_VERS_0": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_0))}, + "SYSCTL_VERS_1": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_1))}, + "SYSCTL_VERS_MASK": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_MASK))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FD))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_LINK))}, + "SYS_EXTATTR_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FD))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_LINK))}, + "SYS_EXTATTR_LIST_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FD))}, + "SYS_EXTATTR_LIST_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FILE))}, + "SYS_EXTATTR_LIST_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_LINK))}, + "SYS_EXTATTR_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FD))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTATTR_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_LINK))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHROOT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FEXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_FEXECVE))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FKTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_FKTRACE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATVFS1": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATVFS1))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FSYNC_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC_RANGE))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCONTEXT))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETVFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETVFSSTAT))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KQUEUE1": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE1))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MODCTL))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_NTP_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_GETTIME))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_PACCEPT))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PMC_CONTROL": {"untyped int", constant.MakeInt64(int64(q.SYS_PMC_CONTROL))}, + "SYS_PMC_GET_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_PMC_GET_INFO))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POLLTS": {"untyped int", constant.MakeInt64(int64(q.SYS_POLLTS))}, + "SYS_POSIX_FADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FADVISE))}, + "SYS_POSIX_SPAWN": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_SPAWN))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PSET_ASSIGN": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_ASSIGN))}, + "SYS_PSET_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_CREATE))}, + "SYS_PSET_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_DESTROY))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_RASCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_RASCTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMCONFIG": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCONFIG))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETCONTEXT))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGQUEUEINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATVFS1": {"untyped int", constant.MakeInt64(int64(q.SYS_STATVFS1))}, + "SYS_SWAPCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCTL))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_VADVISE))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LWP_CONTINUE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CONTINUE))}, + "SYS__LWP_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CREATE))}, + "SYS__LWP_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CTL))}, + "SYS__LWP_DETACH": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_DETACH))}, + "SYS__LWP_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_EXIT))}, + "SYS__LWP_GETNAME": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_GETNAME))}, + "SYS__LWP_GETPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_GETPRIVATE))}, + "SYS__LWP_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_KILL))}, + "SYS__LWP_PARK": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_PARK))}, + "SYS__LWP_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SELF))}, + "SYS__LWP_SETNAME": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SETNAME))}, + "SYS__LWP_SETPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SETPRIVATE))}, + "SYS__LWP_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SUSPEND))}, + "SYS__LWP_UNPARK": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_UNPARK))}, + "SYS__LWP_UNPARK_ALL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_UNPARK_ALL))}, + "SYS__LWP_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_WAIT))}, + "SYS__LWP_WAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_WAKEUP))}, + "SYS__PSET_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS__PSET_BIND))}, + "SYS__SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_GETAFFINITY))}, + "SYS__SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_GETPARAM))}, + "SYS__SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_SETAFFINITY))}, + "SYS__SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_SETPARAM))}, + "SYS___CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS___CLONE))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS___GETLOGIN))}, + "SYS___POSIX_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_CHOWN))}, + "SYS___POSIX_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_FCHOWN))}, + "SYS___POSIX_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_LCHOWN))}, + "SYS___POSIX_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_RENAME))}, + "SYS___QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS___QUOTACTL))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS___SETLOGIN))}, + "SYS___SIGACTION_SIGTRAMP": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGACTION_SIGTRAMP))}, + "SYS___SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGTIMEDWAIT))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_ARCH1": {"untyped int", constant.MakeInt64(int64(q.S_ARCH1))}, + "S_ARCH2": {"untyped int", constant.MakeInt64(int64(q.S_ARCH2))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFWHT": {"untyped int", constant.MakeInt64(int64(q.S_IFWHT))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISTXT": {"untyped int", constant.MakeInt64(int64(q.S_ISTXT))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "S_LOGIN_SET": {"untyped int", constant.MakeInt64(int64(q.S_LOGIN_SET))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGCTL": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGCTL))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDCDTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCDCDTIMESTAMP))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLAG_CDTRCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CDTRCTS))}, + "TIOCFLAG_CLOCAL": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CLOCAL))}, + "TIOCFLAG_CRTSCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CRTSCTS))}, + "TIOCFLAG_MDMBUF": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_MDMBUF))}, + "TIOCFLAG_SOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_SOFTCAR))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCGFLAGS))}, + "TIOCGLINED": {"untyped int", constant.MakeInt64(int64(q.TIOCGLINED))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGQSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGQSIZE))}, + "TIOCGRANTPT": {"untyped int", constant.MakeInt64(int64(q.TIOCGRANTPT))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGSIZE))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCPTMGET))}, + "TIOCPTSNAME": {"untyped int", constant.MakeInt64(int64(q.TIOCPTSNAME))}, + "TIOCRCVFRAME": {"untyped int", constant.MakeInt64(int64(q.TIOCRCVFRAME))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCSFLAGS))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLINED": {"untyped int", constant.MakeInt64(int64(q.TIOCSLINED))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSQSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCSQSIZE))}, + "TIOCSSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCSSIZE))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TIOCXMTFRAME": {"untyped int", constant.MakeInt64(int64(q.TIOCXMTFRAME))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WALLSIG": {"untyped int", constant.MakeInt64(int64(q.WALLSIG))}, + "WALTSIG": {"untyped int", constant.MakeInt64(int64(q.WALTSIG))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WNOZOMBIE": {"untyped int", constant.MakeInt64(int64(q.WNOZOMBIE))}, + "WOPTSCHECKED": {"untyped int", constant.MakeInt64(int64(q.WOPTSCHECKED))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_netbsd_arm.go b/pkg/syscall/go122_export_netbsd_arm.go new file mode 100755 index 00000000..2007e1f6 --- /dev/null +++ b/pkg/syscall/go122_export_netbsd_arm.go @@ -0,0 +1,2111 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Mclpool": reflect.TypeOf((*q.Mclpool)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Sysctlnode": reflect.TypeOf((*q.Sysctlnode)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ARP": {"untyped int", constant.MakeInt64(int64(q.AF_ARP))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_OROUTE))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FRELAY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRELAY))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_STRIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_STRIP))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCFEEDBACK))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCGFEEDBACK))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGSTATSOLD": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATSOLD))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCSFEEDBACK))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTCPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSTCPF))}, + "BIOCSUDPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSUDPF))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALIGNMENT32": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT32))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DFLTBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_DFLTBUFSIZE))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "CTL_QUERY": {"untyped int", constant.MakeInt64(int64(q.CTL_QUERY))}, + "DIOCBSFLUSH": {"untyped int", constant.MakeInt64(int64(q.DIOCBSFLUSH))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_AOS": {"untyped int", constant.MakeInt64(int64(q.DLT_AOS))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CAN_SOCKETCAN": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN_SOCKETCAN))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DECT": {"untyped int", constant.MakeInt64(int64(q.DLT_DECT))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FC_2": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2))}, + "DLT_FC_2_WITH_FRAME_DELIMS": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2_WITH_FRAME_DELIMS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_GSMTAP_ABIS": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_ABIS))}, + "DLT_GSMTAP_UM": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_UM))}, + "DLT_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HDLC))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.DLT_HIPPI))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPV4": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV4))}, + "DLT_IPV6": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV6))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_EVDEV": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_EVDEV))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RAWAF_MASK": {"untyped int", constant.MakeInt64(int64(q.DLT_RAWAF_MASK))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_USB_LINUX_MMAPPED": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX_MMAPPED))}, + "DLT_WIHART": {"untyped int", constant.MakeInt64(int64(q.DLT_WIHART))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMUL_LINUX": {"untyped int", constant.MakeInt64(int64(q.EMUL_LINUX))}, + "EMUL_LINUX32": {"untyped int", constant.MakeInt64(int64(q.EMUL_LINUX32))}, + "EMUL_MAXID": {"untyped int", constant.MakeInt64(int64(q.EMUL_MAXID))}, + "ETHERCAP_JUMBO_MTU": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_JUMBO_MTU))}, + "ETHERCAP_VLAN_HWTAGGING": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_VLAN_HWTAGGING))}, + "ETHERCAP_VLAN_MTU": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_VLAN_MTU))}, + "ETHERMIN": {"untyped int", constant.MakeInt64(int64(q.ETHERMIN))}, + "ETHERMTU": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU))}, + "ETHERMTU_JUMBO": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU_JUMBO))}, + "ETHERTYPE_8023": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_8023))}, + "ETHERTYPE_AARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AARP))}, + "ETHERTYPE_ACCTON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ACCTON))}, + "ETHERTYPE_AEONIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AEONIC))}, + "ETHERTYPE_ALPHA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ALPHA))}, + "ETHERTYPE_AMBER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMBER))}, + "ETHERTYPE_AMOEBA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMOEBA))}, + "ETHERTYPE_APOLLO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLO))}, + "ETHERTYPE_APOLLODOMAIN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLODOMAIN))}, + "ETHERTYPE_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLETALK))}, + "ETHERTYPE_APPLITEK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLITEK))}, + "ETHERTYPE_ARGONAUT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARGONAUT))}, + "ETHERTYPE_ARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARP))}, + "ETHERTYPE_AT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AT))}, + "ETHERTYPE_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATALK))}, + "ETHERTYPE_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATOMIC))}, + "ETHERTYPE_ATT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATT))}, + "ETHERTYPE_ATTSTANFORD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATTSTANFORD))}, + "ETHERTYPE_AUTOPHON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AUTOPHON))}, + "ETHERTYPE_AXIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AXIS))}, + "ETHERTYPE_BCLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BCLOOP))}, + "ETHERTYPE_BOFL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BOFL))}, + "ETHERTYPE_CABLETRON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CABLETRON))}, + "ETHERTYPE_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CHAOS))}, + "ETHERTYPE_COMDESIGN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMDESIGN))}, + "ETHERTYPE_COMPUGRAPHIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMPUGRAPHIC))}, + "ETHERTYPE_COUNTERPOINT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COUNTERPOINT))}, + "ETHERTYPE_CRONUS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUS))}, + "ETHERTYPE_CRONUSVLN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUSVLN))}, + "ETHERTYPE_DCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DCA))}, + "ETHERTYPE_DDE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DDE))}, + "ETHERTYPE_DEBNI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DEBNI))}, + "ETHERTYPE_DECAM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECAM))}, + "ETHERTYPE_DECCUST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECCUST))}, + "ETHERTYPE_DECDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDIAG))}, + "ETHERTYPE_DECDNS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDNS))}, + "ETHERTYPE_DECDTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDTS))}, + "ETHERTYPE_DECEXPER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECEXPER))}, + "ETHERTYPE_DECLAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLAST))}, + "ETHERTYPE_DECLTM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLTM))}, + "ETHERTYPE_DECMUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECMUMPS))}, + "ETHERTYPE_DECNETBIOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECNETBIOS))}, + "ETHERTYPE_DELTACON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DELTACON))}, + "ETHERTYPE_DIDDLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DIDDLE))}, + "ETHERTYPE_DLOG1": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG1))}, + "ETHERTYPE_DLOG2": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG2))}, + "ETHERTYPE_DN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DN))}, + "ETHERTYPE_DOGFIGHT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DOGFIGHT))}, + "ETHERTYPE_DSMD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DSMD))}, + "ETHERTYPE_ECMA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ECMA))}, + "ETHERTYPE_ENCRYPT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ENCRYPT))}, + "ETHERTYPE_ES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ES))}, + "ETHERTYPE_EXCELAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXCELAN))}, + "ETHERTYPE_EXPERDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXPERDATA))}, + "ETHERTYPE_FLIP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLIP))}, + "ETHERTYPE_FLOWCONTROL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLOWCONTROL))}, + "ETHERTYPE_FRARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FRARP))}, + "ETHERTYPE_GENDYN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_GENDYN))}, + "ETHERTYPE_HAYES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HAYES))}, + "ETHERTYPE_HIPPI_FP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HIPPI_FP))}, + "ETHERTYPE_HITACHI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HITACHI))}, + "ETHERTYPE_HP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HP))}, + "ETHERTYPE_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUP))}, + "ETHERTYPE_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUPAT))}, + "ETHERTYPE_IMLBL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBL))}, + "ETHERTYPE_IMLBLDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBLDIAG))}, + "ETHERTYPE_IP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IP))}, + "ETHERTYPE_IPAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPAS))}, + "ETHERTYPE_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPV6))}, + "ETHERTYPE_IPX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPX))}, + "ETHERTYPE_IPXNEW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPXNEW))}, + "ETHERTYPE_KALPANA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_KALPANA))}, + "ETHERTYPE_LANBRIDGE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANBRIDGE))}, + "ETHERTYPE_LANPROBE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANPROBE))}, + "ETHERTYPE_LAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LAT))}, + "ETHERTYPE_LBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LBACK))}, + "ETHERTYPE_LITTLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LITTLE))}, + "ETHERTYPE_LOGICRAFT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOGICRAFT))}, + "ETHERTYPE_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOOPBACK))}, + "ETHERTYPE_MATRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MATRA))}, + "ETHERTYPE_MAX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MAX))}, + "ETHERTYPE_MERIT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MERIT))}, + "ETHERTYPE_MICP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MICP))}, + "ETHERTYPE_MOPDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPDL))}, + "ETHERTYPE_MOPRC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPRC))}, + "ETHERTYPE_MOTOROLA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOTOROLA))}, + "ETHERTYPE_MPLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS))}, + "ETHERTYPE_MPLS_MCAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS_MCAST))}, + "ETHERTYPE_MUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MUMPS))}, + "ETHERTYPE_NBPCC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCC))}, + "ETHERTYPE_NBPCLAIM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLAIM))}, + "ETHERTYPE_NBPCLREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLREQ))}, + "ETHERTYPE_NBPCLRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLRSP))}, + "ETHERTYPE_NBPCREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCREQ))}, + "ETHERTYPE_NBPCRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCRSP))}, + "ETHERTYPE_NBPDG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDG))}, + "ETHERTYPE_NBPDGB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDGB))}, + "ETHERTYPE_NBPDLTE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDLTE))}, + "ETHERTYPE_NBPRAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAR))}, + "ETHERTYPE_NBPRAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAS))}, + "ETHERTYPE_NBPRST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRST))}, + "ETHERTYPE_NBPSCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPSCD))}, + "ETHERTYPE_NBPVCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPVCD))}, + "ETHERTYPE_NBS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBS))}, + "ETHERTYPE_NCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NCD))}, + "ETHERTYPE_NESTAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NESTAR))}, + "ETHERTYPE_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NETBEUI))}, + "ETHERTYPE_NOVELL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NOVELL))}, + "ETHERTYPE_NS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NS))}, + "ETHERTYPE_NSAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSAT))}, + "ETHERTYPE_NSCOMPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSCOMPAT))}, + "ETHERTYPE_NTRAILER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NTRAILER))}, + "ETHERTYPE_OS9": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9))}, + "ETHERTYPE_OS9NET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9NET))}, + "ETHERTYPE_PACER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PACER))}, + "ETHERTYPE_PAE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PAE))}, + "ETHERTYPE_PCS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PCS))}, + "ETHERTYPE_PLANNING": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PLANNING))}, + "ETHERTYPE_PPP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPP))}, + "ETHERTYPE_PPPOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOE))}, + "ETHERTYPE_PPPOEDISC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOEDISC))}, + "ETHERTYPE_PRIMENTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PRIMENTS))}, + "ETHERTYPE_PUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUP))}, + "ETHERTYPE_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUPAT))}, + "ETHERTYPE_RACAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RACAL))}, + "ETHERTYPE_RATIONAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RATIONAL))}, + "ETHERTYPE_RAWFR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RAWFR))}, + "ETHERTYPE_RCL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RCL))}, + "ETHERTYPE_RDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RDP))}, + "ETHERTYPE_RETIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RETIX))}, + "ETHERTYPE_REVARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_REVARP))}, + "ETHERTYPE_SCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SCA))}, + "ETHERTYPE_SECTRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECTRA))}, + "ETHERTYPE_SECUREDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECUREDATA))}, + "ETHERTYPE_SGITW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SGITW))}, + "ETHERTYPE_SG_BOUNCE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_BOUNCE))}, + "ETHERTYPE_SG_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_DIAG))}, + "ETHERTYPE_SG_NETGAMES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_NETGAMES))}, + "ETHERTYPE_SG_RESV": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_RESV))}, + "ETHERTYPE_SIMNET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SIMNET))}, + "ETHERTYPE_SLOWPROTOCOLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SLOWPROTOCOLS))}, + "ETHERTYPE_SNA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNA))}, + "ETHERTYPE_SNMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNMP))}, + "ETHERTYPE_SONIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SONIX))}, + "ETHERTYPE_SPIDER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPIDER))}, + "ETHERTYPE_SPRITE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPRITE))}, + "ETHERTYPE_STP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_STP))}, + "ETHERTYPE_TALARIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARIS))}, + "ETHERTYPE_TALARISMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARISMC))}, + "ETHERTYPE_TCPCOMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPCOMP))}, + "ETHERTYPE_TCPSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPSM))}, + "ETHERTYPE_TEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TEC))}, + "ETHERTYPE_TIGAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TIGAN))}, + "ETHERTYPE_TRAIL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRAIL))}, + "ETHERTYPE_TRANSETHER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRANSETHER))}, + "ETHERTYPE_TYMSHARE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TYMSHARE))}, + "ETHERTYPE_UBBST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBBST))}, + "ETHERTYPE_UBDEBUG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDEBUG))}, + "ETHERTYPE_UBDIAGLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDIAGLOOP))}, + "ETHERTYPE_UBDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDL))}, + "ETHERTYPE_UBNIU": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNIU))}, + "ETHERTYPE_UBNMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNMC))}, + "ETHERTYPE_VALID": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VALID))}, + "ETHERTYPE_VARIAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VARIAN))}, + "ETHERTYPE_VAXELN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VAXELN))}, + "ETHERTYPE_VEECO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEECO))}, + "ETHERTYPE_VEXP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEXP))}, + "ETHERTYPE_VGLAB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VGLAB))}, + "ETHERTYPE_VINES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINES))}, + "ETHERTYPE_VINESECHO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESECHO))}, + "ETHERTYPE_VINESLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESLOOP))}, + "ETHERTYPE_VITAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VITAL))}, + "ETHERTYPE_VLAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLAN))}, + "ETHERTYPE_VLTLMAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLTLMAN))}, + "ETHERTYPE_VPROD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VPROD))}, + "ETHERTYPE_VURESERVED": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VURESERVED))}, + "ETHERTYPE_WATERLOO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WATERLOO))}, + "ETHERTYPE_WELLFLEET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WELLFLEET))}, + "ETHERTYPE_X25": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X25))}, + "ETHERTYPE_X75": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X75))}, + "ETHERTYPE_XNSSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XNSSM))}, + "ETHERTYPE_XTP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XTP))}, + "ETHER_ADDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ADDR_LEN))}, + "ETHER_CRC_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_LEN))}, + "ETHER_CRC_POLY_BE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_BE))}, + "ETHER_CRC_POLY_LE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_LE))}, + "ETHER_HDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_HDR_LEN))}, + "ETHER_MAX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN))}, + "ETHER_MAX_LEN_JUMBO": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN_JUMBO))}, + "ETHER_MIN_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MIN_LEN))}, + "ETHER_PPPOE_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_PPPOE_ENCAP_LEN))}, + "ETHER_TYPE_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_TYPE_LEN))}, + "ETHER_VLAN_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_VLAN_ENCAP_LEN))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_CLOSEM": {"untyped int", constant.MakeInt64(int64(q.F_CLOSEM))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FSCTL": {"untyped int", constant.MakeInt64(int64(q.F_FSCTL))}, + "F_FSDIRMASK": {"untyped int", constant.MakeInt64(int64(q.F_FSDIRMASK))}, + "F_FSIN": {"untyped int", constant.MakeInt64(int64(q.F_FSIN))}, + "F_FSINOUT": {"untyped int", constant.MakeInt64(int64(q.F_FSINOUT))}, + "F_FSOUT": {"untyped int", constant.MakeInt64(int64(q.F_FSOUT))}, + "F_FSPRIV": {"untyped int", constant.MakeInt64(int64(q.F_FSPRIV))}, + "F_FSVOID": {"untyped int", constant.MakeInt64(int64(q.F_FSVOID))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_GETNOSIGPIPE))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_MAXFD": {"untyped int", constant.MakeInt64(int64(q.F_MAXFD))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_PARAM_MASK": {"untyped int", constant.MakeInt64(int64(q.F_PARAM_MASK))}, + "F_PARAM_MAX": {"untyped int", constant.MakeInt64(int64(q.F_PARAM_MAX))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_SETNOSIGPIPE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFA_ROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_ROUTE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DOCSCABLEUPSTREAMCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAMCHANNEL))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ECONET": {"untyped int", constant.MakeInt64(int64(q.IFT_ECONET))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LINEGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_LINEGROUP))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_PON155": {"untyped int", constant.MakeInt64(int64(q.IFT_PON155))}, + "IFT_PON622": {"untyped int", constant.MakeInt64(int64(q.IFT_PON622))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPATM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPATM))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_Q2931": {"untyped int", constant.MakeInt64(int64(q.IFT_Q2931))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SIPSIG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPSIG))}, + "IFT_SIPTG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPTG))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_TELINK))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VIRTUALTG": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALTG))}, + "IFT_VOICEDID": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEDID))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEEMFGD": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEMFGD))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFGDEANA": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFGDEANA))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERCABLE": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERCABLE))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IPV6_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6_ICMP))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VRRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VRRP))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_EF": {"untyped int", constant.MakeInt64(int64(q.IP_EF))}, + "IP_ERRORMTU": {"untyped int", constant.MakeInt64(int64(q.IP_ERRORMTU))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINFRAGSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_MINFRAGSIZE))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ALIGNMENT_16MB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_16MB))}, + "MAP_ALIGNMENT_1TB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_1TB))}, + "MAP_ALIGNMENT_256TB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_256TB))}, + "MAP_ALIGNMENT_4GB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_4GB))}, + "MAP_ALIGNMENT_64KB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_64KB))}, + "MAP_ALIGNMENT_64PB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_64PB))}, + "MAP_ALIGNMENT_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_MASK))}, + "MAP_ALIGNMENT_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_SHIFT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_INHERIT_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_COPY))}, + "MAP_INHERIT_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DEFAULT))}, + "MAP_INHERIT_DONATE_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DONATE_COPY))}, + "MAP_INHERIT_NONE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_NONE))}, + "MAP_INHERIT_SHARE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_SHARE))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MAP_WIRED": {"untyped int", constant.MakeInt64(int64(q.MAP_WIRED))}, + "MSG_BCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_BCAST))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONTROLMBUF": {"untyped int", constant.MakeInt64(int64(q.MSG_CONTROLMBUF))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_IOVUSRSPACE": {"untyped int", constant.MakeInt64(int64(q.MSG_IOVUSRSPACE))}, + "MSG_LENUSRSPACE": {"untyped int", constant.MakeInt64(int64(q.MSG_LENUSRSPACE))}, + "MSG_MCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_MCAST))}, + "MSG_NAMEMBUF": {"untyped int", constant.MakeInt64(int64(q.MSG_NAMEMBUF))}, + "MSG_NBIO": {"untyped int", constant.MakeInt64(int64(q.MSG_NBIO))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_USERFLAGS": {"untyped int", constant.MakeInt64(int64(q.MSG_USERFLAGS))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_OIFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_OIFLIST))}, + "NET_RT_OOIFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_OOIFLIST))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFIOGETBMAP": {"untyped int", constant.MakeInt64(int64(q.OFIOGETBMAP))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_ALT_IO": {"untyped int", constant.MakeInt64(int64(q.O_ALT_IO))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.O_NOSIGPIPE))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PRI_IOFLUSH": {"untyped int", constant.MakeInt64(int64(q.PRI_IOFLUSH))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_TAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_TAG))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_TAG": {"untyped int", constant.MakeInt64(int64(q.RTA_TAG))}, + "RTF_ANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTF_ANNOUNCE))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_SRC": {"untyped int", constant.MakeInt64(int64(q.RTF_SRC))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_CHGADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_CHGADDR))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LLINFO_UPD": {"untyped int", constant.MakeInt64(int64(q.RTM_LLINFO_UPD))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_OIFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_OIFINFO))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_OOIFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_OOIFINFO))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_SETGATE": {"untyped int", constant.MakeInt64(int64(q.RTM_SETGATE))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFSYNC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFADDRPREF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDRPREF))}, + "SIOCGIFALIAS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFALIAS))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDLT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDLT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLINKSTR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLINKSTR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGVH": {"untyped int", constant.MakeInt64(int64(q.SIOCGVH))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCINITIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCINITIFADDR))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFSYNC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFADDRPREF": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDRPREF))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLINKSTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLINKSTR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSVH": {"untyped int", constant.MakeInt64(int64(q.SIOCSVH))}, + "SIOCZIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCZIFDATA))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_FLAGS_MASK": {"untyped int", constant.MakeInt64(int64(q.SOCK_FLAGS_MASK))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SOCK_NOSIGPIPE))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NOHEADER": {"untyped int", constant.MakeInt64(int64(q.SO_NOHEADER))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_OVERFLOWED": {"untyped int", constant.MakeInt64(int64(q.SO_OVERFLOWED))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SYSCTL_VERSION": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERSION))}, + "SYSCTL_VERS_0": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_0))}, + "SYSCTL_VERS_1": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_1))}, + "SYSCTL_VERS_MASK": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_MASK))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FD))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_LINK))}, + "SYS_EXTATTR_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FD))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_LINK))}, + "SYS_EXTATTR_LIST_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FD))}, + "SYS_EXTATTR_LIST_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FILE))}, + "SYS_EXTATTR_LIST_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_LINK))}, + "SYS_EXTATTR_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FD))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTATTR_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_LINK))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHROOT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FEXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_FEXECVE))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FKTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_FKTRACE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATVFS1": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATVFS1))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FSYNC_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC_RANGE))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCONTEXT))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETVFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETVFSSTAT))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KQUEUE1": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE1))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MODCTL))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_NTP_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_GETTIME))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_PACCEPT))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PMC_CONTROL": {"untyped int", constant.MakeInt64(int64(q.SYS_PMC_CONTROL))}, + "SYS_PMC_GET_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_PMC_GET_INFO))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POLLTS": {"untyped int", constant.MakeInt64(int64(q.SYS_POLLTS))}, + "SYS_POSIX_FADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FADVISE))}, + "SYS_POSIX_SPAWN": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_SPAWN))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PSET_ASSIGN": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_ASSIGN))}, + "SYS_PSET_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_CREATE))}, + "SYS_PSET_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_DESTROY))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_RASCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_RASCTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMCONFIG": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCONFIG))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETCONTEXT))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGQUEUEINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATVFS1": {"untyped int", constant.MakeInt64(int64(q.SYS_STATVFS1))}, + "SYS_SWAPCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCTL))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_VADVISE))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LWP_CONTINUE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CONTINUE))}, + "SYS__LWP_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CREATE))}, + "SYS__LWP_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CTL))}, + "SYS__LWP_DETACH": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_DETACH))}, + "SYS__LWP_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_EXIT))}, + "SYS__LWP_GETNAME": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_GETNAME))}, + "SYS__LWP_GETPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_GETPRIVATE))}, + "SYS__LWP_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_KILL))}, + "SYS__LWP_PARK": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_PARK))}, + "SYS__LWP_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SELF))}, + "SYS__LWP_SETNAME": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SETNAME))}, + "SYS__LWP_SETPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SETPRIVATE))}, + "SYS__LWP_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SUSPEND))}, + "SYS__LWP_UNPARK": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_UNPARK))}, + "SYS__LWP_UNPARK_ALL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_UNPARK_ALL))}, + "SYS__LWP_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_WAIT))}, + "SYS__LWP_WAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_WAKEUP))}, + "SYS__PSET_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS__PSET_BIND))}, + "SYS__SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_GETAFFINITY))}, + "SYS__SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_GETPARAM))}, + "SYS__SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_SETAFFINITY))}, + "SYS__SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_SETPARAM))}, + "SYS___CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS___CLONE))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS___GETLOGIN))}, + "SYS___POSIX_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_CHOWN))}, + "SYS___POSIX_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_FCHOWN))}, + "SYS___POSIX_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_LCHOWN))}, + "SYS___POSIX_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_RENAME))}, + "SYS___QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS___QUOTACTL))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS___SETLOGIN))}, + "SYS___SIGACTION_SIGTRAMP": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGACTION_SIGTRAMP))}, + "SYS___SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGTIMEDWAIT))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_ARCH1": {"untyped int", constant.MakeInt64(int64(q.S_ARCH1))}, + "S_ARCH2": {"untyped int", constant.MakeInt64(int64(q.S_ARCH2))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFWHT": {"untyped int", constant.MakeInt64(int64(q.S_IFWHT))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISTXT": {"untyped int", constant.MakeInt64(int64(q.S_ISTXT))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGCTL": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGCTL))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDCDTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCDCDTIMESTAMP))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLAG_CDTRCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CDTRCTS))}, + "TIOCFLAG_CLOCAL": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CLOCAL))}, + "TIOCFLAG_CRTSCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CRTSCTS))}, + "TIOCFLAG_MDMBUF": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_MDMBUF))}, + "TIOCFLAG_SOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_SOFTCAR))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCGFLAGS))}, + "TIOCGLINED": {"untyped int", constant.MakeInt64(int64(q.TIOCGLINED))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGQSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGQSIZE))}, + "TIOCGRANTPT": {"untyped int", constant.MakeInt64(int64(q.TIOCGRANTPT))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGSIZE))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCPTMGET))}, + "TIOCPTSNAME": {"untyped int", constant.MakeInt64(int64(q.TIOCPTSNAME))}, + "TIOCRCVFRAME": {"untyped int", constant.MakeInt64(int64(q.TIOCRCVFRAME))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCSFLAGS))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLINED": {"untyped int", constant.MakeInt64(int64(q.TIOCSLINED))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSQSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCSQSIZE))}, + "TIOCSSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCSSIZE))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TIOCXMTFRAME": {"untyped int", constant.MakeInt64(int64(q.TIOCXMTFRAME))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WALLSIG": {"untyped int", constant.MakeInt64(int64(q.WALLSIG))}, + "WALTSIG": {"untyped int", constant.MakeInt64(int64(q.WALTSIG))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WNOZOMBIE": {"untyped int", constant.MakeInt64(int64(q.WNOZOMBIE))}, + "WOPTSCHECKED": {"untyped int", constant.MakeInt64(int64(q.WOPTSCHECKED))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_netbsd_arm64.go b/pkg/syscall/go122_export_netbsd_arm64.go new file mode 100755 index 00000000..88f30de6 --- /dev/null +++ b/pkg/syscall/go122_export_netbsd_arm64.go @@ -0,0 +1,2125 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Mclpool": reflect.TypeOf((*q.Mclpool)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Sysctlnode": reflect.TypeOf((*q.Sysctlnode)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ARP": {"untyped int", constant.MakeInt64(int64(q.AF_ARP))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_OROUTE))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FRELAY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRELAY))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_STRIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_STRIP))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCFEEDBACK))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCGFEEDBACK))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGSTATSOLD": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATSOLD))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCSFEEDBACK))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTCPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSTCPF))}, + "BIOCSUDPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSUDPF))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALIGNMENT32": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT32))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DFLTBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_DFLTBUFSIZE))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CLONE_CSIGNAL))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_PID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PID))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "CTL_QUERY": {"untyped int", constant.MakeInt64(int64(q.CTL_QUERY))}, + "DIOCBSFLUSH": {"untyped int", constant.MakeInt64(int64(q.DIOCBSFLUSH))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_AOS": {"untyped int", constant.MakeInt64(int64(q.DLT_AOS))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CAN_SOCKETCAN": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN_SOCKETCAN))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DECT": {"untyped int", constant.MakeInt64(int64(q.DLT_DECT))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FC_2": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2))}, + "DLT_FC_2_WITH_FRAME_DELIMS": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2_WITH_FRAME_DELIMS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_GSMTAP_ABIS": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_ABIS))}, + "DLT_GSMTAP_UM": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_UM))}, + "DLT_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HDLC))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.DLT_HIPPI))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPV4": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV4))}, + "DLT_IPV6": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV6))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_EVDEV": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_EVDEV))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RAWAF_MASK": {"untyped int", constant.MakeInt64(int64(q.DLT_RAWAF_MASK))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_USB_LINUX_MMAPPED": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX_MMAPPED))}, + "DLT_WIHART": {"untyped int", constant.MakeInt64(int64(q.DLT_WIHART))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMUL_LINUX": {"untyped int", constant.MakeInt64(int64(q.EMUL_LINUX))}, + "EMUL_LINUX32": {"untyped int", constant.MakeInt64(int64(q.EMUL_LINUX32))}, + "EMUL_MAXID": {"untyped int", constant.MakeInt64(int64(q.EMUL_MAXID))}, + "ETHERCAP_JUMBO_MTU": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_JUMBO_MTU))}, + "ETHERCAP_VLAN_HWTAGGING": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_VLAN_HWTAGGING))}, + "ETHERCAP_VLAN_MTU": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_VLAN_MTU))}, + "ETHERMIN": {"untyped int", constant.MakeInt64(int64(q.ETHERMIN))}, + "ETHERMTU": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU))}, + "ETHERMTU_JUMBO": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU_JUMBO))}, + "ETHERTYPE_8023": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_8023))}, + "ETHERTYPE_AARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AARP))}, + "ETHERTYPE_ACCTON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ACCTON))}, + "ETHERTYPE_AEONIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AEONIC))}, + "ETHERTYPE_ALPHA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ALPHA))}, + "ETHERTYPE_AMBER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMBER))}, + "ETHERTYPE_AMOEBA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMOEBA))}, + "ETHERTYPE_APOLLO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLO))}, + "ETHERTYPE_APOLLODOMAIN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLODOMAIN))}, + "ETHERTYPE_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLETALK))}, + "ETHERTYPE_APPLITEK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLITEK))}, + "ETHERTYPE_ARGONAUT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARGONAUT))}, + "ETHERTYPE_ARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARP))}, + "ETHERTYPE_AT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AT))}, + "ETHERTYPE_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATALK))}, + "ETHERTYPE_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATOMIC))}, + "ETHERTYPE_ATT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATT))}, + "ETHERTYPE_ATTSTANFORD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATTSTANFORD))}, + "ETHERTYPE_AUTOPHON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AUTOPHON))}, + "ETHERTYPE_AXIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AXIS))}, + "ETHERTYPE_BCLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BCLOOP))}, + "ETHERTYPE_BOFL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BOFL))}, + "ETHERTYPE_CABLETRON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CABLETRON))}, + "ETHERTYPE_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CHAOS))}, + "ETHERTYPE_COMDESIGN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMDESIGN))}, + "ETHERTYPE_COMPUGRAPHIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMPUGRAPHIC))}, + "ETHERTYPE_COUNTERPOINT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COUNTERPOINT))}, + "ETHERTYPE_CRONUS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUS))}, + "ETHERTYPE_CRONUSVLN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUSVLN))}, + "ETHERTYPE_DCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DCA))}, + "ETHERTYPE_DDE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DDE))}, + "ETHERTYPE_DEBNI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DEBNI))}, + "ETHERTYPE_DECAM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECAM))}, + "ETHERTYPE_DECCUST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECCUST))}, + "ETHERTYPE_DECDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDIAG))}, + "ETHERTYPE_DECDNS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDNS))}, + "ETHERTYPE_DECDTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDTS))}, + "ETHERTYPE_DECEXPER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECEXPER))}, + "ETHERTYPE_DECLAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLAST))}, + "ETHERTYPE_DECLTM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLTM))}, + "ETHERTYPE_DECMUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECMUMPS))}, + "ETHERTYPE_DECNETBIOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECNETBIOS))}, + "ETHERTYPE_DELTACON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DELTACON))}, + "ETHERTYPE_DIDDLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DIDDLE))}, + "ETHERTYPE_DLOG1": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG1))}, + "ETHERTYPE_DLOG2": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG2))}, + "ETHERTYPE_DN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DN))}, + "ETHERTYPE_DOGFIGHT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DOGFIGHT))}, + "ETHERTYPE_DSMD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DSMD))}, + "ETHERTYPE_ECMA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ECMA))}, + "ETHERTYPE_ENCRYPT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ENCRYPT))}, + "ETHERTYPE_ES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ES))}, + "ETHERTYPE_EXCELAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXCELAN))}, + "ETHERTYPE_EXPERDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXPERDATA))}, + "ETHERTYPE_FLIP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLIP))}, + "ETHERTYPE_FLOWCONTROL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLOWCONTROL))}, + "ETHERTYPE_FRARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FRARP))}, + "ETHERTYPE_GENDYN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_GENDYN))}, + "ETHERTYPE_HAYES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HAYES))}, + "ETHERTYPE_HIPPI_FP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HIPPI_FP))}, + "ETHERTYPE_HITACHI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HITACHI))}, + "ETHERTYPE_HP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HP))}, + "ETHERTYPE_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUP))}, + "ETHERTYPE_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUPAT))}, + "ETHERTYPE_IMLBL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBL))}, + "ETHERTYPE_IMLBLDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBLDIAG))}, + "ETHERTYPE_IP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IP))}, + "ETHERTYPE_IPAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPAS))}, + "ETHERTYPE_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPV6))}, + "ETHERTYPE_IPX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPX))}, + "ETHERTYPE_IPXNEW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPXNEW))}, + "ETHERTYPE_KALPANA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_KALPANA))}, + "ETHERTYPE_LANBRIDGE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANBRIDGE))}, + "ETHERTYPE_LANPROBE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANPROBE))}, + "ETHERTYPE_LAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LAT))}, + "ETHERTYPE_LBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LBACK))}, + "ETHERTYPE_LITTLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LITTLE))}, + "ETHERTYPE_LOGICRAFT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOGICRAFT))}, + "ETHERTYPE_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOOPBACK))}, + "ETHERTYPE_MATRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MATRA))}, + "ETHERTYPE_MAX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MAX))}, + "ETHERTYPE_MERIT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MERIT))}, + "ETHERTYPE_MICP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MICP))}, + "ETHERTYPE_MOPDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPDL))}, + "ETHERTYPE_MOPRC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPRC))}, + "ETHERTYPE_MOTOROLA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOTOROLA))}, + "ETHERTYPE_MPLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS))}, + "ETHERTYPE_MPLS_MCAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS_MCAST))}, + "ETHERTYPE_MUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MUMPS))}, + "ETHERTYPE_NBPCC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCC))}, + "ETHERTYPE_NBPCLAIM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLAIM))}, + "ETHERTYPE_NBPCLREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLREQ))}, + "ETHERTYPE_NBPCLRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLRSP))}, + "ETHERTYPE_NBPCREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCREQ))}, + "ETHERTYPE_NBPCRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCRSP))}, + "ETHERTYPE_NBPDG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDG))}, + "ETHERTYPE_NBPDGB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDGB))}, + "ETHERTYPE_NBPDLTE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDLTE))}, + "ETHERTYPE_NBPRAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAR))}, + "ETHERTYPE_NBPRAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAS))}, + "ETHERTYPE_NBPRST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRST))}, + "ETHERTYPE_NBPSCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPSCD))}, + "ETHERTYPE_NBPVCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPVCD))}, + "ETHERTYPE_NBS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBS))}, + "ETHERTYPE_NCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NCD))}, + "ETHERTYPE_NESTAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NESTAR))}, + "ETHERTYPE_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NETBEUI))}, + "ETHERTYPE_NOVELL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NOVELL))}, + "ETHERTYPE_NS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NS))}, + "ETHERTYPE_NSAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSAT))}, + "ETHERTYPE_NSCOMPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSCOMPAT))}, + "ETHERTYPE_NTRAILER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NTRAILER))}, + "ETHERTYPE_OS9": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9))}, + "ETHERTYPE_OS9NET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9NET))}, + "ETHERTYPE_PACER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PACER))}, + "ETHERTYPE_PAE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PAE))}, + "ETHERTYPE_PCS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PCS))}, + "ETHERTYPE_PLANNING": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PLANNING))}, + "ETHERTYPE_PPP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPP))}, + "ETHERTYPE_PPPOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOE))}, + "ETHERTYPE_PPPOEDISC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOEDISC))}, + "ETHERTYPE_PRIMENTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PRIMENTS))}, + "ETHERTYPE_PUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUP))}, + "ETHERTYPE_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUPAT))}, + "ETHERTYPE_RACAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RACAL))}, + "ETHERTYPE_RATIONAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RATIONAL))}, + "ETHERTYPE_RAWFR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RAWFR))}, + "ETHERTYPE_RCL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RCL))}, + "ETHERTYPE_RDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RDP))}, + "ETHERTYPE_RETIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RETIX))}, + "ETHERTYPE_REVARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_REVARP))}, + "ETHERTYPE_SCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SCA))}, + "ETHERTYPE_SECTRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECTRA))}, + "ETHERTYPE_SECUREDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECUREDATA))}, + "ETHERTYPE_SGITW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SGITW))}, + "ETHERTYPE_SG_BOUNCE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_BOUNCE))}, + "ETHERTYPE_SG_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_DIAG))}, + "ETHERTYPE_SG_NETGAMES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_NETGAMES))}, + "ETHERTYPE_SG_RESV": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_RESV))}, + "ETHERTYPE_SIMNET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SIMNET))}, + "ETHERTYPE_SLOWPROTOCOLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SLOWPROTOCOLS))}, + "ETHERTYPE_SNA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNA))}, + "ETHERTYPE_SNMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNMP))}, + "ETHERTYPE_SONIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SONIX))}, + "ETHERTYPE_SPIDER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPIDER))}, + "ETHERTYPE_SPRITE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPRITE))}, + "ETHERTYPE_STP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_STP))}, + "ETHERTYPE_TALARIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARIS))}, + "ETHERTYPE_TALARISMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARISMC))}, + "ETHERTYPE_TCPCOMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPCOMP))}, + "ETHERTYPE_TCPSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPSM))}, + "ETHERTYPE_TEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TEC))}, + "ETHERTYPE_TIGAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TIGAN))}, + "ETHERTYPE_TRAIL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRAIL))}, + "ETHERTYPE_TRANSETHER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRANSETHER))}, + "ETHERTYPE_TYMSHARE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TYMSHARE))}, + "ETHERTYPE_UBBST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBBST))}, + "ETHERTYPE_UBDEBUG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDEBUG))}, + "ETHERTYPE_UBDIAGLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDIAGLOOP))}, + "ETHERTYPE_UBDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDL))}, + "ETHERTYPE_UBNIU": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNIU))}, + "ETHERTYPE_UBNMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNMC))}, + "ETHERTYPE_VALID": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VALID))}, + "ETHERTYPE_VARIAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VARIAN))}, + "ETHERTYPE_VAXELN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VAXELN))}, + "ETHERTYPE_VEECO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEECO))}, + "ETHERTYPE_VEXP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEXP))}, + "ETHERTYPE_VGLAB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VGLAB))}, + "ETHERTYPE_VINES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINES))}, + "ETHERTYPE_VINESECHO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESECHO))}, + "ETHERTYPE_VINESLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESLOOP))}, + "ETHERTYPE_VITAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VITAL))}, + "ETHERTYPE_VLAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLAN))}, + "ETHERTYPE_VLTLMAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLTLMAN))}, + "ETHERTYPE_VPROD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VPROD))}, + "ETHERTYPE_VURESERVED": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VURESERVED))}, + "ETHERTYPE_WATERLOO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WATERLOO))}, + "ETHERTYPE_WELLFLEET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WELLFLEET))}, + "ETHERTYPE_X25": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X25))}, + "ETHERTYPE_X75": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X75))}, + "ETHERTYPE_XNSSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XNSSM))}, + "ETHERTYPE_XTP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XTP))}, + "ETHER_ADDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ADDR_LEN))}, + "ETHER_CRC_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_LEN))}, + "ETHER_CRC_POLY_BE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_BE))}, + "ETHER_CRC_POLY_LE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_LE))}, + "ETHER_HDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_HDR_LEN))}, + "ETHER_MAX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN))}, + "ETHER_MAX_LEN_JUMBO": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN_JUMBO))}, + "ETHER_MIN_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MIN_LEN))}, + "ETHER_PPPOE_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_PPPOE_ENCAP_LEN))}, + "ETHER_TYPE_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_TYPE_LEN))}, + "ETHER_VLAN_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_VLAN_ENCAP_LEN))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_CLOSEM": {"untyped int", constant.MakeInt64(int64(q.F_CLOSEM))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FSCTL": {"untyped int", constant.MakeInt64(int64(q.F_FSCTL))}, + "F_FSDIRMASK": {"untyped int", constant.MakeInt64(int64(q.F_FSDIRMASK))}, + "F_FSIN": {"untyped int", constant.MakeInt64(int64(q.F_FSIN))}, + "F_FSINOUT": {"untyped int", constant.MakeInt64(int64(q.F_FSINOUT))}, + "F_FSOUT": {"untyped int", constant.MakeInt64(int64(q.F_FSOUT))}, + "F_FSPRIV": {"untyped int", constant.MakeInt64(int64(q.F_FSPRIV))}, + "F_FSVOID": {"untyped int", constant.MakeInt64(int64(q.F_FSVOID))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_GETNOSIGPIPE))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_MAXFD": {"untyped int", constant.MakeInt64(int64(q.F_MAXFD))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_PARAM_MASK": {"untyped int", constant.MakeInt64(int64(q.F_PARAM_MASK))}, + "F_PARAM_MAX": {"untyped int", constant.MakeInt64(int64(q.F_PARAM_MAX))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_SETNOSIGPIPE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFA_ROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_ROUTE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DOCSCABLEUPSTREAMCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAMCHANNEL))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ECONET": {"untyped int", constant.MakeInt64(int64(q.IFT_ECONET))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LINEGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_LINEGROUP))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_PON155": {"untyped int", constant.MakeInt64(int64(q.IFT_PON155))}, + "IFT_PON622": {"untyped int", constant.MakeInt64(int64(q.IFT_PON622))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPATM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPATM))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_Q2931": {"untyped int", constant.MakeInt64(int64(q.IFT_Q2931))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SIPSIG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPSIG))}, + "IFT_SIPTG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPTG))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_TELINK))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VIRTUALTG": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALTG))}, + "IFT_VOICEDID": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEDID))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEEMFGD": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEMFGD))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFGDEANA": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFGDEANA))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERCABLE": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERCABLE))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IPV6_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6_ICMP))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VRRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VRRP))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_EF": {"untyped int", constant.MakeInt64(int64(q.IP_EF))}, + "IP_ERRORMTU": {"untyped int", constant.MakeInt64(int64(q.IP_ERRORMTU))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINFRAGSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_MINFRAGSIZE))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ALIGNMENT_16MB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_16MB))}, + "MAP_ALIGNMENT_1TB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_1TB))}, + "MAP_ALIGNMENT_256TB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_256TB))}, + "MAP_ALIGNMENT_4GB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_4GB))}, + "MAP_ALIGNMENT_64KB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_64KB))}, + "MAP_ALIGNMENT_64PB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_64PB))}, + "MAP_ALIGNMENT_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_MASK))}, + "MAP_ALIGNMENT_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_SHIFT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_INHERIT_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_COPY))}, + "MAP_INHERIT_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DEFAULT))}, + "MAP_INHERIT_DONATE_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DONATE_COPY))}, + "MAP_INHERIT_NONE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_NONE))}, + "MAP_INHERIT_SHARE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_SHARE))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MAP_WIRED": {"untyped int", constant.MakeInt64(int64(q.MAP_WIRED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_BCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_BCAST))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONTROLMBUF": {"untyped int", constant.MakeInt64(int64(q.MSG_CONTROLMBUF))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_IOVUSRSPACE": {"untyped int", constant.MakeInt64(int64(q.MSG_IOVUSRSPACE))}, + "MSG_LENUSRSPACE": {"untyped int", constant.MakeInt64(int64(q.MSG_LENUSRSPACE))}, + "MSG_MCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_MCAST))}, + "MSG_NAMEMBUF": {"untyped int", constant.MakeInt64(int64(q.MSG_NAMEMBUF))}, + "MSG_NBIO": {"untyped int", constant.MakeInt64(int64(q.MSG_NBIO))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_USERFLAGS": {"untyped int", constant.MakeInt64(int64(q.MSG_USERFLAGS))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_OIFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_OIFLIST))}, + "NET_RT_OOIFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_OOIFLIST))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFIOGETBMAP": {"untyped int", constant.MakeInt64(int64(q.OFIOGETBMAP))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_ALT_IO": {"untyped int", constant.MakeInt64(int64(q.O_ALT_IO))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.O_NOSIGPIPE))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PRI_IOFLUSH": {"untyped int", constant.MakeInt64(int64(q.PRI_IOFLUSH))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_TAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_TAG))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_TAG": {"untyped int", constant.MakeInt64(int64(q.RTA_TAG))}, + "RTF_ANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTF_ANNOUNCE))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_SRC": {"untyped int", constant.MakeInt64(int64(q.RTF_SRC))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_CHGADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_CHGADDR))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LLINFO_UPD": {"untyped int", constant.MakeInt64(int64(q.RTM_LLINFO_UPD))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_OIFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_OIFINFO))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_OOIFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_OOIFINFO))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_SETGATE": {"untyped int", constant.MakeInt64(int64(q.RTM_SETGATE))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFSYNC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFADDRPREF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDRPREF))}, + "SIOCGIFALIAS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFALIAS))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDLT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDLT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLINKSTR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLINKSTR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGVH": {"untyped int", constant.MakeInt64(int64(q.SIOCGVH))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCINITIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCINITIFADDR))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFSYNC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFADDRPREF": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDRPREF))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLINKSTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLINKSTR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSVH": {"untyped int", constant.MakeInt64(int64(q.SIOCSVH))}, + "SIOCZIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCZIFDATA))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_FLAGS_MASK": {"untyped int", constant.MakeInt64(int64(q.SOCK_FLAGS_MASK))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SOCK_NOSIGPIPE))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NOHEADER": {"untyped int", constant.MakeInt64(int64(q.SO_NOHEADER))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_OVERFLOWED": {"untyped int", constant.MakeInt64(int64(q.SO_OVERFLOWED))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SYSCTL_VERSION": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERSION))}, + "SYSCTL_VERS_0": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_0))}, + "SYSCTL_VERS_1": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_1))}, + "SYSCTL_VERS_MASK": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_MASK))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FD))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_LINK))}, + "SYS_EXTATTR_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FD))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_LINK))}, + "SYS_EXTATTR_LIST_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FD))}, + "SYS_EXTATTR_LIST_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FILE))}, + "SYS_EXTATTR_LIST_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_LINK))}, + "SYS_EXTATTR_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FD))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTATTR_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_LINK))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHROOT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FEXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_FEXECVE))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FKTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_FKTRACE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATVFS1": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATVFS1))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FSYNC_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC_RANGE))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCONTEXT))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETVFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETVFSSTAT))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KQUEUE1": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE1))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MODCTL))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_NTP_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_GETTIME))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_PACCEPT))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PMC_CONTROL": {"untyped int", constant.MakeInt64(int64(q.SYS_PMC_CONTROL))}, + "SYS_PMC_GET_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_PMC_GET_INFO))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POLLTS": {"untyped int", constant.MakeInt64(int64(q.SYS_POLLTS))}, + "SYS_POSIX_FADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FADVISE))}, + "SYS_POSIX_SPAWN": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_SPAWN))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PSET_ASSIGN": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_ASSIGN))}, + "SYS_PSET_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_CREATE))}, + "SYS_PSET_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_DESTROY))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_RASCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_RASCTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMCONFIG": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCONFIG))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETCONTEXT))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGQUEUEINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATVFS1": {"untyped int", constant.MakeInt64(int64(q.SYS_STATVFS1))}, + "SYS_SWAPCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCTL))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_VADVISE))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LWP_CONTINUE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CONTINUE))}, + "SYS__LWP_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CREATE))}, + "SYS__LWP_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CTL))}, + "SYS__LWP_DETACH": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_DETACH))}, + "SYS__LWP_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_EXIT))}, + "SYS__LWP_GETNAME": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_GETNAME))}, + "SYS__LWP_GETPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_GETPRIVATE))}, + "SYS__LWP_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_KILL))}, + "SYS__LWP_PARK": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_PARK))}, + "SYS__LWP_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SELF))}, + "SYS__LWP_SETNAME": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SETNAME))}, + "SYS__LWP_SETPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SETPRIVATE))}, + "SYS__LWP_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SUSPEND))}, + "SYS__LWP_UNPARK": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_UNPARK))}, + "SYS__LWP_UNPARK_ALL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_UNPARK_ALL))}, + "SYS__LWP_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_WAIT))}, + "SYS__LWP_WAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_WAKEUP))}, + "SYS__PSET_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS__PSET_BIND))}, + "SYS__SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_GETAFFINITY))}, + "SYS__SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_GETPARAM))}, + "SYS__SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_SETAFFINITY))}, + "SYS__SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_SETPARAM))}, + "SYS___CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS___CLONE))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS___GETLOGIN))}, + "SYS___POSIX_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_CHOWN))}, + "SYS___POSIX_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_FCHOWN))}, + "SYS___POSIX_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_LCHOWN))}, + "SYS___POSIX_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_RENAME))}, + "SYS___QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS___QUOTACTL))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS___SETLOGIN))}, + "SYS___SIGACTION_SIGTRAMP": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGACTION_SIGTRAMP))}, + "SYS___SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGTIMEDWAIT))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_ARCH1": {"untyped int", constant.MakeInt64(int64(q.S_ARCH1))}, + "S_ARCH2": {"untyped int", constant.MakeInt64(int64(q.S_ARCH2))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFWHT": {"untyped int", constant.MakeInt64(int64(q.S_IFWHT))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISTXT": {"untyped int", constant.MakeInt64(int64(q.S_ISTXT))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "S_LOGIN_SET": {"untyped int", constant.MakeInt64(int64(q.S_LOGIN_SET))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGCTL": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGCTL))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDCDTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCDCDTIMESTAMP))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLAG_CDTRCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CDTRCTS))}, + "TIOCFLAG_CLOCAL": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CLOCAL))}, + "TIOCFLAG_CRTSCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CRTSCTS))}, + "TIOCFLAG_MDMBUF": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_MDMBUF))}, + "TIOCFLAG_SOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_SOFTCAR))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCGFLAGS))}, + "TIOCGLINED": {"untyped int", constant.MakeInt64(int64(q.TIOCGLINED))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGQSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGQSIZE))}, + "TIOCGRANTPT": {"untyped int", constant.MakeInt64(int64(q.TIOCGRANTPT))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGSIZE))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCPTMGET))}, + "TIOCPTSNAME": {"untyped int", constant.MakeInt64(int64(q.TIOCPTSNAME))}, + "TIOCRCVFRAME": {"untyped int", constant.MakeInt64(int64(q.TIOCRCVFRAME))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCSFLAGS))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLINED": {"untyped int", constant.MakeInt64(int64(q.TIOCSLINED))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSQSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCSQSIZE))}, + "TIOCSSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCSSIZE))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TIOCXMTFRAME": {"untyped int", constant.MakeInt64(int64(q.TIOCXMTFRAME))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WALLSIG": {"untyped int", constant.MakeInt64(int64(q.WALLSIG))}, + "WALTSIG": {"untyped int", constant.MakeInt64(int64(q.WALTSIG))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WNOZOMBIE": {"untyped int", constant.MakeInt64(int64(q.WNOZOMBIE))}, + "WOPTSCHECKED": {"untyped int", constant.MakeInt64(int64(q.WOPTSCHECKED))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_openbsd_386.go b/pkg/syscall/go122_export_openbsd_386.go new file mode 100755 index 00000000..215fc5b9 --- /dev/null +++ b/pkg/syscall/go122_export_openbsd_386.go @@ -0,0 +1,1969 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Mclpool": reflect.TypeOf((*q.Mclpool)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EIPSEC": {reflect.TypeOf(q.EIPSEC), constant.MakeInt64(int64(q.EIPSEC))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_ENCAP": {"untyped int", constant.MakeInt64(int64(q.AF_ENCAP))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FRELAY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRELAY))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRFILT))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCGFILDROP))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRFILT))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCSFILDROP))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIRECTION_IN": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_IN))}, + "BPF_DIRECTION_OUT": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_OUT))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DIOCOSFPFLUSH": {"untyped int", constant.MakeInt64(int64(q.DIOCOSFPFLUSH))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMT_TAGOVF": {"untyped int", constant.MakeInt64(int64(q.EMT_TAGOVF))}, + "EMUL_ENABLED": {"untyped int", constant.MakeInt64(int64(q.EMUL_ENABLED))}, + "EMUL_NATIVE": {"untyped int", constant.MakeInt64(int64(q.EMUL_NATIVE))}, + "ENDRUNDISC": {"untyped int", constant.MakeInt64(int64(q.ENDRUNDISC))}, + "ETHERMIN": {"untyped int", constant.MakeInt64(int64(q.ETHERMIN))}, + "ETHERMTU": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU))}, + "ETHERTYPE_8023": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_8023))}, + "ETHERTYPE_AARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AARP))}, + "ETHERTYPE_ACCTON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ACCTON))}, + "ETHERTYPE_AEONIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AEONIC))}, + "ETHERTYPE_ALPHA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ALPHA))}, + "ETHERTYPE_AMBER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMBER))}, + "ETHERTYPE_AMOEBA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMOEBA))}, + "ETHERTYPE_AOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AOE))}, + "ETHERTYPE_APOLLO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLO))}, + "ETHERTYPE_APOLLODOMAIN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLODOMAIN))}, + "ETHERTYPE_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLETALK))}, + "ETHERTYPE_APPLITEK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLITEK))}, + "ETHERTYPE_ARGONAUT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARGONAUT))}, + "ETHERTYPE_ARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARP))}, + "ETHERTYPE_AT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AT))}, + "ETHERTYPE_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATALK))}, + "ETHERTYPE_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATOMIC))}, + "ETHERTYPE_ATT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATT))}, + "ETHERTYPE_ATTSTANFORD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATTSTANFORD))}, + "ETHERTYPE_AUTOPHON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AUTOPHON))}, + "ETHERTYPE_AXIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AXIS))}, + "ETHERTYPE_BCLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BCLOOP))}, + "ETHERTYPE_BOFL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BOFL))}, + "ETHERTYPE_CABLETRON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CABLETRON))}, + "ETHERTYPE_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CHAOS))}, + "ETHERTYPE_COMDESIGN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMDESIGN))}, + "ETHERTYPE_COMPUGRAPHIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMPUGRAPHIC))}, + "ETHERTYPE_COUNTERPOINT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COUNTERPOINT))}, + "ETHERTYPE_CRONUS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUS))}, + "ETHERTYPE_CRONUSVLN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUSVLN))}, + "ETHERTYPE_DCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DCA))}, + "ETHERTYPE_DDE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DDE))}, + "ETHERTYPE_DEBNI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DEBNI))}, + "ETHERTYPE_DECAM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECAM))}, + "ETHERTYPE_DECCUST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECCUST))}, + "ETHERTYPE_DECDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDIAG))}, + "ETHERTYPE_DECDNS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDNS))}, + "ETHERTYPE_DECDTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDTS))}, + "ETHERTYPE_DECEXPER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECEXPER))}, + "ETHERTYPE_DECLAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLAST))}, + "ETHERTYPE_DECLTM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLTM))}, + "ETHERTYPE_DECMUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECMUMPS))}, + "ETHERTYPE_DECNETBIOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECNETBIOS))}, + "ETHERTYPE_DELTACON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DELTACON))}, + "ETHERTYPE_DIDDLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DIDDLE))}, + "ETHERTYPE_DLOG1": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG1))}, + "ETHERTYPE_DLOG2": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG2))}, + "ETHERTYPE_DN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DN))}, + "ETHERTYPE_DOGFIGHT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DOGFIGHT))}, + "ETHERTYPE_DSMD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DSMD))}, + "ETHERTYPE_ECMA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ECMA))}, + "ETHERTYPE_ENCRYPT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ENCRYPT))}, + "ETHERTYPE_ES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ES))}, + "ETHERTYPE_EXCELAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXCELAN))}, + "ETHERTYPE_EXPERDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXPERDATA))}, + "ETHERTYPE_FLIP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLIP))}, + "ETHERTYPE_FLOWCONTROL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLOWCONTROL))}, + "ETHERTYPE_FRARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FRARP))}, + "ETHERTYPE_GENDYN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_GENDYN))}, + "ETHERTYPE_HAYES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HAYES))}, + "ETHERTYPE_HIPPI_FP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HIPPI_FP))}, + "ETHERTYPE_HITACHI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HITACHI))}, + "ETHERTYPE_HP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HP))}, + "ETHERTYPE_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUP))}, + "ETHERTYPE_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUPAT))}, + "ETHERTYPE_IMLBL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBL))}, + "ETHERTYPE_IMLBLDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBLDIAG))}, + "ETHERTYPE_IP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IP))}, + "ETHERTYPE_IPAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPAS))}, + "ETHERTYPE_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPV6))}, + "ETHERTYPE_IPX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPX))}, + "ETHERTYPE_IPXNEW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPXNEW))}, + "ETHERTYPE_KALPANA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_KALPANA))}, + "ETHERTYPE_LANBRIDGE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANBRIDGE))}, + "ETHERTYPE_LANPROBE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANPROBE))}, + "ETHERTYPE_LAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LAT))}, + "ETHERTYPE_LBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LBACK))}, + "ETHERTYPE_LITTLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LITTLE))}, + "ETHERTYPE_LLDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LLDP))}, + "ETHERTYPE_LOGICRAFT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOGICRAFT))}, + "ETHERTYPE_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOOPBACK))}, + "ETHERTYPE_MATRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MATRA))}, + "ETHERTYPE_MAX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MAX))}, + "ETHERTYPE_MERIT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MERIT))}, + "ETHERTYPE_MICP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MICP))}, + "ETHERTYPE_MOPDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPDL))}, + "ETHERTYPE_MOPRC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPRC))}, + "ETHERTYPE_MOTOROLA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOTOROLA))}, + "ETHERTYPE_MPLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS))}, + "ETHERTYPE_MPLS_MCAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS_MCAST))}, + "ETHERTYPE_MUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MUMPS))}, + "ETHERTYPE_NBPCC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCC))}, + "ETHERTYPE_NBPCLAIM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLAIM))}, + "ETHERTYPE_NBPCLREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLREQ))}, + "ETHERTYPE_NBPCLRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLRSP))}, + "ETHERTYPE_NBPCREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCREQ))}, + "ETHERTYPE_NBPCRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCRSP))}, + "ETHERTYPE_NBPDG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDG))}, + "ETHERTYPE_NBPDGB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDGB))}, + "ETHERTYPE_NBPDLTE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDLTE))}, + "ETHERTYPE_NBPRAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAR))}, + "ETHERTYPE_NBPRAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAS))}, + "ETHERTYPE_NBPRST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRST))}, + "ETHERTYPE_NBPSCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPSCD))}, + "ETHERTYPE_NBPVCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPVCD))}, + "ETHERTYPE_NBS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBS))}, + "ETHERTYPE_NCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NCD))}, + "ETHERTYPE_NESTAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NESTAR))}, + "ETHERTYPE_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NETBEUI))}, + "ETHERTYPE_NOVELL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NOVELL))}, + "ETHERTYPE_NS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NS))}, + "ETHERTYPE_NSAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSAT))}, + "ETHERTYPE_NSCOMPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSCOMPAT))}, + "ETHERTYPE_NTRAILER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NTRAILER))}, + "ETHERTYPE_OS9": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9))}, + "ETHERTYPE_OS9NET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9NET))}, + "ETHERTYPE_PACER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PACER))}, + "ETHERTYPE_PAE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PAE))}, + "ETHERTYPE_PCS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PCS))}, + "ETHERTYPE_PLANNING": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PLANNING))}, + "ETHERTYPE_PPP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPP))}, + "ETHERTYPE_PPPOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOE))}, + "ETHERTYPE_PPPOEDISC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOEDISC))}, + "ETHERTYPE_PRIMENTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PRIMENTS))}, + "ETHERTYPE_PUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUP))}, + "ETHERTYPE_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUPAT))}, + "ETHERTYPE_QINQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_QINQ))}, + "ETHERTYPE_RACAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RACAL))}, + "ETHERTYPE_RATIONAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RATIONAL))}, + "ETHERTYPE_RAWFR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RAWFR))}, + "ETHERTYPE_RCL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RCL))}, + "ETHERTYPE_RDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RDP))}, + "ETHERTYPE_RETIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RETIX))}, + "ETHERTYPE_REVARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_REVARP))}, + "ETHERTYPE_SCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SCA))}, + "ETHERTYPE_SECTRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECTRA))}, + "ETHERTYPE_SECUREDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECUREDATA))}, + "ETHERTYPE_SGITW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SGITW))}, + "ETHERTYPE_SG_BOUNCE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_BOUNCE))}, + "ETHERTYPE_SG_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_DIAG))}, + "ETHERTYPE_SG_NETGAMES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_NETGAMES))}, + "ETHERTYPE_SG_RESV": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_RESV))}, + "ETHERTYPE_SIMNET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SIMNET))}, + "ETHERTYPE_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SLOW))}, + "ETHERTYPE_SNA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNA))}, + "ETHERTYPE_SNMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNMP))}, + "ETHERTYPE_SONIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SONIX))}, + "ETHERTYPE_SPIDER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPIDER))}, + "ETHERTYPE_SPRITE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPRITE))}, + "ETHERTYPE_STP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_STP))}, + "ETHERTYPE_TALARIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARIS))}, + "ETHERTYPE_TALARISMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARISMC))}, + "ETHERTYPE_TCPCOMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPCOMP))}, + "ETHERTYPE_TCPSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPSM))}, + "ETHERTYPE_TEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TEC))}, + "ETHERTYPE_TIGAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TIGAN))}, + "ETHERTYPE_TRAIL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRAIL))}, + "ETHERTYPE_TRANSETHER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRANSETHER))}, + "ETHERTYPE_TYMSHARE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TYMSHARE))}, + "ETHERTYPE_UBBST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBBST))}, + "ETHERTYPE_UBDEBUG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDEBUG))}, + "ETHERTYPE_UBDIAGLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDIAGLOOP))}, + "ETHERTYPE_UBDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDL))}, + "ETHERTYPE_UBNIU": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNIU))}, + "ETHERTYPE_UBNMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNMC))}, + "ETHERTYPE_VALID": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VALID))}, + "ETHERTYPE_VARIAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VARIAN))}, + "ETHERTYPE_VAXELN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VAXELN))}, + "ETHERTYPE_VEECO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEECO))}, + "ETHERTYPE_VEXP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEXP))}, + "ETHERTYPE_VGLAB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VGLAB))}, + "ETHERTYPE_VINES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINES))}, + "ETHERTYPE_VINESECHO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESECHO))}, + "ETHERTYPE_VINESLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESLOOP))}, + "ETHERTYPE_VITAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VITAL))}, + "ETHERTYPE_VLAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLAN))}, + "ETHERTYPE_VLTLMAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLTLMAN))}, + "ETHERTYPE_VPROD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VPROD))}, + "ETHERTYPE_VURESERVED": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VURESERVED))}, + "ETHERTYPE_WATERLOO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WATERLOO))}, + "ETHERTYPE_WELLFLEET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WELLFLEET))}, + "ETHERTYPE_X25": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X25))}, + "ETHERTYPE_X75": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X75))}, + "ETHERTYPE_XNSSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XNSSM))}, + "ETHERTYPE_XTP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XTP))}, + "ETHER_ADDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ADDR_LEN))}, + "ETHER_ALIGN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ALIGN))}, + "ETHER_CRC_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_LEN))}, + "ETHER_CRC_POLY_BE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_BE))}, + "ETHER_CRC_POLY_LE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_LE))}, + "ETHER_HDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_HDR_LEN))}, + "ETHER_MAX_DIX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_DIX_LEN))}, + "ETHER_MAX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN))}, + "ETHER_MIN_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MIN_LEN))}, + "ETHER_TYPE_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_TYPE_LEN))}, + "ETHER_VLAN_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_VLAN_ENCAP_LEN))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFA_ROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_ROUTE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.IFT_BLUETOOTH))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DOCSCABLEUPSTREAMCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAMCHANNEL))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DUMMY": {"untyped int", constant.MakeInt64(int64(q.IFT_DUMMY))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ECONET": {"untyped int", constant.MakeInt64(int64(q.IFT_ECONET))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LINEGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_LINEGROUP))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFLOW": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOW))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_PON155": {"untyped int", constant.MakeInt64(int64(q.IFT_PON155))}, + "IFT_PON622": {"untyped int", constant.MakeInt64(int64(q.IFT_PON622))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPATM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPATM))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_Q2931": {"untyped int", constant.MakeInt64(int64(q.IFT_Q2931))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SIPSIG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPSIG))}, + "IFT_SIPTG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPTG))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_TELINK))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VIRTUALTG": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALTG))}, + "IFT_VOICEDID": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEDID))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEEMFGD": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEMFGD))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFGDEANA": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFGDEANA))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERCABLE": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERCABLE))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_HOST))}, + "IN_RFC3021_NET": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NET))}, + "IN_RFC3021_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NSHIFT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DIVERT_INIT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT_INIT))}, + "IPPROTO_DIVERT_RESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT_RESP))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTH_LEVEL))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_NETWORK_LEVEL))}, + "IPV6_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_TRANS_LEVEL))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPCOMP_LEVEL))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_OPTIONS))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IPV6_PIPEX))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTPORT))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTABLE))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_AUTH_LEVEL))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DIVERTFL": {"untyped int", constant.MakeInt64(int64(q.IP_DIVERTFL))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_NETWORK_LEVEL))}, + "IP_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_TRANS_LEVEL))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_IPCOMP_LEVEL))}, + "IP_IPSECFLOWINFO": {"untyped int", constant.MakeInt64(int64(q.IP_IPSECFLOWINFO))}, + "IP_IPSEC_LOCAL_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_AUTH))}, + "IP_IPSEC_LOCAL_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_CRED))}, + "IP_IPSEC_LOCAL_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_ID))}, + "IP_IPSEC_REMOTE_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_AUTH))}, + "IP_IPSEC_REMOTE_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_CRED))}, + "IP_IPSEC_REMOTE_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_ID))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IP_PIPEX))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTPORT))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVRTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRTABLE))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RTABLE))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LCNT_OVERLOAD_FLUSH": {"untyped int", constant.MakeInt64(int64(q.LCNT_OVERLOAD_FLUSH))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_FLAGMASK": {"untyped int", constant.MakeInt64(int64(q.MAP_FLAGMASK))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_INHERIT_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_COPY))}, + "MAP_INHERIT_DONATE_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DONATE_COPY))}, + "MAP_INHERIT_NONE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_NONE))}, + "MAP_INHERIT_SHARE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_SHARE))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_BCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_BCAST))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_MCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_MCAST))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_STATS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_STATS))}, + "NET_RT_TABLE": {"untyped int", constant.MakeInt64(int64(q.NET_RT_TABLE))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EOF": {"untyped int", constant.MakeInt64(int64(q.NOTE_EOF))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRUNCATE))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PF_FLUSH": {"untyped int", constant.MakeInt64(int64(q.PF_FLUSH))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_MASK": {"untyped int", constant.MakeInt64(int64(q.PT_MASK))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTAX_LABEL))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_SRC": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRC))}, + "RTAX_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRCMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTA_LABEL))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_SRCMASK))}, + "RTF_ANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTF_ANNOUNCE))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MPATH": {"untyped int", constant.MakeInt64(int64(q.RTF_MPATH))}, + "RTF_MPLS": {"untyped int", constant.MakeInt64(int64(q.RTF_MPLS))}, + "RTF_PERMANENT_ARP": {"untyped int", constant.MakeInt64(int64(q.RTF_PERMANENT_ARP))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_SOURCE": {"untyped int", constant.MakeInt64(int64(q.RTF_SOURCE))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.RTF_TUNNEL))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_USETRAILERS": {"untyped int", constant.MakeInt64(int64(q.RTF_USETRAILERS))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DESYNC": {"untyped int", constant.MakeInt64(int64(q.RTM_DESYNC))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MAXSIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_MAXSIZE))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RT_TABLEID_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_MAX))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCBRDGADD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADD))}, + "SIOCBRDGADDS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADDS))}, + "SIOCBRDGARL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGARL))}, + "SIOCBRDGDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDADDR))}, + "SIOCBRDGDEL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDEL))}, + "SIOCBRDGDELS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDELS))}, + "SIOCBRDGFLUSH": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFLUSH))}, + "SIOCBRDGFRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFRL))}, + "SIOCBRDGGCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGCACHE))}, + "SIOCBRDGGFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGFD))}, + "SIOCBRDGGHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGHT))}, + "SIOCBRDGGIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGIFFLGS))}, + "SIOCBRDGGMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGMA))}, + "SIOCBRDGGPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPARAM))}, + "SIOCBRDGGPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPRI))}, + "SIOCBRDGGRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGRL))}, + "SIOCBRDGGSIFS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGSIFS))}, + "SIOCBRDGGTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGTO))}, + "SIOCBRDGIFS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGIFS))}, + "SIOCBRDGRTS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGRTS))}, + "SIOCBRDGSADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSADDR))}, + "SIOCBRDGSCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSCACHE))}, + "SIOCBRDGSFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSFD))}, + "SIOCBRDGSHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSHT))}, + "SIOCBRDGSIFCOST": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFCOST))}, + "SIOCBRDGSIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFFLGS))}, + "SIOCBRDGSIFPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFPRIO))}, + "SIOCBRDGSMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSMA))}, + "SIOCBRDGSPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPRI))}, + "SIOCBRDGSPROTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPROTO))}, + "SIOCBRDGSTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTO))}, + "SIOCBRDGSTXHC": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTXHC))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGETKALIVE))}, + "SIOCGETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGETLABEL))}, + "SIOCGETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFLOW))}, + "SIOCGETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFSYNC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVLAN))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFASYNCMAP))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGATTR))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFHARDMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHARDMTU))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPRIORITY))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRDOMAIN))}, + "SIOCGIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRTLABEL))}, + "SIOCGIFTIMESLOT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTIMESLOT))}, + "SIOCGIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFXFLAGS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYRTABLE))}, + "SIOCGLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYTTL))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSPPPPARAMS))}, + "SIOCGVH": {"untyped int", constant.MakeInt64(int64(q.SIOCGVH))}, + "SIOCGVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCGVNETID))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSETKALIVE))}, + "SIOCSETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSETLABEL))}, + "SIOCSETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFLOW))}, + "SIOCSETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFSYNC))}, + "SIOCSETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSETVLAN))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFASYNCMAP))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGATTR))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPRIORITY))}, + "SIOCSIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRDOMAIN))}, + "SIOCSIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRTLABEL))}, + "SIOCSIFTIMESLOT": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTIMESLOT))}, + "SIOCSIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFXFLAGS))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYRTABLE))}, + "SIOCSLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYTTL))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCSSPPPPARAMS))}, + "SIOCSVH": {"untyped int", constant.MakeInt64(int64(q.SIOCSVH))}, + "SIOCSVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCSVNETID))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_BINDANY": {"untyped int", constant.MakeInt64(int64(q.SO_BINDANY))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NETPROC": {"untyped int", constant.MakeInt64(int64(q.SO_NETPROC))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RTABLE": {"untyped int", constant.MakeInt64(int64(q.SO_RTABLE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SO_SPLICE))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJFREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJFREQ))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDTABLECOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLECOUNT))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRTABLE))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTHRID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTHRID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQUERY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQUERY))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRTABLE))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCTL))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___GET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___GET_TCB))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___SET_TCB))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "SYS___TFORK": {"untyped int", constant.MakeInt64(int64(q.SYS___TFORK))}, + "SYS___THREXIT": {"untyped int", constant.MakeInt64(int64(q.SYS___THREXIT))}, + "SYS___THRSIGDIVERT": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSIGDIVERT))}, + "SYS___THRSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSLEEP))}, + "SYS___THRWAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRWAKEUP))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_NSTATES": {"untyped int", constant.MakeInt64(int64(q.TCP_NSTATES))}, + "TCP_SACK_ENABLE": {"untyped int", constant.MakeInt64(int64(q.TCP_SACK_ENABLE))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLAG_CLOCAL": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CLOCAL))}, + "TIOCFLAG_CRTSCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CRTSCTS))}, + "TIOCFLAG_MDMBUF": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_MDMBUF))}, + "TIOCFLAG_PPS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_PPS))}, + "TIOCFLAG_SOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_SOFTCAR))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCGFLAGS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCGTSTAMP))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCSFLAGS))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTSTAMP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALTSIG": {"untyped int", constant.MakeInt64(int64(q.WALTSIG))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_openbsd_amd64.go b/pkg/syscall/go122_export_openbsd_amd64.go new file mode 100755 index 00000000..88a9e6b3 --- /dev/null +++ b/pkg/syscall/go122_export_openbsd_amd64.go @@ -0,0 +1,1968 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Mclpool": reflect.TypeOf((*q.Mclpool)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EIPSEC": {reflect.TypeOf(q.EIPSEC), constant.MakeInt64(int64(q.EIPSEC))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_ENCAP": {"untyped int", constant.MakeInt64(int64(q.AF_ENCAP))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FRELAY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRELAY))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRFILT))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCGFILDROP))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRFILT))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCSFILDROP))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIRECTION_IN": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_IN))}, + "BPF_DIRECTION_OUT": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_OUT))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DIOCOSFPFLUSH": {"untyped int", constant.MakeInt64(int64(q.DIOCOSFPFLUSH))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMT_TAGOVF": {"untyped int", constant.MakeInt64(int64(q.EMT_TAGOVF))}, + "EMUL_ENABLED": {"untyped int", constant.MakeInt64(int64(q.EMUL_ENABLED))}, + "EMUL_NATIVE": {"untyped int", constant.MakeInt64(int64(q.EMUL_NATIVE))}, + "ENDRUNDISC": {"untyped int", constant.MakeInt64(int64(q.ENDRUNDISC))}, + "ETHERMIN": {"untyped int", constant.MakeInt64(int64(q.ETHERMIN))}, + "ETHERMTU": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU))}, + "ETHERTYPE_8023": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_8023))}, + "ETHERTYPE_AARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AARP))}, + "ETHERTYPE_ACCTON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ACCTON))}, + "ETHERTYPE_AEONIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AEONIC))}, + "ETHERTYPE_ALPHA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ALPHA))}, + "ETHERTYPE_AMBER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMBER))}, + "ETHERTYPE_AMOEBA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMOEBA))}, + "ETHERTYPE_AOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AOE))}, + "ETHERTYPE_APOLLO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLO))}, + "ETHERTYPE_APOLLODOMAIN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLODOMAIN))}, + "ETHERTYPE_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLETALK))}, + "ETHERTYPE_APPLITEK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLITEK))}, + "ETHERTYPE_ARGONAUT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARGONAUT))}, + "ETHERTYPE_ARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARP))}, + "ETHERTYPE_AT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AT))}, + "ETHERTYPE_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATALK))}, + "ETHERTYPE_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATOMIC))}, + "ETHERTYPE_ATT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATT))}, + "ETHERTYPE_ATTSTANFORD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATTSTANFORD))}, + "ETHERTYPE_AUTOPHON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AUTOPHON))}, + "ETHERTYPE_AXIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AXIS))}, + "ETHERTYPE_BCLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BCLOOP))}, + "ETHERTYPE_BOFL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BOFL))}, + "ETHERTYPE_CABLETRON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CABLETRON))}, + "ETHERTYPE_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CHAOS))}, + "ETHERTYPE_COMDESIGN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMDESIGN))}, + "ETHERTYPE_COMPUGRAPHIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMPUGRAPHIC))}, + "ETHERTYPE_COUNTERPOINT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COUNTERPOINT))}, + "ETHERTYPE_CRONUS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUS))}, + "ETHERTYPE_CRONUSVLN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUSVLN))}, + "ETHERTYPE_DCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DCA))}, + "ETHERTYPE_DDE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DDE))}, + "ETHERTYPE_DEBNI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DEBNI))}, + "ETHERTYPE_DECAM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECAM))}, + "ETHERTYPE_DECCUST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECCUST))}, + "ETHERTYPE_DECDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDIAG))}, + "ETHERTYPE_DECDNS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDNS))}, + "ETHERTYPE_DECDTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDTS))}, + "ETHERTYPE_DECEXPER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECEXPER))}, + "ETHERTYPE_DECLAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLAST))}, + "ETHERTYPE_DECLTM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLTM))}, + "ETHERTYPE_DECMUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECMUMPS))}, + "ETHERTYPE_DECNETBIOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECNETBIOS))}, + "ETHERTYPE_DELTACON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DELTACON))}, + "ETHERTYPE_DIDDLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DIDDLE))}, + "ETHERTYPE_DLOG1": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG1))}, + "ETHERTYPE_DLOG2": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG2))}, + "ETHERTYPE_DN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DN))}, + "ETHERTYPE_DOGFIGHT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DOGFIGHT))}, + "ETHERTYPE_DSMD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DSMD))}, + "ETHERTYPE_ECMA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ECMA))}, + "ETHERTYPE_ENCRYPT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ENCRYPT))}, + "ETHERTYPE_ES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ES))}, + "ETHERTYPE_EXCELAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXCELAN))}, + "ETHERTYPE_EXPERDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXPERDATA))}, + "ETHERTYPE_FLIP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLIP))}, + "ETHERTYPE_FLOWCONTROL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLOWCONTROL))}, + "ETHERTYPE_FRARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FRARP))}, + "ETHERTYPE_GENDYN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_GENDYN))}, + "ETHERTYPE_HAYES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HAYES))}, + "ETHERTYPE_HIPPI_FP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HIPPI_FP))}, + "ETHERTYPE_HITACHI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HITACHI))}, + "ETHERTYPE_HP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HP))}, + "ETHERTYPE_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUP))}, + "ETHERTYPE_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUPAT))}, + "ETHERTYPE_IMLBL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBL))}, + "ETHERTYPE_IMLBLDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBLDIAG))}, + "ETHERTYPE_IP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IP))}, + "ETHERTYPE_IPAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPAS))}, + "ETHERTYPE_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPV6))}, + "ETHERTYPE_IPX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPX))}, + "ETHERTYPE_IPXNEW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPXNEW))}, + "ETHERTYPE_KALPANA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_KALPANA))}, + "ETHERTYPE_LANBRIDGE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANBRIDGE))}, + "ETHERTYPE_LANPROBE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANPROBE))}, + "ETHERTYPE_LAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LAT))}, + "ETHERTYPE_LBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LBACK))}, + "ETHERTYPE_LITTLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LITTLE))}, + "ETHERTYPE_LLDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LLDP))}, + "ETHERTYPE_LOGICRAFT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOGICRAFT))}, + "ETHERTYPE_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOOPBACK))}, + "ETHERTYPE_MATRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MATRA))}, + "ETHERTYPE_MAX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MAX))}, + "ETHERTYPE_MERIT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MERIT))}, + "ETHERTYPE_MICP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MICP))}, + "ETHERTYPE_MOPDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPDL))}, + "ETHERTYPE_MOPRC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPRC))}, + "ETHERTYPE_MOTOROLA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOTOROLA))}, + "ETHERTYPE_MPLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS))}, + "ETHERTYPE_MPLS_MCAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS_MCAST))}, + "ETHERTYPE_MUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MUMPS))}, + "ETHERTYPE_NBPCC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCC))}, + "ETHERTYPE_NBPCLAIM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLAIM))}, + "ETHERTYPE_NBPCLREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLREQ))}, + "ETHERTYPE_NBPCLRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLRSP))}, + "ETHERTYPE_NBPCREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCREQ))}, + "ETHERTYPE_NBPCRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCRSP))}, + "ETHERTYPE_NBPDG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDG))}, + "ETHERTYPE_NBPDGB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDGB))}, + "ETHERTYPE_NBPDLTE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDLTE))}, + "ETHERTYPE_NBPRAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAR))}, + "ETHERTYPE_NBPRAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAS))}, + "ETHERTYPE_NBPRST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRST))}, + "ETHERTYPE_NBPSCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPSCD))}, + "ETHERTYPE_NBPVCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPVCD))}, + "ETHERTYPE_NBS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBS))}, + "ETHERTYPE_NCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NCD))}, + "ETHERTYPE_NESTAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NESTAR))}, + "ETHERTYPE_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NETBEUI))}, + "ETHERTYPE_NOVELL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NOVELL))}, + "ETHERTYPE_NS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NS))}, + "ETHERTYPE_NSAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSAT))}, + "ETHERTYPE_NSCOMPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSCOMPAT))}, + "ETHERTYPE_NTRAILER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NTRAILER))}, + "ETHERTYPE_OS9": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9))}, + "ETHERTYPE_OS9NET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9NET))}, + "ETHERTYPE_PACER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PACER))}, + "ETHERTYPE_PAE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PAE))}, + "ETHERTYPE_PCS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PCS))}, + "ETHERTYPE_PLANNING": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PLANNING))}, + "ETHERTYPE_PPP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPP))}, + "ETHERTYPE_PPPOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOE))}, + "ETHERTYPE_PPPOEDISC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOEDISC))}, + "ETHERTYPE_PRIMENTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PRIMENTS))}, + "ETHERTYPE_PUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUP))}, + "ETHERTYPE_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUPAT))}, + "ETHERTYPE_QINQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_QINQ))}, + "ETHERTYPE_RACAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RACAL))}, + "ETHERTYPE_RATIONAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RATIONAL))}, + "ETHERTYPE_RAWFR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RAWFR))}, + "ETHERTYPE_RCL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RCL))}, + "ETHERTYPE_RDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RDP))}, + "ETHERTYPE_RETIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RETIX))}, + "ETHERTYPE_REVARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_REVARP))}, + "ETHERTYPE_SCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SCA))}, + "ETHERTYPE_SECTRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECTRA))}, + "ETHERTYPE_SECUREDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECUREDATA))}, + "ETHERTYPE_SGITW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SGITW))}, + "ETHERTYPE_SG_BOUNCE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_BOUNCE))}, + "ETHERTYPE_SG_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_DIAG))}, + "ETHERTYPE_SG_NETGAMES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_NETGAMES))}, + "ETHERTYPE_SG_RESV": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_RESV))}, + "ETHERTYPE_SIMNET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SIMNET))}, + "ETHERTYPE_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SLOW))}, + "ETHERTYPE_SNA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNA))}, + "ETHERTYPE_SNMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNMP))}, + "ETHERTYPE_SONIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SONIX))}, + "ETHERTYPE_SPIDER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPIDER))}, + "ETHERTYPE_SPRITE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPRITE))}, + "ETHERTYPE_STP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_STP))}, + "ETHERTYPE_TALARIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARIS))}, + "ETHERTYPE_TALARISMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARISMC))}, + "ETHERTYPE_TCPCOMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPCOMP))}, + "ETHERTYPE_TCPSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPSM))}, + "ETHERTYPE_TEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TEC))}, + "ETHERTYPE_TIGAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TIGAN))}, + "ETHERTYPE_TRAIL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRAIL))}, + "ETHERTYPE_TRANSETHER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRANSETHER))}, + "ETHERTYPE_TYMSHARE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TYMSHARE))}, + "ETHERTYPE_UBBST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBBST))}, + "ETHERTYPE_UBDEBUG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDEBUG))}, + "ETHERTYPE_UBDIAGLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDIAGLOOP))}, + "ETHERTYPE_UBDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDL))}, + "ETHERTYPE_UBNIU": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNIU))}, + "ETHERTYPE_UBNMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNMC))}, + "ETHERTYPE_VALID": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VALID))}, + "ETHERTYPE_VARIAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VARIAN))}, + "ETHERTYPE_VAXELN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VAXELN))}, + "ETHERTYPE_VEECO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEECO))}, + "ETHERTYPE_VEXP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEXP))}, + "ETHERTYPE_VGLAB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VGLAB))}, + "ETHERTYPE_VINES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINES))}, + "ETHERTYPE_VINESECHO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESECHO))}, + "ETHERTYPE_VINESLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESLOOP))}, + "ETHERTYPE_VITAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VITAL))}, + "ETHERTYPE_VLAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLAN))}, + "ETHERTYPE_VLTLMAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLTLMAN))}, + "ETHERTYPE_VPROD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VPROD))}, + "ETHERTYPE_VURESERVED": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VURESERVED))}, + "ETHERTYPE_WATERLOO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WATERLOO))}, + "ETHERTYPE_WELLFLEET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WELLFLEET))}, + "ETHERTYPE_X25": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X25))}, + "ETHERTYPE_X75": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X75))}, + "ETHERTYPE_XNSSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XNSSM))}, + "ETHERTYPE_XTP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XTP))}, + "ETHER_ADDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ADDR_LEN))}, + "ETHER_ALIGN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ALIGN))}, + "ETHER_CRC_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_LEN))}, + "ETHER_CRC_POLY_BE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_BE))}, + "ETHER_CRC_POLY_LE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_LE))}, + "ETHER_HDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_HDR_LEN))}, + "ETHER_MAX_DIX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_DIX_LEN))}, + "ETHER_MAX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN))}, + "ETHER_MIN_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MIN_LEN))}, + "ETHER_TYPE_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_TYPE_LEN))}, + "ETHER_VLAN_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_VLAN_ENCAP_LEN))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFA_ROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_ROUTE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.IFT_BLUETOOTH))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DOCSCABLEUPSTREAMCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAMCHANNEL))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DUMMY": {"untyped int", constant.MakeInt64(int64(q.IFT_DUMMY))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ECONET": {"untyped int", constant.MakeInt64(int64(q.IFT_ECONET))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LINEGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_LINEGROUP))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFLOW": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOW))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_PON155": {"untyped int", constant.MakeInt64(int64(q.IFT_PON155))}, + "IFT_PON622": {"untyped int", constant.MakeInt64(int64(q.IFT_PON622))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPATM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPATM))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_Q2931": {"untyped int", constant.MakeInt64(int64(q.IFT_Q2931))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SIPSIG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPSIG))}, + "IFT_SIPTG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPTG))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_TELINK))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VIRTUALTG": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALTG))}, + "IFT_VOICEDID": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEDID))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEEMFGD": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEMFGD))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFGDEANA": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFGDEANA))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERCABLE": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERCABLE))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_HOST))}, + "IN_RFC3021_NET": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NET))}, + "IN_RFC3021_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NSHIFT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DIVERT_INIT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT_INIT))}, + "IPPROTO_DIVERT_RESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT_RESP))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTH_LEVEL))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_NETWORK_LEVEL))}, + "IPV6_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_TRANS_LEVEL))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPCOMP_LEVEL))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_OPTIONS))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IPV6_PIPEX))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTPORT))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTABLE))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_AUTH_LEVEL))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DIVERTFL": {"untyped int", constant.MakeInt64(int64(q.IP_DIVERTFL))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_NETWORK_LEVEL))}, + "IP_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_TRANS_LEVEL))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_IPCOMP_LEVEL))}, + "IP_IPSECFLOWINFO": {"untyped int", constant.MakeInt64(int64(q.IP_IPSECFLOWINFO))}, + "IP_IPSEC_LOCAL_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_AUTH))}, + "IP_IPSEC_LOCAL_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_CRED))}, + "IP_IPSEC_LOCAL_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_ID))}, + "IP_IPSEC_REMOTE_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_AUTH))}, + "IP_IPSEC_REMOTE_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_CRED))}, + "IP_IPSEC_REMOTE_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_ID))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IP_PIPEX))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTPORT))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVRTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRTABLE))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RTABLE))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LCNT_OVERLOAD_FLUSH": {"untyped int", constant.MakeInt64(int64(q.LCNT_OVERLOAD_FLUSH))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_FLAGMASK": {"untyped int", constant.MakeInt64(int64(q.MAP_FLAGMASK))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_INHERIT_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_COPY))}, + "MAP_INHERIT_DONATE_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DONATE_COPY))}, + "MAP_INHERIT_NONE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_NONE))}, + "MAP_INHERIT_SHARE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_SHARE))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_BCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_BCAST))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_MCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_MCAST))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_STATS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_STATS))}, + "NET_RT_TABLE": {"untyped int", constant.MakeInt64(int64(q.NET_RT_TABLE))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EOF": {"untyped int", constant.MakeInt64(int64(q.NOTE_EOF))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRUNCATE))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PF_FLUSH": {"untyped int", constant.MakeInt64(int64(q.PF_FLUSH))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTAX_LABEL))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_SRC": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRC))}, + "RTAX_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRCMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTA_LABEL))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_SRCMASK))}, + "RTF_ANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTF_ANNOUNCE))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MPATH": {"untyped int", constant.MakeInt64(int64(q.RTF_MPATH))}, + "RTF_MPLS": {"untyped int", constant.MakeInt64(int64(q.RTF_MPLS))}, + "RTF_PERMANENT_ARP": {"untyped int", constant.MakeInt64(int64(q.RTF_PERMANENT_ARP))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_SOURCE": {"untyped int", constant.MakeInt64(int64(q.RTF_SOURCE))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.RTF_TUNNEL))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_USETRAILERS": {"untyped int", constant.MakeInt64(int64(q.RTF_USETRAILERS))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DESYNC": {"untyped int", constant.MakeInt64(int64(q.RTM_DESYNC))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MAXSIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_MAXSIZE))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RT_TABLEID_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_MAX))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCBRDGADD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADD))}, + "SIOCBRDGADDS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADDS))}, + "SIOCBRDGARL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGARL))}, + "SIOCBRDGDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDADDR))}, + "SIOCBRDGDEL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDEL))}, + "SIOCBRDGDELS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDELS))}, + "SIOCBRDGFLUSH": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFLUSH))}, + "SIOCBRDGFRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFRL))}, + "SIOCBRDGGCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGCACHE))}, + "SIOCBRDGGFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGFD))}, + "SIOCBRDGGHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGHT))}, + "SIOCBRDGGIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGIFFLGS))}, + "SIOCBRDGGMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGMA))}, + "SIOCBRDGGPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPARAM))}, + "SIOCBRDGGPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPRI))}, + "SIOCBRDGGRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGRL))}, + "SIOCBRDGGSIFS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGSIFS))}, + "SIOCBRDGGTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGTO))}, + "SIOCBRDGIFS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGIFS))}, + "SIOCBRDGRTS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGRTS))}, + "SIOCBRDGSADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSADDR))}, + "SIOCBRDGSCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSCACHE))}, + "SIOCBRDGSFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSFD))}, + "SIOCBRDGSHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSHT))}, + "SIOCBRDGSIFCOST": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFCOST))}, + "SIOCBRDGSIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFFLGS))}, + "SIOCBRDGSIFPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFPRIO))}, + "SIOCBRDGSMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSMA))}, + "SIOCBRDGSPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPRI))}, + "SIOCBRDGSPROTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPROTO))}, + "SIOCBRDGSTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTO))}, + "SIOCBRDGSTXHC": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTXHC))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGETKALIVE))}, + "SIOCGETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGETLABEL))}, + "SIOCGETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFLOW))}, + "SIOCGETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFSYNC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVLAN))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFASYNCMAP))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGATTR))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFHARDMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHARDMTU))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPRIORITY))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRDOMAIN))}, + "SIOCGIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRTLABEL))}, + "SIOCGIFTIMESLOT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTIMESLOT))}, + "SIOCGIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFXFLAGS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYRTABLE))}, + "SIOCGLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYTTL))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSPPPPARAMS))}, + "SIOCGVH": {"untyped int", constant.MakeInt64(int64(q.SIOCGVH))}, + "SIOCGVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCGVNETID))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSETKALIVE))}, + "SIOCSETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSETLABEL))}, + "SIOCSETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFLOW))}, + "SIOCSETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFSYNC))}, + "SIOCSETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSETVLAN))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFASYNCMAP))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGATTR))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPRIORITY))}, + "SIOCSIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRDOMAIN))}, + "SIOCSIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRTLABEL))}, + "SIOCSIFTIMESLOT": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTIMESLOT))}, + "SIOCSIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFXFLAGS))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYRTABLE))}, + "SIOCSLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYTTL))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCSSPPPPARAMS))}, + "SIOCSVH": {"untyped int", constant.MakeInt64(int64(q.SIOCSVH))}, + "SIOCSVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCSVNETID))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_BINDANY": {"untyped int", constant.MakeInt64(int64(q.SO_BINDANY))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NETPROC": {"untyped int", constant.MakeInt64(int64(q.SO_NETPROC))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RTABLE": {"untyped int", constant.MakeInt64(int64(q.SO_RTABLE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SO_SPLICE))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJFREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJFREQ))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDTABLECOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLECOUNT))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRTABLE))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTHRID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTHRID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQUERY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQUERY))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRTABLE))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCTL))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___GET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___GET_TCB))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___SET_TCB))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "SYS___TFORK": {"untyped int", constant.MakeInt64(int64(q.SYS___TFORK))}, + "SYS___THREXIT": {"untyped int", constant.MakeInt64(int64(q.SYS___THREXIT))}, + "SYS___THRSIGDIVERT": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSIGDIVERT))}, + "SYS___THRSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSLEEP))}, + "SYS___THRWAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRWAKEUP))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_NSTATES": {"untyped int", constant.MakeInt64(int64(q.TCP_NSTATES))}, + "TCP_SACK_ENABLE": {"untyped int", constant.MakeInt64(int64(q.TCP_SACK_ENABLE))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLAG_CLOCAL": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CLOCAL))}, + "TIOCFLAG_CRTSCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CRTSCTS))}, + "TIOCFLAG_MDMBUF": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_MDMBUF))}, + "TIOCFLAG_PPS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_PPS))}, + "TIOCFLAG_SOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_SOFTCAR))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCGFLAGS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCGTSTAMP))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCSFLAGS))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTSTAMP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALTSIG": {"untyped int", constant.MakeInt64(int64(q.WALTSIG))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_openbsd_arm.go b/pkg/syscall/go122_export_openbsd_arm.go new file mode 100755 index 00000000..d4abefe9 --- /dev/null +++ b/pkg/syscall/go122_export_openbsd_arm.go @@ -0,0 +1,1972 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Mclpool": reflect.TypeOf((*q.Mclpool)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EIPSEC": {reflect.TypeOf(q.EIPSEC), constant.MakeInt64(int64(q.EIPSEC))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_ENCAP": {"untyped int", constant.MakeInt64(int64(q.AF_ENCAP))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FRELAY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRELAY))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRFILT))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCGFILDROP))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRFILT))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCSFILDROP))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIRECTION_IN": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_IN))}, + "BPF_DIRECTION_OUT": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_OUT))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DIOCOSFPFLUSH": {"untyped int", constant.MakeInt64(int64(q.DIOCOSFPFLUSH))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMT_TAGOVF": {"untyped int", constant.MakeInt64(int64(q.EMT_TAGOVF))}, + "EMUL_ENABLED": {"untyped int", constant.MakeInt64(int64(q.EMUL_ENABLED))}, + "EMUL_NATIVE": {"untyped int", constant.MakeInt64(int64(q.EMUL_NATIVE))}, + "ENDRUNDISC": {"untyped int", constant.MakeInt64(int64(q.ENDRUNDISC))}, + "ETHERMIN": {"untyped int", constant.MakeInt64(int64(q.ETHERMIN))}, + "ETHERMTU": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU))}, + "ETHERTYPE_8023": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_8023))}, + "ETHERTYPE_AARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AARP))}, + "ETHERTYPE_ACCTON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ACCTON))}, + "ETHERTYPE_AEONIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AEONIC))}, + "ETHERTYPE_ALPHA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ALPHA))}, + "ETHERTYPE_AMBER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMBER))}, + "ETHERTYPE_AMOEBA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMOEBA))}, + "ETHERTYPE_AOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AOE))}, + "ETHERTYPE_APOLLO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLO))}, + "ETHERTYPE_APOLLODOMAIN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLODOMAIN))}, + "ETHERTYPE_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLETALK))}, + "ETHERTYPE_APPLITEK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLITEK))}, + "ETHERTYPE_ARGONAUT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARGONAUT))}, + "ETHERTYPE_ARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARP))}, + "ETHERTYPE_AT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AT))}, + "ETHERTYPE_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATALK))}, + "ETHERTYPE_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATOMIC))}, + "ETHERTYPE_ATT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATT))}, + "ETHERTYPE_ATTSTANFORD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATTSTANFORD))}, + "ETHERTYPE_AUTOPHON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AUTOPHON))}, + "ETHERTYPE_AXIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AXIS))}, + "ETHERTYPE_BCLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BCLOOP))}, + "ETHERTYPE_BOFL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BOFL))}, + "ETHERTYPE_CABLETRON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CABLETRON))}, + "ETHERTYPE_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CHAOS))}, + "ETHERTYPE_COMDESIGN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMDESIGN))}, + "ETHERTYPE_COMPUGRAPHIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMPUGRAPHIC))}, + "ETHERTYPE_COUNTERPOINT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COUNTERPOINT))}, + "ETHERTYPE_CRONUS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUS))}, + "ETHERTYPE_CRONUSVLN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUSVLN))}, + "ETHERTYPE_DCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DCA))}, + "ETHERTYPE_DDE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DDE))}, + "ETHERTYPE_DEBNI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DEBNI))}, + "ETHERTYPE_DECAM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECAM))}, + "ETHERTYPE_DECCUST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECCUST))}, + "ETHERTYPE_DECDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDIAG))}, + "ETHERTYPE_DECDNS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDNS))}, + "ETHERTYPE_DECDTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDTS))}, + "ETHERTYPE_DECEXPER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECEXPER))}, + "ETHERTYPE_DECLAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLAST))}, + "ETHERTYPE_DECLTM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLTM))}, + "ETHERTYPE_DECMUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECMUMPS))}, + "ETHERTYPE_DECNETBIOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECNETBIOS))}, + "ETHERTYPE_DELTACON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DELTACON))}, + "ETHERTYPE_DIDDLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DIDDLE))}, + "ETHERTYPE_DLOG1": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG1))}, + "ETHERTYPE_DLOG2": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG2))}, + "ETHERTYPE_DN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DN))}, + "ETHERTYPE_DOGFIGHT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DOGFIGHT))}, + "ETHERTYPE_DSMD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DSMD))}, + "ETHERTYPE_ECMA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ECMA))}, + "ETHERTYPE_ENCRYPT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ENCRYPT))}, + "ETHERTYPE_ES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ES))}, + "ETHERTYPE_EXCELAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXCELAN))}, + "ETHERTYPE_EXPERDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXPERDATA))}, + "ETHERTYPE_FLIP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLIP))}, + "ETHERTYPE_FLOWCONTROL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLOWCONTROL))}, + "ETHERTYPE_FRARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FRARP))}, + "ETHERTYPE_GENDYN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_GENDYN))}, + "ETHERTYPE_HAYES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HAYES))}, + "ETHERTYPE_HIPPI_FP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HIPPI_FP))}, + "ETHERTYPE_HITACHI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HITACHI))}, + "ETHERTYPE_HP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HP))}, + "ETHERTYPE_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUP))}, + "ETHERTYPE_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUPAT))}, + "ETHERTYPE_IMLBL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBL))}, + "ETHERTYPE_IMLBLDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBLDIAG))}, + "ETHERTYPE_IP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IP))}, + "ETHERTYPE_IPAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPAS))}, + "ETHERTYPE_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPV6))}, + "ETHERTYPE_IPX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPX))}, + "ETHERTYPE_IPXNEW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPXNEW))}, + "ETHERTYPE_KALPANA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_KALPANA))}, + "ETHERTYPE_LANBRIDGE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANBRIDGE))}, + "ETHERTYPE_LANPROBE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANPROBE))}, + "ETHERTYPE_LAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LAT))}, + "ETHERTYPE_LBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LBACK))}, + "ETHERTYPE_LITTLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LITTLE))}, + "ETHERTYPE_LLDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LLDP))}, + "ETHERTYPE_LOGICRAFT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOGICRAFT))}, + "ETHERTYPE_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOOPBACK))}, + "ETHERTYPE_MATRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MATRA))}, + "ETHERTYPE_MAX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MAX))}, + "ETHERTYPE_MERIT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MERIT))}, + "ETHERTYPE_MICP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MICP))}, + "ETHERTYPE_MOPDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPDL))}, + "ETHERTYPE_MOPRC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPRC))}, + "ETHERTYPE_MOTOROLA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOTOROLA))}, + "ETHERTYPE_MPLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS))}, + "ETHERTYPE_MPLS_MCAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS_MCAST))}, + "ETHERTYPE_MUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MUMPS))}, + "ETHERTYPE_NBPCC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCC))}, + "ETHERTYPE_NBPCLAIM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLAIM))}, + "ETHERTYPE_NBPCLREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLREQ))}, + "ETHERTYPE_NBPCLRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLRSP))}, + "ETHERTYPE_NBPCREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCREQ))}, + "ETHERTYPE_NBPCRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCRSP))}, + "ETHERTYPE_NBPDG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDG))}, + "ETHERTYPE_NBPDGB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDGB))}, + "ETHERTYPE_NBPDLTE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDLTE))}, + "ETHERTYPE_NBPRAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAR))}, + "ETHERTYPE_NBPRAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAS))}, + "ETHERTYPE_NBPRST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRST))}, + "ETHERTYPE_NBPSCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPSCD))}, + "ETHERTYPE_NBPVCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPVCD))}, + "ETHERTYPE_NBS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBS))}, + "ETHERTYPE_NCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NCD))}, + "ETHERTYPE_NESTAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NESTAR))}, + "ETHERTYPE_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NETBEUI))}, + "ETHERTYPE_NOVELL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NOVELL))}, + "ETHERTYPE_NS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NS))}, + "ETHERTYPE_NSAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSAT))}, + "ETHERTYPE_NSCOMPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSCOMPAT))}, + "ETHERTYPE_NTRAILER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NTRAILER))}, + "ETHERTYPE_OS9": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9))}, + "ETHERTYPE_OS9NET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9NET))}, + "ETHERTYPE_PACER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PACER))}, + "ETHERTYPE_PAE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PAE))}, + "ETHERTYPE_PCS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PCS))}, + "ETHERTYPE_PLANNING": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PLANNING))}, + "ETHERTYPE_PPP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPP))}, + "ETHERTYPE_PPPOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOE))}, + "ETHERTYPE_PPPOEDISC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOEDISC))}, + "ETHERTYPE_PRIMENTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PRIMENTS))}, + "ETHERTYPE_PUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUP))}, + "ETHERTYPE_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUPAT))}, + "ETHERTYPE_QINQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_QINQ))}, + "ETHERTYPE_RACAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RACAL))}, + "ETHERTYPE_RATIONAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RATIONAL))}, + "ETHERTYPE_RAWFR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RAWFR))}, + "ETHERTYPE_RCL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RCL))}, + "ETHERTYPE_RDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RDP))}, + "ETHERTYPE_RETIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RETIX))}, + "ETHERTYPE_REVARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_REVARP))}, + "ETHERTYPE_SCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SCA))}, + "ETHERTYPE_SECTRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECTRA))}, + "ETHERTYPE_SECUREDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECUREDATA))}, + "ETHERTYPE_SGITW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SGITW))}, + "ETHERTYPE_SG_BOUNCE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_BOUNCE))}, + "ETHERTYPE_SG_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_DIAG))}, + "ETHERTYPE_SG_NETGAMES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_NETGAMES))}, + "ETHERTYPE_SG_RESV": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_RESV))}, + "ETHERTYPE_SIMNET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SIMNET))}, + "ETHERTYPE_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SLOW))}, + "ETHERTYPE_SNA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNA))}, + "ETHERTYPE_SNMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNMP))}, + "ETHERTYPE_SONIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SONIX))}, + "ETHERTYPE_SPIDER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPIDER))}, + "ETHERTYPE_SPRITE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPRITE))}, + "ETHERTYPE_STP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_STP))}, + "ETHERTYPE_TALARIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARIS))}, + "ETHERTYPE_TALARISMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARISMC))}, + "ETHERTYPE_TCPCOMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPCOMP))}, + "ETHERTYPE_TCPSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPSM))}, + "ETHERTYPE_TEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TEC))}, + "ETHERTYPE_TIGAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TIGAN))}, + "ETHERTYPE_TRAIL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRAIL))}, + "ETHERTYPE_TRANSETHER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRANSETHER))}, + "ETHERTYPE_TYMSHARE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TYMSHARE))}, + "ETHERTYPE_UBBST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBBST))}, + "ETHERTYPE_UBDEBUG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDEBUG))}, + "ETHERTYPE_UBDIAGLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDIAGLOOP))}, + "ETHERTYPE_UBDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDL))}, + "ETHERTYPE_UBNIU": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNIU))}, + "ETHERTYPE_UBNMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNMC))}, + "ETHERTYPE_VALID": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VALID))}, + "ETHERTYPE_VARIAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VARIAN))}, + "ETHERTYPE_VAXELN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VAXELN))}, + "ETHERTYPE_VEECO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEECO))}, + "ETHERTYPE_VEXP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEXP))}, + "ETHERTYPE_VGLAB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VGLAB))}, + "ETHERTYPE_VINES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINES))}, + "ETHERTYPE_VINESECHO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESECHO))}, + "ETHERTYPE_VINESLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESLOOP))}, + "ETHERTYPE_VITAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VITAL))}, + "ETHERTYPE_VLAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLAN))}, + "ETHERTYPE_VLTLMAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLTLMAN))}, + "ETHERTYPE_VPROD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VPROD))}, + "ETHERTYPE_VURESERVED": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VURESERVED))}, + "ETHERTYPE_WATERLOO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WATERLOO))}, + "ETHERTYPE_WELLFLEET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WELLFLEET))}, + "ETHERTYPE_X25": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X25))}, + "ETHERTYPE_X75": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X75))}, + "ETHERTYPE_XNSSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XNSSM))}, + "ETHERTYPE_XTP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XTP))}, + "ETHER_ADDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ADDR_LEN))}, + "ETHER_ALIGN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ALIGN))}, + "ETHER_CRC_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_LEN))}, + "ETHER_CRC_POLY_BE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_BE))}, + "ETHER_CRC_POLY_LE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_LE))}, + "ETHER_HDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_HDR_LEN))}, + "ETHER_MAX_DIX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_DIX_LEN))}, + "ETHER_MAX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN))}, + "ETHER_MIN_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MIN_LEN))}, + "ETHER_TYPE_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_TYPE_LEN))}, + "ETHER_VLAN_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_VLAN_ENCAP_LEN))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFA_ROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_ROUTE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.IFT_BLUETOOTH))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DOCSCABLEUPSTREAMCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAMCHANNEL))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DUMMY": {"untyped int", constant.MakeInt64(int64(q.IFT_DUMMY))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ECONET": {"untyped int", constant.MakeInt64(int64(q.IFT_ECONET))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LINEGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_LINEGROUP))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFLOW": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOW))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_PON155": {"untyped int", constant.MakeInt64(int64(q.IFT_PON155))}, + "IFT_PON622": {"untyped int", constant.MakeInt64(int64(q.IFT_PON622))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPATM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPATM))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_Q2931": {"untyped int", constant.MakeInt64(int64(q.IFT_Q2931))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SIPSIG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPSIG))}, + "IFT_SIPTG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPTG))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_TELINK))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VIRTUALTG": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALTG))}, + "IFT_VOICEDID": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEDID))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEEMFGD": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEMFGD))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFGDEANA": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFGDEANA))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERCABLE": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERCABLE))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_HOST))}, + "IN_RFC3021_NET": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NET))}, + "IN_RFC3021_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NSHIFT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DIVERT_INIT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT_INIT))}, + "IPPROTO_DIVERT_RESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT_RESP))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTH_LEVEL))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_NETWORK_LEVEL))}, + "IPV6_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_TRANS_LEVEL))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPCOMP_LEVEL))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_OPTIONS))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IPV6_PIPEX))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTPORT))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTABLE))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_AUTH_LEVEL))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DIVERTFL": {"untyped int", constant.MakeInt64(int64(q.IP_DIVERTFL))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_NETWORK_LEVEL))}, + "IP_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_TRANS_LEVEL))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_IPCOMP_LEVEL))}, + "IP_IPSECFLOWINFO": {"untyped int", constant.MakeInt64(int64(q.IP_IPSECFLOWINFO))}, + "IP_IPSEC_LOCAL_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_AUTH))}, + "IP_IPSEC_LOCAL_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_CRED))}, + "IP_IPSEC_LOCAL_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_ID))}, + "IP_IPSEC_REMOTE_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_AUTH))}, + "IP_IPSEC_REMOTE_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_CRED))}, + "IP_IPSEC_REMOTE_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_ID))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IP_PIPEX))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTPORT))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVRTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRTABLE))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RTABLE))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LCNT_OVERLOAD_FLUSH": {"untyped int", constant.MakeInt64(int64(q.LCNT_OVERLOAD_FLUSH))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_FLAGMASK": {"untyped int", constant.MakeInt64(int64(q.MAP_FLAGMASK))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_INHERIT_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_COPY))}, + "MAP_INHERIT_NONE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_NONE))}, + "MAP_INHERIT_SHARE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_SHARE))}, + "MAP_INHERIT_ZERO": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_ZERO))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_BCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_BCAST))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_MCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_MCAST))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_STATS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_STATS))}, + "NET_RT_TABLE": {"untyped int", constant.MakeInt64(int64(q.NET_RT_TABLE))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EOF": {"untyped int", constant.MakeInt64(int64(q.NOTE_EOF))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRUNCATE))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PF_FLUSH": {"untyped int", constant.MakeInt64(int64(q.PF_FLUSH))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTAX_LABEL))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_SRC": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRC))}, + "RTAX_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRCMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTA_LABEL))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_SRCMASK))}, + "RTF_ANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTF_ANNOUNCE))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MPATH": {"untyped int", constant.MakeInt64(int64(q.RTF_MPATH))}, + "RTF_MPLS": {"untyped int", constant.MakeInt64(int64(q.RTF_MPLS))}, + "RTF_PERMANENT_ARP": {"untyped int", constant.MakeInt64(int64(q.RTF_PERMANENT_ARP))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_USETRAILERS": {"untyped int", constant.MakeInt64(int64(q.RTF_USETRAILERS))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DESYNC": {"untyped int", constant.MakeInt64(int64(q.RTM_DESYNC))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MAXSIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_MAXSIZE))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RT_TABLEID_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_MAX))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCBRDGADD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADD))}, + "SIOCBRDGADDS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADDS))}, + "SIOCBRDGARL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGARL))}, + "SIOCBRDGDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDADDR))}, + "SIOCBRDGDEL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDEL))}, + "SIOCBRDGDELS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDELS))}, + "SIOCBRDGFLUSH": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFLUSH))}, + "SIOCBRDGFRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFRL))}, + "SIOCBRDGGCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGCACHE))}, + "SIOCBRDGGFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGFD))}, + "SIOCBRDGGHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGHT))}, + "SIOCBRDGGIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGIFFLGS))}, + "SIOCBRDGGMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGMA))}, + "SIOCBRDGGPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPARAM))}, + "SIOCBRDGGPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPRI))}, + "SIOCBRDGGRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGRL))}, + "SIOCBRDGGSIFS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGSIFS))}, + "SIOCBRDGGTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGTO))}, + "SIOCBRDGIFS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGIFS))}, + "SIOCBRDGRTS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGRTS))}, + "SIOCBRDGSADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSADDR))}, + "SIOCBRDGSCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSCACHE))}, + "SIOCBRDGSFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSFD))}, + "SIOCBRDGSHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSHT))}, + "SIOCBRDGSIFCOST": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFCOST))}, + "SIOCBRDGSIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFFLGS))}, + "SIOCBRDGSIFPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFPRIO))}, + "SIOCBRDGSMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSMA))}, + "SIOCBRDGSPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPRI))}, + "SIOCBRDGSPROTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPROTO))}, + "SIOCBRDGSTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTO))}, + "SIOCBRDGSTXHC": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTXHC))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGETKALIVE))}, + "SIOCGETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGETLABEL))}, + "SIOCGETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFLOW))}, + "SIOCGETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFSYNC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVLAN))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFASYNCMAP))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGATTR))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFHARDMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHARDMTU))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPRIORITY))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRDOMAIN))}, + "SIOCGIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRTLABEL))}, + "SIOCGIFRXR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRXR))}, + "SIOCGIFTIMESLOT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTIMESLOT))}, + "SIOCGIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFXFLAGS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYRTABLE))}, + "SIOCGLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYTTL))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSPPPPARAMS))}, + "SIOCGVH": {"untyped int", constant.MakeInt64(int64(q.SIOCGVH))}, + "SIOCGVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCGVNETID))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSETKALIVE))}, + "SIOCSETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSETLABEL))}, + "SIOCSETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFLOW))}, + "SIOCSETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFSYNC))}, + "SIOCSETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSETVLAN))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFASYNCMAP))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGATTR))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPRIORITY))}, + "SIOCSIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRDOMAIN))}, + "SIOCSIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRTLABEL))}, + "SIOCSIFTIMESLOT": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTIMESLOT))}, + "SIOCSIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFXFLAGS))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYRTABLE))}, + "SIOCSLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYTTL))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCSSPPPPARAMS))}, + "SIOCSVH": {"untyped int", constant.MakeInt64(int64(q.SIOCSVH))}, + "SIOCSVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCSVNETID))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_BINDANY": {"untyped int", constant.MakeInt64(int64(q.SO_BINDANY))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NETPROC": {"untyped int", constant.MakeInt64(int64(q.SO_NETPROC))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RTABLE": {"untyped int", constant.MakeInt64(int64(q.SO_RTABLE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SO_SPLICE))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJFREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJFREQ))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHFLAGSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGSAT))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDTABLECOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLECOUNT))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETENTROPY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETENTROPY))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRTABLE))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTHRID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTHRID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQUERY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQUERY))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDSYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDSYSLOG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRTABLE))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCTL))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___GET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___GET_TCB))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___SET_TCB))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "SYS___TFORK": {"untyped int", constant.MakeInt64(int64(q.SYS___TFORK))}, + "SYS___THREXIT": {"untyped int", constant.MakeInt64(int64(q.SYS___THREXIT))}, + "SYS___THRSIGDIVERT": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSIGDIVERT))}, + "SYS___THRSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSLEEP))}, + "SYS___THRWAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRWAKEUP))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_NSTATES": {"untyped int", constant.MakeInt64(int64(q.TCP_NSTATES))}, + "TCP_SACK_ENABLE": {"untyped int", constant.MakeInt64(int64(q.TCP_SACK_ENABLE))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLAG_CLOCAL": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CLOCAL))}, + "TIOCFLAG_CRTSCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CRTSCTS))}, + "TIOCFLAG_MDMBUF": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_MDMBUF))}, + "TIOCFLAG_PPS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_PPS))}, + "TIOCFLAG_SOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_SOFTCAR))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCGFLAGS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCGTSTAMP))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCSFLAGS))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTSTAMP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALTSIG": {"untyped int", constant.MakeInt64(int64(q.WALTSIG))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_openbsd_arm64.go b/pkg/syscall/go122_export_openbsd_arm64.go new file mode 100755 index 00000000..d6d42d1a --- /dev/null +++ b/pkg/syscall/go122_export_openbsd_arm64.go @@ -0,0 +1,2067 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Mclpool": reflect.TypeOf((*q.Mclpool)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EIPSEC": {reflect.TypeOf(q.EIPSEC), constant.MakeInt64(int64(q.EIPSEC))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_ENCAP": {"untyped int", constant.MakeInt64(int64(q.AF_ENCAP))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FRELAY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRELAY))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRFILT))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCGFILDROP))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRFILT))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCSFILDROP))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIRECTION_IN": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_IN))}, + "BPF_DIRECTION_OUT": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_OUT))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_FILDROP_CAPTURE": {"untyped int", constant.MakeInt64(int64(q.BPF_FILDROP_CAPTURE))}, + "BPF_FILDROP_DROP": {"untyped int", constant.MakeInt64(int64(q.BPF_FILDROP_DROP))}, + "BPF_FILDROP_PASS": {"untyped int", constant.MakeInt64(int64(q.BPF_FILDROP_PASS))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DIOCOSFPFLUSH": {"untyped int", constant.MakeInt64(int64(q.DIOCOSFPFLUSH))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_OPENFLOW": {"untyped int", constant.MakeInt64(int64(q.DLT_OPENFLOW))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_USBPCAP": {"untyped int", constant.MakeInt64(int64(q.DLT_USBPCAP))}, + "DLT_USER0": {"untyped int", constant.MakeInt64(int64(q.DLT_USER0))}, + "DLT_USER1": {"untyped int", constant.MakeInt64(int64(q.DLT_USER1))}, + "DLT_USER10": {"untyped int", constant.MakeInt64(int64(q.DLT_USER10))}, + "DLT_USER11": {"untyped int", constant.MakeInt64(int64(q.DLT_USER11))}, + "DLT_USER12": {"untyped int", constant.MakeInt64(int64(q.DLT_USER12))}, + "DLT_USER13": {"untyped int", constant.MakeInt64(int64(q.DLT_USER13))}, + "DLT_USER14": {"untyped int", constant.MakeInt64(int64(q.DLT_USER14))}, + "DLT_USER15": {"untyped int", constant.MakeInt64(int64(q.DLT_USER15))}, + "DLT_USER2": {"untyped int", constant.MakeInt64(int64(q.DLT_USER2))}, + "DLT_USER3": {"untyped int", constant.MakeInt64(int64(q.DLT_USER3))}, + "DLT_USER4": {"untyped int", constant.MakeInt64(int64(q.DLT_USER4))}, + "DLT_USER5": {"untyped int", constant.MakeInt64(int64(q.DLT_USER5))}, + "DLT_USER6": {"untyped int", constant.MakeInt64(int64(q.DLT_USER6))}, + "DLT_USER7": {"untyped int", constant.MakeInt64(int64(q.DLT_USER7))}, + "DLT_USER8": {"untyped int", constant.MakeInt64(int64(q.DLT_USER8))}, + "DLT_USER9": {"untyped int", constant.MakeInt64(int64(q.DLT_USER9))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMT_TAGOVF": {"untyped int", constant.MakeInt64(int64(q.EMT_TAGOVF))}, + "EMUL_ENABLED": {"untyped int", constant.MakeInt64(int64(q.EMUL_ENABLED))}, + "EMUL_NATIVE": {"untyped int", constant.MakeInt64(int64(q.EMUL_NATIVE))}, + "ENDRUNDISC": {"untyped int", constant.MakeInt64(int64(q.ENDRUNDISC))}, + "ETHERMIN": {"untyped int", constant.MakeInt64(int64(q.ETHERMIN))}, + "ETHERMTU": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU))}, + "ETHERTYPE_8023": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_8023))}, + "ETHERTYPE_AARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AARP))}, + "ETHERTYPE_ACCTON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ACCTON))}, + "ETHERTYPE_AEONIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AEONIC))}, + "ETHERTYPE_ALPHA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ALPHA))}, + "ETHERTYPE_AMBER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMBER))}, + "ETHERTYPE_AMOEBA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMOEBA))}, + "ETHERTYPE_AOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AOE))}, + "ETHERTYPE_APOLLO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLO))}, + "ETHERTYPE_APOLLODOMAIN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLODOMAIN))}, + "ETHERTYPE_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLETALK))}, + "ETHERTYPE_APPLITEK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLITEK))}, + "ETHERTYPE_ARGONAUT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARGONAUT))}, + "ETHERTYPE_ARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARP))}, + "ETHERTYPE_AT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AT))}, + "ETHERTYPE_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATALK))}, + "ETHERTYPE_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATOMIC))}, + "ETHERTYPE_ATT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATT))}, + "ETHERTYPE_ATTSTANFORD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATTSTANFORD))}, + "ETHERTYPE_AUTOPHON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AUTOPHON))}, + "ETHERTYPE_AXIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AXIS))}, + "ETHERTYPE_BCLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BCLOOP))}, + "ETHERTYPE_BOFL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BOFL))}, + "ETHERTYPE_CABLETRON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CABLETRON))}, + "ETHERTYPE_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CHAOS))}, + "ETHERTYPE_COMDESIGN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMDESIGN))}, + "ETHERTYPE_COMPUGRAPHIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMPUGRAPHIC))}, + "ETHERTYPE_COUNTERPOINT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COUNTERPOINT))}, + "ETHERTYPE_CRONUS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUS))}, + "ETHERTYPE_CRONUSVLN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUSVLN))}, + "ETHERTYPE_DCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DCA))}, + "ETHERTYPE_DDE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DDE))}, + "ETHERTYPE_DEBNI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DEBNI))}, + "ETHERTYPE_DECAM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECAM))}, + "ETHERTYPE_DECCUST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECCUST))}, + "ETHERTYPE_DECDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDIAG))}, + "ETHERTYPE_DECDNS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDNS))}, + "ETHERTYPE_DECDTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDTS))}, + "ETHERTYPE_DECEXPER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECEXPER))}, + "ETHERTYPE_DECLAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLAST))}, + "ETHERTYPE_DECLTM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLTM))}, + "ETHERTYPE_DECMUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECMUMPS))}, + "ETHERTYPE_DECNETBIOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECNETBIOS))}, + "ETHERTYPE_DELTACON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DELTACON))}, + "ETHERTYPE_DIDDLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DIDDLE))}, + "ETHERTYPE_DLOG1": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG1))}, + "ETHERTYPE_DLOG2": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG2))}, + "ETHERTYPE_DN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DN))}, + "ETHERTYPE_DOGFIGHT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DOGFIGHT))}, + "ETHERTYPE_DSMD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DSMD))}, + "ETHERTYPE_ECMA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ECMA))}, + "ETHERTYPE_ENCRYPT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ENCRYPT))}, + "ETHERTYPE_ES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ES))}, + "ETHERTYPE_EXCELAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXCELAN))}, + "ETHERTYPE_EXPERDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXPERDATA))}, + "ETHERTYPE_FLIP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLIP))}, + "ETHERTYPE_FLOWCONTROL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLOWCONTROL))}, + "ETHERTYPE_FRARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FRARP))}, + "ETHERTYPE_GENDYN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_GENDYN))}, + "ETHERTYPE_HAYES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HAYES))}, + "ETHERTYPE_HIPPI_FP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HIPPI_FP))}, + "ETHERTYPE_HITACHI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HITACHI))}, + "ETHERTYPE_HP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HP))}, + "ETHERTYPE_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUP))}, + "ETHERTYPE_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUPAT))}, + "ETHERTYPE_IMLBL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBL))}, + "ETHERTYPE_IMLBLDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBLDIAG))}, + "ETHERTYPE_IP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IP))}, + "ETHERTYPE_IPAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPAS))}, + "ETHERTYPE_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPV6))}, + "ETHERTYPE_IPX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPX))}, + "ETHERTYPE_IPXNEW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPXNEW))}, + "ETHERTYPE_KALPANA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_KALPANA))}, + "ETHERTYPE_LANBRIDGE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANBRIDGE))}, + "ETHERTYPE_LANPROBE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANPROBE))}, + "ETHERTYPE_LAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LAT))}, + "ETHERTYPE_LBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LBACK))}, + "ETHERTYPE_LITTLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LITTLE))}, + "ETHERTYPE_LLDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LLDP))}, + "ETHERTYPE_LOGICRAFT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOGICRAFT))}, + "ETHERTYPE_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOOPBACK))}, + "ETHERTYPE_MATRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MATRA))}, + "ETHERTYPE_MAX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MAX))}, + "ETHERTYPE_MERIT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MERIT))}, + "ETHERTYPE_MICP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MICP))}, + "ETHERTYPE_MOPDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPDL))}, + "ETHERTYPE_MOPRC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPRC))}, + "ETHERTYPE_MOTOROLA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOTOROLA))}, + "ETHERTYPE_MPLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS))}, + "ETHERTYPE_MPLS_MCAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS_MCAST))}, + "ETHERTYPE_MUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MUMPS))}, + "ETHERTYPE_NBPCC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCC))}, + "ETHERTYPE_NBPCLAIM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLAIM))}, + "ETHERTYPE_NBPCLREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLREQ))}, + "ETHERTYPE_NBPCLRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLRSP))}, + "ETHERTYPE_NBPCREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCREQ))}, + "ETHERTYPE_NBPCRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCRSP))}, + "ETHERTYPE_NBPDG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDG))}, + "ETHERTYPE_NBPDGB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDGB))}, + "ETHERTYPE_NBPDLTE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDLTE))}, + "ETHERTYPE_NBPRAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAR))}, + "ETHERTYPE_NBPRAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAS))}, + "ETHERTYPE_NBPRST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRST))}, + "ETHERTYPE_NBPSCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPSCD))}, + "ETHERTYPE_NBPVCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPVCD))}, + "ETHERTYPE_NBS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBS))}, + "ETHERTYPE_NCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NCD))}, + "ETHERTYPE_NESTAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NESTAR))}, + "ETHERTYPE_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NETBEUI))}, + "ETHERTYPE_NOVELL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NOVELL))}, + "ETHERTYPE_NS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NS))}, + "ETHERTYPE_NSAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSAT))}, + "ETHERTYPE_NSCOMPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSCOMPAT))}, + "ETHERTYPE_NTRAILER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NTRAILER))}, + "ETHERTYPE_OS9": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9))}, + "ETHERTYPE_OS9NET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9NET))}, + "ETHERTYPE_PACER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PACER))}, + "ETHERTYPE_PAE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PAE))}, + "ETHERTYPE_PBB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PBB))}, + "ETHERTYPE_PCS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PCS))}, + "ETHERTYPE_PLANNING": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PLANNING))}, + "ETHERTYPE_PPP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPP))}, + "ETHERTYPE_PPPOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOE))}, + "ETHERTYPE_PPPOEDISC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOEDISC))}, + "ETHERTYPE_PRIMENTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PRIMENTS))}, + "ETHERTYPE_PUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUP))}, + "ETHERTYPE_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUPAT))}, + "ETHERTYPE_QINQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_QINQ))}, + "ETHERTYPE_RACAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RACAL))}, + "ETHERTYPE_RATIONAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RATIONAL))}, + "ETHERTYPE_RAWFR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RAWFR))}, + "ETHERTYPE_RCL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RCL))}, + "ETHERTYPE_RDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RDP))}, + "ETHERTYPE_RETIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RETIX))}, + "ETHERTYPE_REVARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_REVARP))}, + "ETHERTYPE_SCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SCA))}, + "ETHERTYPE_SECTRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECTRA))}, + "ETHERTYPE_SECUREDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECUREDATA))}, + "ETHERTYPE_SGITW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SGITW))}, + "ETHERTYPE_SG_BOUNCE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_BOUNCE))}, + "ETHERTYPE_SG_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_DIAG))}, + "ETHERTYPE_SG_NETGAMES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_NETGAMES))}, + "ETHERTYPE_SG_RESV": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_RESV))}, + "ETHERTYPE_SIMNET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SIMNET))}, + "ETHERTYPE_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SLOW))}, + "ETHERTYPE_SNA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNA))}, + "ETHERTYPE_SNMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNMP))}, + "ETHERTYPE_SONIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SONIX))}, + "ETHERTYPE_SPIDER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPIDER))}, + "ETHERTYPE_SPRITE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPRITE))}, + "ETHERTYPE_STP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_STP))}, + "ETHERTYPE_TALARIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARIS))}, + "ETHERTYPE_TALARISMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARISMC))}, + "ETHERTYPE_TCPCOMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPCOMP))}, + "ETHERTYPE_TCPSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPSM))}, + "ETHERTYPE_TEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TEC))}, + "ETHERTYPE_TIGAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TIGAN))}, + "ETHERTYPE_TRAIL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRAIL))}, + "ETHERTYPE_TRANSETHER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRANSETHER))}, + "ETHERTYPE_TYMSHARE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TYMSHARE))}, + "ETHERTYPE_UBBST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBBST))}, + "ETHERTYPE_UBDEBUG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDEBUG))}, + "ETHERTYPE_UBDIAGLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDIAGLOOP))}, + "ETHERTYPE_UBDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDL))}, + "ETHERTYPE_UBNIU": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNIU))}, + "ETHERTYPE_UBNMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNMC))}, + "ETHERTYPE_VALID": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VALID))}, + "ETHERTYPE_VARIAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VARIAN))}, + "ETHERTYPE_VAXELN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VAXELN))}, + "ETHERTYPE_VEECO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEECO))}, + "ETHERTYPE_VEXP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEXP))}, + "ETHERTYPE_VGLAB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VGLAB))}, + "ETHERTYPE_VINES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINES))}, + "ETHERTYPE_VINESECHO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESECHO))}, + "ETHERTYPE_VINESLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESLOOP))}, + "ETHERTYPE_VITAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VITAL))}, + "ETHERTYPE_VLAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLAN))}, + "ETHERTYPE_VLTLMAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLTLMAN))}, + "ETHERTYPE_VPROD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VPROD))}, + "ETHERTYPE_VURESERVED": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VURESERVED))}, + "ETHERTYPE_WATERLOO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WATERLOO))}, + "ETHERTYPE_WELLFLEET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WELLFLEET))}, + "ETHERTYPE_X25": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X25))}, + "ETHERTYPE_X75": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X75))}, + "ETHERTYPE_XNSSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XNSSM))}, + "ETHERTYPE_XTP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XTP))}, + "ETHER_ADDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ADDR_LEN))}, + "ETHER_ALIGN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ALIGN))}, + "ETHER_CRC_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_LEN))}, + "ETHER_CRC_POLY_BE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_BE))}, + "ETHER_CRC_POLY_LE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_LE))}, + "ETHER_HDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_HDR_LEN))}, + "ETHER_MAX_DIX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_DIX_LEN))}, + "ETHER_MAX_HARDMTU_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_HARDMTU_LEN))}, + "ETHER_MAX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN))}, + "ETHER_MIN_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MIN_LEN))}, + "ETHER_TYPE_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_TYPE_LEN))}, + "ETHER_VLAN_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_VLAN_ENCAP_LEN))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_DEVICE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_DEVICE))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EVL_ENCAPLEN": {"untyped int", constant.MakeInt64(int64(q.EVL_ENCAPLEN))}, + "EVL_PRIO_BITS": {"untyped int", constant.MakeInt64(int64(q.EVL_PRIO_BITS))}, + "EVL_PRIO_MAX": {"untyped int", constant.MakeInt64(int64(q.EVL_PRIO_MAX))}, + "EVL_VLID_MASK": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_MASK))}, + "EVL_VLID_MAX": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_MAX))}, + "EVL_VLID_MIN": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_MIN))}, + "EVL_VLID_NULL": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_NULL))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_ISATTY": {"untyped int", constant.MakeInt64(int64(q.F_ISATTY))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_STATICARP": {"untyped int", constant.MakeInt64(int64(q.IFF_STATICARP))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.IFT_BLUETOOTH))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DOCSCABLEUPSTREAMCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAMCHANNEL))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DUMMY": {"untyped int", constant.MakeInt64(int64(q.IFT_DUMMY))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ECONET": {"untyped int", constant.MakeInt64(int64(q.IFT_ECONET))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LINEGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_LINEGROUP))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MBIM": {"untyped int", constant.MakeInt64(int64(q.IFT_MBIM))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFLOW": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOW))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_PON155": {"untyped int", constant.MakeInt64(int64(q.IFT_PON155))}, + "IFT_PON622": {"untyped int", constant.MakeInt64(int64(q.IFT_PON622))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPATM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPATM))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_Q2931": {"untyped int", constant.MakeInt64(int64(q.IFT_Q2931))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SIPSIG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPSIG))}, + "IFT_SIPTG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPTG))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_TELINK))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VIRTUALTG": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALTG))}, + "IFT_VOICEDID": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEDID))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEEMFGD": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEMFGD))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFGDEANA": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFGDEANA))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERCABLE": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERCABLE))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_HOST))}, + "IN_RFC3021_NET": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NET))}, + "IN_RFC3021_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NSHIFT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTH_LEVEL))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_NETWORK_LEVEL))}, + "IPV6_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_TRANS_LEVEL))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPCOMP_LEVEL))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MINHOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.IPV6_MINHOPCOUNT))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_OPTIONS))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IPV6_PIPEX))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTPORT))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTABLE))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_AUTH_LEVEL))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_NETWORK_LEVEL))}, + "IP_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_TRANS_LEVEL))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_IPCOMP_LEVEL))}, + "IP_IPDEFTTL": {"untyped int", constant.MakeInt64(int64(q.IP_IPDEFTTL))}, + "IP_IPSECFLOWINFO": {"untyped int", constant.MakeInt64(int64(q.IP_IPSECFLOWINFO))}, + "IP_IPSEC_LOCAL_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_AUTH))}, + "IP_IPSEC_LOCAL_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_CRED))}, + "IP_IPSEC_LOCAL_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_ID))}, + "IP_IPSEC_REMOTE_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_AUTH))}, + "IP_IPSEC_REMOTE_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_CRED))}, + "IP_IPSEC_REMOTE_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_ID))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IP_PIPEX))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTPORT))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVRTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRTABLE))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RTABLE))}, + "IP_SENDSRCADDR": {"untyped int", constant.MakeInt64(int64(q.IP_SENDSRCADDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LCNT_OVERLOAD_FLUSH": {"untyped int", constant.MakeInt64(int64(q.LCNT_OVERLOAD_FLUSH))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_CONCEAL": {"untyped int", constant.MakeInt64(int64(q.MAP_CONCEAL))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_FLAGMASK": {"untyped int", constant.MakeInt64(int64(q.MAP_FLAGMASK))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_INHERIT_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_COPY))}, + "MAP_INHERIT_NONE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_NONE))}, + "MAP_INHERIT_SHARE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_SHARE))}, + "MAP_INHERIT_ZERO": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_ZERO))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_BCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_BCAST))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_MCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_MCAST))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFNAMES": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFNAMES))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_STATS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_STATS))}, + "NET_RT_TABLE": {"untyped int", constant.MakeInt64(int64(q.NET_RT_TABLE))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHANGE": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHANGE))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EOF": {"untyped int", constant.MakeInt64(int64(q.NOTE_EOF))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRUNCATE))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PF_FLUSH": {"untyped int", constant.MakeInt64(int64(q.PF_FLUSH))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BFD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BFD))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DNS": {"untyped int", constant.MakeInt64(int64(q.RTAX_DNS))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTAX_LABEL))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_SEARCH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SEARCH))}, + "RTAX_SRC": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRC))}, + "RTAX_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRCMASK))}, + "RTAX_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTAX_STATIC))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BFD": {"untyped int", constant.MakeInt64(int64(q.RTA_BFD))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DNS": {"untyped int", constant.MakeInt64(int64(q.RTA_DNS))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTA_LABEL))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_SEARCH": {"untyped int", constant.MakeInt64(int64(q.RTA_SEARCH))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_SRCMASK))}, + "RTA_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTA_STATIC))}, + "RTF_ANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTF_ANNOUNCE))}, + "RTF_BFD": {"untyped int", constant.MakeInt64(int64(q.RTF_BFD))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHED": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHED))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_CONNECTED": {"untyped int", constant.MakeInt64(int64(q.RTF_CONNECTED))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MPATH": {"untyped int", constant.MakeInt64(int64(q.RTF_MPATH))}, + "RTF_MPLS": {"untyped int", constant.MakeInt64(int64(q.RTF_MPLS))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PERMANENT_ARP": {"untyped int", constant.MakeInt64(int64(q.RTF_PERMANENT_ARP))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_USETRAILERS": {"untyped int", constant.MakeInt64(int64(q.RTF_USETRAILERS))}, + "RTM_80211INFO": {"untyped int", constant.MakeInt64(int64(q.RTM_80211INFO))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_BFD": {"untyped int", constant.MakeInt64(int64(q.RTM_BFD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_CHGADDRATTR": {"untyped int", constant.MakeInt64(int64(q.RTM_CHGADDRATTR))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DESYNC": {"untyped int", constant.MakeInt64(int64(q.RTM_DESYNC))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.RTM_INVALIDATE))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MAXSIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_MAXSIZE))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_PROPOSAL": {"untyped int", constant.MakeInt64(int64(q.RTM_PROPOSAL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RT_TABLEID_BITS": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_BITS))}, + "RT_TABLEID_MASK": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_MASK))}, + "RT_TABLEID_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_MAX))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCBRDGADD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADD))}, + "SIOCBRDGADDL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADDL))}, + "SIOCBRDGADDS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADDS))}, + "SIOCBRDGARL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGARL))}, + "SIOCBRDGDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDADDR))}, + "SIOCBRDGDEL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDEL))}, + "SIOCBRDGDELS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDELS))}, + "SIOCBRDGFLUSH": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFLUSH))}, + "SIOCBRDGFRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFRL))}, + "SIOCBRDGGCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGCACHE))}, + "SIOCBRDGGFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGFD))}, + "SIOCBRDGGHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGHT))}, + "SIOCBRDGGIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGIFFLGS))}, + "SIOCBRDGGMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGMA))}, + "SIOCBRDGGPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPARAM))}, + "SIOCBRDGGPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPRI))}, + "SIOCBRDGGRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGRL))}, + "SIOCBRDGGTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGTO))}, + "SIOCBRDGIFS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGIFS))}, + "SIOCBRDGRTS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGRTS))}, + "SIOCBRDGSADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSADDR))}, + "SIOCBRDGSCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSCACHE))}, + "SIOCBRDGSFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSFD))}, + "SIOCBRDGSHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSHT))}, + "SIOCBRDGSIFCOST": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFCOST))}, + "SIOCBRDGSIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFFLGS))}, + "SIOCBRDGSIFPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFPRIO))}, + "SIOCBRDGSIFPROT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFPROT))}, + "SIOCBRDGSMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSMA))}, + "SIOCBRDGSPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPRI))}, + "SIOCBRDGSPROTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPROTO))}, + "SIOCBRDGSTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTO))}, + "SIOCBRDGSTXHC": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTXHC))}, + "SIOCDELLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCDELLABEL))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPARENT": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPARENT))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDPWE3NEIGHBOR": {"untyped int", constant.MakeInt64(int64(q.SIOCDPWE3NEIGHBOR))}, + "SIOCDVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCDVNETID))}, + "SIOCGETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGETKALIVE))}, + "SIOCGETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGETLABEL))}, + "SIOCGETMPWCFG": {"untyped int", constant.MakeInt64(int64(q.SIOCGETMPWCFG))}, + "SIOCGETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFLOW))}, + "SIOCGETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFSYNC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVLAN))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGATTR))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGLIST": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGLIST))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFHARDMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHARDMTU))}, + "SIOCGIFLLPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFLLPRIO))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPAIR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPAIR))}, + "SIOCGIFPARENT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPARENT))}, + "SIOCGIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPRIORITY))}, + "SIOCGIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRDOMAIN))}, + "SIOCGIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRTLABEL))}, + "SIOCGIFRXR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRXR))}, + "SIOCGIFSFFPAGE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSFFPAGE))}, + "SIOCGIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFXFLAGS))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLIFPHYDF": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYDF))}, + "SIOCGLIFPHYECN": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYECN))}, + "SIOCGLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYRTABLE))}, + "SIOCGLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYTTL))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGPWE3": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3))}, + "SIOCGPWE3CTRLWORD": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3CTRLWORD))}, + "SIOCGPWE3FAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3FAT))}, + "SIOCGPWE3NEIGHBOR": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3NEIGHBOR))}, + "SIOCGSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSPPPPARAMS))}, + "SIOCGTXHPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCGTXHPRIO))}, + "SIOCGUMBINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCGUMBINFO))}, + "SIOCGUMBPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCGUMBPARAM))}, + "SIOCGVH": {"untyped int", constant.MakeInt64(int64(q.SIOCGVH))}, + "SIOCGVNETFLOWID": {"untyped int", constant.MakeInt64(int64(q.SIOCGVNETFLOWID))}, + "SIOCGVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCGVNETID))}, + "SIOCIFAFATTACH": {"untyped int", constant.MakeInt64(int64(q.SIOCIFAFATTACH))}, + "SIOCIFAFDETACH": {"untyped int", constant.MakeInt64(int64(q.SIOCIFAFDETACH))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSETKALIVE))}, + "SIOCSETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSETLABEL))}, + "SIOCSETMPWCFG": {"untyped int", constant.MakeInt64(int64(q.SIOCSETMPWCFG))}, + "SIOCSETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFLOW))}, + "SIOCSETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFSYNC))}, + "SIOCSETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSETVLAN))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGATTR))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFLLPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLPRIO))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPAIR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPAIR))}, + "SIOCSIFPARENT": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPARENT))}, + "SIOCSIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPRIORITY))}, + "SIOCSIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRDOMAIN))}, + "SIOCSIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRTLABEL))}, + "SIOCSIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFXFLAGS))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLIFPHYDF": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYDF))}, + "SIOCSLIFPHYECN": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYECN))}, + "SIOCSLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYRTABLE))}, + "SIOCSLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYTTL))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSPWE3CTRLWORD": {"untyped int", constant.MakeInt64(int64(q.SIOCSPWE3CTRLWORD))}, + "SIOCSPWE3FAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSPWE3FAT))}, + "SIOCSPWE3NEIGHBOR": {"untyped int", constant.MakeInt64(int64(q.SIOCSPWE3NEIGHBOR))}, + "SIOCSSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCSSPPPPARAMS))}, + "SIOCSTXHPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCSTXHPRIO))}, + "SIOCSUMBPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCSUMBPARAM))}, + "SIOCSVH": {"untyped int", constant.MakeInt64(int64(q.SIOCSVH))}, + "SIOCSVNETFLOWID": {"untyped int", constant.MakeInt64(int64(q.SIOCSVNETFLOWID))}, + "SIOCSVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCSVNETID))}, + "SIOCSWGDPID": {"untyped int", constant.MakeInt64(int64(q.SIOCSWGDPID))}, + "SIOCSWGMAXFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCSWGMAXFLOW))}, + "SIOCSWGMAXGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCSWGMAXGROUP))}, + "SIOCSWSDPID": {"untyped int", constant.MakeInt64(int64(q.SIOCSWSDPID))}, + "SIOCSWSPORTNO": {"untyped int", constant.MakeInt64(int64(q.SIOCSWSPORTNO))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_DNS": {"untyped int", constant.MakeInt64(int64(q.SOCK_DNS))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_BINDANY": {"untyped int", constant.MakeInt64(int64(q.SO_BINDANY))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NETPROC": {"untyped int", constant.MakeInt64(int64(q.SO_NETPROC))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RTABLE": {"untyped int", constant.MakeInt64(int64(q.SO_RTABLE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SO_SPLICE))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_ZEROIZE": {"untyped int", constant.MakeInt64(int64(q.SO_ZEROIZE))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJFREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJFREQ))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHFLAGSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGSAT))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDTABLECOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLECOUNT))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETENTROPY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETENTROPY))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN_R": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN_R))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRTABLE))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTHRID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTHRID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_KBIND))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQUERY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQUERY))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PLEDGE": {"untyped int", constant.MakeInt64(int64(q.SYS_PLEDGE))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDSYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDSYSLOG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRTABLE))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCTL))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCTL))}, + "SYS_THRKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_THRKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UNVEIL": {"untyped int", constant.MakeInt64(int64(q.SYS_UNVEIL))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___GET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___GET_TCB))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___SET_TCB))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "SYS___TFORK": {"untyped int", constant.MakeInt64(int64(q.SYS___TFORK))}, + "SYS___THREXIT": {"untyped int", constant.MakeInt64(int64(q.SYS___THREXIT))}, + "SYS___THRSIGDIVERT": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSIGDIVERT))}, + "SYS___THRSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSLEEP))}, + "SYS___THRWAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRWAKEUP))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_SACK_ENABLE": {"untyped int", constant.MakeInt64(int64(q.TCP_SACK_ENABLE))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCHKVERAUTH": {"untyped int", constant.MakeInt64(int64(q.TIOCCHKVERAUTH))}, + "TIOCCLRVERAUTH": {"untyped int", constant.MakeInt64(int64(q.TIOCCLRVERAUTH))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLAG_CLOCAL": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CLOCAL))}, + "TIOCFLAG_CRTSCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CRTSCTS))}, + "TIOCFLAG_MDMBUF": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_MDMBUF))}, + "TIOCFLAG_PPS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_PPS))}, + "TIOCFLAG_SOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_SOFTCAR))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCGFLAGS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCGTSTAMP))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETVERAUTH": {"untyped int", constant.MakeInt64(int64(q.TIOCSETVERAUTH))}, + "TIOCSFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCSFLAGS))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTSTAMP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TIOCUCNTL_CBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL_CBRK))}, + "TIOCUCNTL_SBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL_SBRK))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALTSIG": {"untyped int", constant.MakeInt64(int64(q.WALTSIG))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_openbsd_ppc64.go b/pkg/syscall/go122_export_openbsd_ppc64.go new file mode 100755 index 00000000..99234c1d --- /dev/null +++ b/pkg/syscall/go122_export_openbsd_ppc64.go @@ -0,0 +1,2101 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Mclpool": reflect.TypeOf((*q.Mclpool)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EIPSEC": {reflect.TypeOf(q.EIPSEC), constant.MakeInt64(int64(q.EIPSEC))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_ENCAP": {"untyped int", constant.MakeInt64(int64(q.AF_ENCAP))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FRELAY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRELAY))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRFILT))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCGFILDROP))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRFILT))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCSFILDROP))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIRECTION_IN": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_IN))}, + "BPF_DIRECTION_OUT": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_OUT))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_FILDROP_CAPTURE": {"untyped int", constant.MakeInt64(int64(q.BPF_FILDROP_CAPTURE))}, + "BPF_FILDROP_DROP": {"untyped int", constant.MakeInt64(int64(q.BPF_FILDROP_DROP))}, + "BPF_FILDROP_PASS": {"untyped int", constant.MakeInt64(int64(q.BPF_FILDROP_PASS))}, + "BPF_F_DIR_IN": {"untyped int", constant.MakeInt64(int64(q.BPF_F_DIR_IN))}, + "BPF_F_DIR_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_F_DIR_MASK))}, + "BPF_F_DIR_OUT": {"untyped int", constant.MakeInt64(int64(q.BPF_F_DIR_OUT))}, + "BPF_F_DIR_SHIFT": {"untyped int", constant.MakeInt64(int64(q.BPF_F_DIR_SHIFT))}, + "BPF_F_FLOWID": {"untyped int", constant.MakeInt64(int64(q.BPF_F_FLOWID))}, + "BPF_F_PRI_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_F_PRI_MASK))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RND": {"untyped int", constant.MakeInt64(int64(q.BPF_RND))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DIOCOSFPFLUSH": {"untyped int", constant.MakeInt64(int64(q.DIOCOSFPFLUSH))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_OPENFLOW": {"untyped int", constant.MakeInt64(int64(q.DLT_OPENFLOW))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_USBPCAP": {"untyped int", constant.MakeInt64(int64(q.DLT_USBPCAP))}, + "DLT_USER0": {"untyped int", constant.MakeInt64(int64(q.DLT_USER0))}, + "DLT_USER1": {"untyped int", constant.MakeInt64(int64(q.DLT_USER1))}, + "DLT_USER10": {"untyped int", constant.MakeInt64(int64(q.DLT_USER10))}, + "DLT_USER11": {"untyped int", constant.MakeInt64(int64(q.DLT_USER11))}, + "DLT_USER12": {"untyped int", constant.MakeInt64(int64(q.DLT_USER12))}, + "DLT_USER13": {"untyped int", constant.MakeInt64(int64(q.DLT_USER13))}, + "DLT_USER14": {"untyped int", constant.MakeInt64(int64(q.DLT_USER14))}, + "DLT_USER15": {"untyped int", constant.MakeInt64(int64(q.DLT_USER15))}, + "DLT_USER2": {"untyped int", constant.MakeInt64(int64(q.DLT_USER2))}, + "DLT_USER3": {"untyped int", constant.MakeInt64(int64(q.DLT_USER3))}, + "DLT_USER4": {"untyped int", constant.MakeInt64(int64(q.DLT_USER4))}, + "DLT_USER5": {"untyped int", constant.MakeInt64(int64(q.DLT_USER5))}, + "DLT_USER6": {"untyped int", constant.MakeInt64(int64(q.DLT_USER6))}, + "DLT_USER7": {"untyped int", constant.MakeInt64(int64(q.DLT_USER7))}, + "DLT_USER8": {"untyped int", constant.MakeInt64(int64(q.DLT_USER8))}, + "DLT_USER9": {"untyped int", constant.MakeInt64(int64(q.DLT_USER9))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMT_TAGOVF": {"untyped int", constant.MakeInt64(int64(q.EMT_TAGOVF))}, + "EMUL_ENABLED": {"untyped int", constant.MakeInt64(int64(q.EMUL_ENABLED))}, + "EMUL_NATIVE": {"untyped int", constant.MakeInt64(int64(q.EMUL_NATIVE))}, + "ENDRUNDISC": {"untyped int", constant.MakeInt64(int64(q.ENDRUNDISC))}, + "ETH64_8021_RSVD_MASK": {"untyped int", constant.MakeInt64(int64(q.ETH64_8021_RSVD_MASK))}, + "ETH64_8021_RSVD_PREFIX": {"untyped int", constant.MakeInt64(int64(q.ETH64_8021_RSVD_PREFIX))}, + "ETHERMIN": {"untyped int", constant.MakeInt64(int64(q.ETHERMIN))}, + "ETHERMTU": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU))}, + "ETHERTYPE_8023": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_8023))}, + "ETHERTYPE_AARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AARP))}, + "ETHERTYPE_ACCTON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ACCTON))}, + "ETHERTYPE_AEONIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AEONIC))}, + "ETHERTYPE_ALPHA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ALPHA))}, + "ETHERTYPE_AMBER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMBER))}, + "ETHERTYPE_AMOEBA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMOEBA))}, + "ETHERTYPE_AOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AOE))}, + "ETHERTYPE_APOLLO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLO))}, + "ETHERTYPE_APOLLODOMAIN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLODOMAIN))}, + "ETHERTYPE_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLETALK))}, + "ETHERTYPE_APPLITEK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLITEK))}, + "ETHERTYPE_ARGONAUT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARGONAUT))}, + "ETHERTYPE_ARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARP))}, + "ETHERTYPE_AT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AT))}, + "ETHERTYPE_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATALK))}, + "ETHERTYPE_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATOMIC))}, + "ETHERTYPE_ATT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATT))}, + "ETHERTYPE_ATTSTANFORD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATTSTANFORD))}, + "ETHERTYPE_AUTOPHON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AUTOPHON))}, + "ETHERTYPE_AXIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AXIS))}, + "ETHERTYPE_BCLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BCLOOP))}, + "ETHERTYPE_BOFL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BOFL))}, + "ETHERTYPE_CABLETRON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CABLETRON))}, + "ETHERTYPE_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CHAOS))}, + "ETHERTYPE_COMDESIGN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMDESIGN))}, + "ETHERTYPE_COMPUGRAPHIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMPUGRAPHIC))}, + "ETHERTYPE_COUNTERPOINT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COUNTERPOINT))}, + "ETHERTYPE_CRONUS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUS))}, + "ETHERTYPE_CRONUSVLN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUSVLN))}, + "ETHERTYPE_DCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DCA))}, + "ETHERTYPE_DDE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DDE))}, + "ETHERTYPE_DEBNI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DEBNI))}, + "ETHERTYPE_DECAM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECAM))}, + "ETHERTYPE_DECCUST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECCUST))}, + "ETHERTYPE_DECDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDIAG))}, + "ETHERTYPE_DECDNS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDNS))}, + "ETHERTYPE_DECDTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDTS))}, + "ETHERTYPE_DECEXPER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECEXPER))}, + "ETHERTYPE_DECLAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLAST))}, + "ETHERTYPE_DECLTM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLTM))}, + "ETHERTYPE_DECMUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECMUMPS))}, + "ETHERTYPE_DECNETBIOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECNETBIOS))}, + "ETHERTYPE_DELTACON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DELTACON))}, + "ETHERTYPE_DIDDLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DIDDLE))}, + "ETHERTYPE_DLOG1": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG1))}, + "ETHERTYPE_DLOG2": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG2))}, + "ETHERTYPE_DN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DN))}, + "ETHERTYPE_DOGFIGHT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DOGFIGHT))}, + "ETHERTYPE_DSMD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DSMD))}, + "ETHERTYPE_EAPOL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EAPOL))}, + "ETHERTYPE_ECMA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ECMA))}, + "ETHERTYPE_ENCRYPT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ENCRYPT))}, + "ETHERTYPE_ES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ES))}, + "ETHERTYPE_EXCELAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXCELAN))}, + "ETHERTYPE_EXPERDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXPERDATA))}, + "ETHERTYPE_FLIP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLIP))}, + "ETHERTYPE_FLOWCONTROL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLOWCONTROL))}, + "ETHERTYPE_FRARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FRARP))}, + "ETHERTYPE_GENDYN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_GENDYN))}, + "ETHERTYPE_HAYES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HAYES))}, + "ETHERTYPE_HIPPI_FP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HIPPI_FP))}, + "ETHERTYPE_HITACHI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HITACHI))}, + "ETHERTYPE_HP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HP))}, + "ETHERTYPE_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUP))}, + "ETHERTYPE_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUPAT))}, + "ETHERTYPE_IMLBL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBL))}, + "ETHERTYPE_IMLBLDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBLDIAG))}, + "ETHERTYPE_IP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IP))}, + "ETHERTYPE_IPAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPAS))}, + "ETHERTYPE_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPV6))}, + "ETHERTYPE_IPX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPX))}, + "ETHERTYPE_IPXNEW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPXNEW))}, + "ETHERTYPE_KALPANA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_KALPANA))}, + "ETHERTYPE_LANBRIDGE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANBRIDGE))}, + "ETHERTYPE_LANPROBE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANPROBE))}, + "ETHERTYPE_LAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LAT))}, + "ETHERTYPE_LBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LBACK))}, + "ETHERTYPE_LITTLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LITTLE))}, + "ETHERTYPE_LLDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LLDP))}, + "ETHERTYPE_LOGICRAFT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOGICRAFT))}, + "ETHERTYPE_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOOPBACK))}, + "ETHERTYPE_MACSEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MACSEC))}, + "ETHERTYPE_MATRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MATRA))}, + "ETHERTYPE_MAX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MAX))}, + "ETHERTYPE_MERIT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MERIT))}, + "ETHERTYPE_MICP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MICP))}, + "ETHERTYPE_MOPDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPDL))}, + "ETHERTYPE_MOPRC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPRC))}, + "ETHERTYPE_MOTOROLA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOTOROLA))}, + "ETHERTYPE_MPLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS))}, + "ETHERTYPE_MPLS_MCAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS_MCAST))}, + "ETHERTYPE_MUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MUMPS))}, + "ETHERTYPE_NBPCC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCC))}, + "ETHERTYPE_NBPCLAIM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLAIM))}, + "ETHERTYPE_NBPCLREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLREQ))}, + "ETHERTYPE_NBPCLRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLRSP))}, + "ETHERTYPE_NBPCREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCREQ))}, + "ETHERTYPE_NBPCRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCRSP))}, + "ETHERTYPE_NBPDG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDG))}, + "ETHERTYPE_NBPDGB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDGB))}, + "ETHERTYPE_NBPDLTE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDLTE))}, + "ETHERTYPE_NBPRAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAR))}, + "ETHERTYPE_NBPRAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAS))}, + "ETHERTYPE_NBPRST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRST))}, + "ETHERTYPE_NBPSCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPSCD))}, + "ETHERTYPE_NBPVCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPVCD))}, + "ETHERTYPE_NBS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBS))}, + "ETHERTYPE_NCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NCD))}, + "ETHERTYPE_NESTAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NESTAR))}, + "ETHERTYPE_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NETBEUI))}, + "ETHERTYPE_NHRP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NHRP))}, + "ETHERTYPE_NOVELL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NOVELL))}, + "ETHERTYPE_NS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NS))}, + "ETHERTYPE_NSAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSAT))}, + "ETHERTYPE_NSCOMPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSCOMPAT))}, + "ETHERTYPE_NSH": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSH))}, + "ETHERTYPE_NTRAILER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NTRAILER))}, + "ETHERTYPE_OS9": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9))}, + "ETHERTYPE_OS9NET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9NET))}, + "ETHERTYPE_PACER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PACER))}, + "ETHERTYPE_PBB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PBB))}, + "ETHERTYPE_PCS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PCS))}, + "ETHERTYPE_PLANNING": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PLANNING))}, + "ETHERTYPE_PPP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPP))}, + "ETHERTYPE_PPPOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOE))}, + "ETHERTYPE_PPPOEDISC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOEDISC))}, + "ETHERTYPE_PRIMENTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PRIMENTS))}, + "ETHERTYPE_PUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUP))}, + "ETHERTYPE_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUPAT))}, + "ETHERTYPE_QINQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_QINQ))}, + "ETHERTYPE_RACAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RACAL))}, + "ETHERTYPE_RATIONAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RATIONAL))}, + "ETHERTYPE_RAWFR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RAWFR))}, + "ETHERTYPE_RCL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RCL))}, + "ETHERTYPE_RDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RDP))}, + "ETHERTYPE_RETIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RETIX))}, + "ETHERTYPE_REVARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_REVARP))}, + "ETHERTYPE_SCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SCA))}, + "ETHERTYPE_SECTRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECTRA))}, + "ETHERTYPE_SECUREDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECUREDATA))}, + "ETHERTYPE_SGITW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SGITW))}, + "ETHERTYPE_SG_BOUNCE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_BOUNCE))}, + "ETHERTYPE_SG_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_DIAG))}, + "ETHERTYPE_SG_NETGAMES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_NETGAMES))}, + "ETHERTYPE_SG_RESV": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_RESV))}, + "ETHERTYPE_SIMNET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SIMNET))}, + "ETHERTYPE_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SLOW))}, + "ETHERTYPE_SNA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNA))}, + "ETHERTYPE_SNMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNMP))}, + "ETHERTYPE_SONIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SONIX))}, + "ETHERTYPE_SPIDER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPIDER))}, + "ETHERTYPE_SPRITE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPRITE))}, + "ETHERTYPE_STP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_STP))}, + "ETHERTYPE_TALARIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARIS))}, + "ETHERTYPE_TALARISMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARISMC))}, + "ETHERTYPE_TCPCOMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPCOMP))}, + "ETHERTYPE_TCPSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPSM))}, + "ETHERTYPE_TEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TEC))}, + "ETHERTYPE_TIGAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TIGAN))}, + "ETHERTYPE_TRAIL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRAIL))}, + "ETHERTYPE_TRANSETHER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRANSETHER))}, + "ETHERTYPE_TYMSHARE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TYMSHARE))}, + "ETHERTYPE_UBBST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBBST))}, + "ETHERTYPE_UBDEBUG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDEBUG))}, + "ETHERTYPE_UBDIAGLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDIAGLOOP))}, + "ETHERTYPE_UBDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDL))}, + "ETHERTYPE_UBNIU": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNIU))}, + "ETHERTYPE_UBNMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNMC))}, + "ETHERTYPE_VALID": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VALID))}, + "ETHERTYPE_VARIAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VARIAN))}, + "ETHERTYPE_VAXELN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VAXELN))}, + "ETHERTYPE_VEECO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEECO))}, + "ETHERTYPE_VEXP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEXP))}, + "ETHERTYPE_VGLAB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VGLAB))}, + "ETHERTYPE_VINES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINES))}, + "ETHERTYPE_VINESECHO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESECHO))}, + "ETHERTYPE_VINESLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESLOOP))}, + "ETHERTYPE_VITAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VITAL))}, + "ETHERTYPE_VLAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLAN))}, + "ETHERTYPE_VLTLMAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLTLMAN))}, + "ETHERTYPE_VPROD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VPROD))}, + "ETHERTYPE_VURESERVED": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VURESERVED))}, + "ETHERTYPE_WATERLOO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WATERLOO))}, + "ETHERTYPE_WELLFLEET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WELLFLEET))}, + "ETHERTYPE_X25": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X25))}, + "ETHERTYPE_X75": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X75))}, + "ETHERTYPE_XNSSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XNSSM))}, + "ETHERTYPE_XTP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XTP))}, + "ETHER_ADDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ADDR_LEN))}, + "ETHER_ALIGN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ALIGN))}, + "ETHER_CRC_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_LEN))}, + "ETHER_CRC_POLY_BE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_BE))}, + "ETHER_CRC_POLY_LE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_LE))}, + "ETHER_HDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_HDR_LEN))}, + "ETHER_MAX_DIX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_DIX_LEN))}, + "ETHER_MAX_HARDMTU_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_HARDMTU_LEN))}, + "ETHER_MAX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN))}, + "ETHER_MIN_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MIN_LEN))}, + "ETHER_TYPE_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_TYPE_LEN))}, + "ETHER_VLAN_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_VLAN_ENCAP_LEN))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_DEVICE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_DEVICE))}, + "EVFILT_EXCEPT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_EXCEPT))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EVL_ENCAPLEN": {"untyped int", constant.MakeInt64(int64(q.EVL_ENCAPLEN))}, + "EVL_PRIO_BITS": {"untyped int", constant.MakeInt64(int64(q.EVL_PRIO_BITS))}, + "EVL_PRIO_MAX": {"untyped int", constant.MakeInt64(int64(q.EVL_PRIO_MAX))}, + "EVL_VLID_MASK": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_MASK))}, + "EVL_VLID_MAX": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_MAX))}, + "EVL_VLID_MIN": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_MIN))}, + "EVL_VLID_NULL": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_NULL))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_ISATTY": {"untyped int", constant.MakeInt64(int64(q.F_ISATTY))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_STATICARP": {"untyped int", constant.MakeInt64(int64(q.IFF_STATICARP))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.IFT_BLUETOOTH))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DOCSCABLEUPSTREAMCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAMCHANNEL))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DUMMY": {"untyped int", constant.MakeInt64(int64(q.IFT_DUMMY))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ECONET": {"untyped int", constant.MakeInt64(int64(q.IFT_ECONET))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LINEGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_LINEGROUP))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MBIM": {"untyped int", constant.MakeInt64(int64(q.IFT_MBIM))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFLOW": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOW))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_PON155": {"untyped int", constant.MakeInt64(int64(q.IFT_PON155))}, + "IFT_PON622": {"untyped int", constant.MakeInt64(int64(q.IFT_PON622))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPATM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPATM))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_Q2931": {"untyped int", constant.MakeInt64(int64(q.IFT_Q2931))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SIPSIG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPSIG))}, + "IFT_SIPTG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPTG))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_TELINK))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VIRTUALTG": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALTG))}, + "IFT_VOICEDID": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEDID))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEEMFGD": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEMFGD))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFGDEANA": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFGDEANA))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERCABLE": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERCABLE))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_WIREGUARD": {"untyped int", constant.MakeInt64(int64(q.IFT_WIREGUARD))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_HOST))}, + "IN_RFC3021_NET": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NET))}, + "IN_RFC3021_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NSHIFT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTH_LEVEL))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_NETWORK_LEVEL))}, + "IPV6_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_TRANS_LEVEL))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPCOMP_LEVEL))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MINHOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.IPV6_MINHOPCOUNT))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_OPTIONS))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IPV6_PIPEX))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTPORT))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTABLE))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_AUTH_LEVEL))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_NETWORK_LEVEL))}, + "IP_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_TRANS_LEVEL))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_IPCOMP_LEVEL))}, + "IP_IPDEFTTL": {"untyped int", constant.MakeInt64(int64(q.IP_IPDEFTTL))}, + "IP_IPSECFLOWINFO": {"untyped int", constant.MakeInt64(int64(q.IP_IPSECFLOWINFO))}, + "IP_IPSEC_LOCAL_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_AUTH))}, + "IP_IPSEC_LOCAL_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_CRED))}, + "IP_IPSEC_LOCAL_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_ID))}, + "IP_IPSEC_REMOTE_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_AUTH))}, + "IP_IPSEC_REMOTE_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_CRED))}, + "IP_IPSEC_REMOTE_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_ID))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IP_PIPEX))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTPORT))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVRTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRTABLE))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RTABLE))}, + "IP_SENDSRCADDR": {"untyped int", constant.MakeInt64(int64(q.IP_SENDSRCADDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LCNT_OVERLOAD_FLUSH": {"untyped int", constant.MakeInt64(int64(q.LCNT_OVERLOAD_FLUSH))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_CONCEAL": {"untyped int", constant.MakeInt64(int64(q.MAP_CONCEAL))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_FLAGMASK": {"untyped int", constant.MakeInt64(int64(q.MAP_FLAGMASK))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_INHERIT_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_COPY))}, + "MAP_INHERIT_NONE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_NONE))}, + "MAP_INHERIT_SHARE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_SHARE))}, + "MAP_INHERIT_ZERO": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_ZERO))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_BCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_BCAST))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_MCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_MCAST))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFNAMES": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFNAMES))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_SOURCE": {"untyped int", constant.MakeInt64(int64(q.NET_RT_SOURCE))}, + "NET_RT_STATS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_STATS))}, + "NET_RT_TABLE": {"untyped int", constant.MakeInt64(int64(q.NET_RT_TABLE))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHANGE": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHANGE))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EOF": {"untyped int", constant.MakeInt64(int64(q.NOTE_EOF))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_OOB": {"untyped int", constant.MakeInt64(int64(q.NOTE_OOB))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRUNCATE))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PF_FLUSH": {"untyped int", constant.MakeInt64(int64(q.PF_FLUSH))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BFD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BFD))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DNS": {"untyped int", constant.MakeInt64(int64(q.RTAX_DNS))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTAX_LABEL))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_SEARCH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SEARCH))}, + "RTAX_SRC": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRC))}, + "RTAX_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRCMASK))}, + "RTAX_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTAX_STATIC))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BFD": {"untyped int", constant.MakeInt64(int64(q.RTA_BFD))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DNS": {"untyped int", constant.MakeInt64(int64(q.RTA_DNS))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTA_LABEL))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_SEARCH": {"untyped int", constant.MakeInt64(int64(q.RTA_SEARCH))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_SRCMASK))}, + "RTA_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTA_STATIC))}, + "RTF_ANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTF_ANNOUNCE))}, + "RTF_BFD": {"untyped int", constant.MakeInt64(int64(q.RTF_BFD))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHED": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHED))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_CONNECTED": {"untyped int", constant.MakeInt64(int64(q.RTF_CONNECTED))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MPATH": {"untyped int", constant.MakeInt64(int64(q.RTF_MPATH))}, + "RTF_MPLS": {"untyped int", constant.MakeInt64(int64(q.RTF_MPLS))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PERMANENT_ARP": {"untyped int", constant.MakeInt64(int64(q.RTF_PERMANENT_ARP))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_USETRAILERS": {"untyped int", constant.MakeInt64(int64(q.RTF_USETRAILERS))}, + "RTM_80211INFO": {"untyped int", constant.MakeInt64(int64(q.RTM_80211INFO))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_BFD": {"untyped int", constant.MakeInt64(int64(q.RTM_BFD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_CHGADDRATTR": {"untyped int", constant.MakeInt64(int64(q.RTM_CHGADDRATTR))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DESYNC": {"untyped int", constant.MakeInt64(int64(q.RTM_DESYNC))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.RTM_INVALIDATE))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MAXSIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_MAXSIZE))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_PROPOSAL": {"untyped int", constant.MakeInt64(int64(q.RTM_PROPOSAL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_SOURCE": {"untyped int", constant.MakeInt64(int64(q.RTM_SOURCE))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RT_TABLEID_BITS": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_BITS))}, + "RT_TABLEID_MASK": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_MASK))}, + "RT_TABLEID_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_MAX))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCBRDGADD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADD))}, + "SIOCBRDGADDL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADDL))}, + "SIOCBRDGADDS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADDS))}, + "SIOCBRDGARL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGARL))}, + "SIOCBRDGDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDADDR))}, + "SIOCBRDGDEL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDEL))}, + "SIOCBRDGDELS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDELS))}, + "SIOCBRDGFLUSH": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFLUSH))}, + "SIOCBRDGFRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFRL))}, + "SIOCBRDGGCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGCACHE))}, + "SIOCBRDGGFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGFD))}, + "SIOCBRDGGHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGHT))}, + "SIOCBRDGGIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGIFFLGS))}, + "SIOCBRDGGMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGMA))}, + "SIOCBRDGGPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPARAM))}, + "SIOCBRDGGPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPRI))}, + "SIOCBRDGGRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGRL))}, + "SIOCBRDGGTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGTO))}, + "SIOCBRDGIFS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGIFS))}, + "SIOCBRDGRTS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGRTS))}, + "SIOCBRDGSADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSADDR))}, + "SIOCBRDGSCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSCACHE))}, + "SIOCBRDGSFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSFD))}, + "SIOCBRDGSHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSHT))}, + "SIOCBRDGSIFCOST": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFCOST))}, + "SIOCBRDGSIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFFLGS))}, + "SIOCBRDGSIFPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFPRIO))}, + "SIOCBRDGSIFPROT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFPROT))}, + "SIOCBRDGSMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSMA))}, + "SIOCBRDGSPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPRI))}, + "SIOCBRDGSPROTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPROTO))}, + "SIOCBRDGSTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTO))}, + "SIOCBRDGSTXHC": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTXHC))}, + "SIOCDELLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCDELLABEL))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPARENT": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPARENT))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDPWE3NEIGHBOR": {"untyped int", constant.MakeInt64(int64(q.SIOCDPWE3NEIGHBOR))}, + "SIOCDVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCDVNETID))}, + "SIOCGETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGETKALIVE))}, + "SIOCGETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGETLABEL))}, + "SIOCGETMPWCFG": {"untyped int", constant.MakeInt64(int64(q.SIOCGETMPWCFG))}, + "SIOCGETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFLOW))}, + "SIOCGETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFSYNC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVLAN))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGATTR))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGLIST": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGLIST))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFHARDMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHARDMTU))}, + "SIOCGIFLLPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFLLPRIO))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPAIR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPAIR))}, + "SIOCGIFPARENT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPARENT))}, + "SIOCGIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPRIORITY))}, + "SIOCGIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRDOMAIN))}, + "SIOCGIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRTLABEL))}, + "SIOCGIFRXR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRXR))}, + "SIOCGIFSFFPAGE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSFFPAGE))}, + "SIOCGIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFXFLAGS))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLIFPHYDF": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYDF))}, + "SIOCGLIFPHYECN": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYECN))}, + "SIOCGLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYRTABLE))}, + "SIOCGLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYTTL))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGPWE3": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3))}, + "SIOCGPWE3CTRLWORD": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3CTRLWORD))}, + "SIOCGPWE3FAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3FAT))}, + "SIOCGPWE3NEIGHBOR": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3NEIGHBOR))}, + "SIOCGRXHPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCGRXHPRIO))}, + "SIOCGSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSPPPPARAMS))}, + "SIOCGTXHPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCGTXHPRIO))}, + "SIOCGUMBINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCGUMBINFO))}, + "SIOCGUMBPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCGUMBPARAM))}, + "SIOCGVH": {"untyped int", constant.MakeInt64(int64(q.SIOCGVH))}, + "SIOCGVNETFLOWID": {"untyped int", constant.MakeInt64(int64(q.SIOCGVNETFLOWID))}, + "SIOCGVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCGVNETID))}, + "SIOCIFAFATTACH": {"untyped int", constant.MakeInt64(int64(q.SIOCIFAFATTACH))}, + "SIOCIFAFDETACH": {"untyped int", constant.MakeInt64(int64(q.SIOCIFAFDETACH))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSETKALIVE))}, + "SIOCSETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSETLABEL))}, + "SIOCSETMPWCFG": {"untyped int", constant.MakeInt64(int64(q.SIOCSETMPWCFG))}, + "SIOCSETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFLOW))}, + "SIOCSETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFSYNC))}, + "SIOCSETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSETVLAN))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGATTR))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFLLPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLPRIO))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPAIR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPAIR))}, + "SIOCSIFPARENT": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPARENT))}, + "SIOCSIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPRIORITY))}, + "SIOCSIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRDOMAIN))}, + "SIOCSIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRTLABEL))}, + "SIOCSIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFXFLAGS))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLIFPHYDF": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYDF))}, + "SIOCSLIFPHYECN": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYECN))}, + "SIOCSLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYRTABLE))}, + "SIOCSLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYTTL))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSPWE3CTRLWORD": {"untyped int", constant.MakeInt64(int64(q.SIOCSPWE3CTRLWORD))}, + "SIOCSPWE3FAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSPWE3FAT))}, + "SIOCSPWE3NEIGHBOR": {"untyped int", constant.MakeInt64(int64(q.SIOCSPWE3NEIGHBOR))}, + "SIOCSRXHPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCSRXHPRIO))}, + "SIOCSSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCSSPPPPARAMS))}, + "SIOCSTXHPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCSTXHPRIO))}, + "SIOCSUMBPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCSUMBPARAM))}, + "SIOCSVH": {"untyped int", constant.MakeInt64(int64(q.SIOCSVH))}, + "SIOCSVNETFLOWID": {"untyped int", constant.MakeInt64(int64(q.SIOCSVNETFLOWID))}, + "SIOCSVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCSVNETID))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_DNS": {"untyped int", constant.MakeInt64(int64(q.SOCK_DNS))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_BINDANY": {"untyped int", constant.MakeInt64(int64(q.SO_BINDANY))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NETPROC": {"untyped int", constant.MakeInt64(int64(q.SO_NETPROC))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RTABLE": {"untyped int", constant.MakeInt64(int64(q.SO_RTABLE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SO_SPLICE))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_ZEROIZE": {"untyped int", constant.MakeInt64(int64(q.SO_ZEROIZE))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJFREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJFREQ))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHFLAGSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGSAT))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDTABLECOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLECOUNT))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETENTROPY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETENTROPY))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN_R": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN_R))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRTABLE))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTHRID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTHRID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_KBIND))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQUERY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQUERY))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MSYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYSCALL))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PAD_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_FTRUNCATE))}, + "SYS_PAD_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_LSEEK))}, + "SYS_PAD_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_MMAP))}, + "SYS_PAD_MQUERY": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_MQUERY))}, + "SYS_PAD_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_PREAD))}, + "SYS_PAD_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_PREADV))}, + "SYS_PAD_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_PWRITE))}, + "SYS_PAD_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_PWRITEV))}, + "SYS_PAD_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_TRUNCATE))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PLEDGE": {"untyped int", constant.MakeInt64(int64(q.SYS_PLEDGE))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDSYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDSYSLOG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRTABLE))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCTL))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCTL))}, + "SYS_THRKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_THRKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UNVEIL": {"untyped int", constant.MakeInt64(int64(q.SYS_UNVEIL))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_YPCONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_YPCONNECT))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___GET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___GET_TCB))}, + "SYS___REALPATH": {"untyped int", constant.MakeInt64(int64(q.SYS___REALPATH))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___SET_TCB))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "SYS___TFORK": {"untyped int", constant.MakeInt64(int64(q.SYS___TFORK))}, + "SYS___THREXIT": {"untyped int", constant.MakeInt64(int64(q.SYS___THREXIT))}, + "SYS___THRSIGDIVERT": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSIGDIVERT))}, + "SYS___THRSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSLEEP))}, + "SYS___THRWAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRWAKEUP))}, + "SYS___TMPFD": {"untyped int", constant.MakeInt64(int64(q.SYS___TMPFD))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_SACKHOLE_LIMIT": {"untyped int", constant.MakeInt64(int64(q.TCP_SACKHOLE_LIMIT))}, + "TCP_SACK_ENABLE": {"untyped int", constant.MakeInt64(int64(q.TCP_SACK_ENABLE))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCHKVERAUTH": {"untyped int", constant.MakeInt64(int64(q.TIOCCHKVERAUTH))}, + "TIOCCLRVERAUTH": {"untyped int", constant.MakeInt64(int64(q.TIOCCLRVERAUTH))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLAG_CLOCAL": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CLOCAL))}, + "TIOCFLAG_CRTSCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CRTSCTS))}, + "TIOCFLAG_MDMBUF": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_MDMBUF))}, + "TIOCFLAG_PPS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_PPS))}, + "TIOCFLAG_SOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_SOFTCAR))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCGFLAGS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCGTSTAMP))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETVERAUTH": {"untyped int", constant.MakeInt64(int64(q.TIOCSETVERAUTH))}, + "TIOCSFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCSFLAGS))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTSTAMP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TIOCUCNTL_CBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL_CBRK))}, + "TIOCUCNTL_SBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL_SBRK))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALTSIG": {"untyped int", constant.MakeInt64(int64(q.WALTSIG))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_plan9_386.go b/pkg/syscall/go122_export_plan9_386.go new file mode 100755 index 00000000..a0d12858 --- /dev/null +++ b/pkg/syscall/go122_export_plan9_386.go @@ -0,0 +1,243 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "runtime": "runtime", + "sync": "sync", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Dir": reflect.TypeOf((*q.Dir)(nil)).Elem(), + "ErrorString": reflect.TypeOf((*q.ErrorString)(nil)).Elem(), + "Note": reflect.TypeOf((*q.Note)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Qid": reflect.TypeOf((*q.Qid)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Waitmsg": reflect.TypeOf((*q.Waitmsg)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "EACCES": reflect.ValueOf(&q.EACCES), + "EAFNOSUPPORT": reflect.ValueOf(&q.EAFNOSUPPORT), + "EBUSY": reflect.ValueOf(&q.EBUSY), + "EEXIST": reflect.ValueOf(&q.EEXIST), + "EINTR": reflect.ValueOf(&q.EINTR), + "EINVAL": reflect.ValueOf(&q.EINVAL), + "EIO": reflect.ValueOf(&q.EIO), + "EISDIR": reflect.ValueOf(&q.EISDIR), + "EMFILE": reflect.ValueOf(&q.EMFILE), + "ENAMETOOLONG": reflect.ValueOf(&q.ENAMETOOLONG), + "ENOENT": reflect.ValueOf(&q.ENOENT), + "ENOTDIR": reflect.ValueOf(&q.ENOTDIR), + "EPERM": reflect.ValueOf(&q.EPERM), + "EPLAN9": reflect.ValueOf(&q.EPLAN9), + "ESPIPE": reflect.ValueOf(&q.ESPIPE), + "ETIMEDOUT": reflect.ValueOf(&q.ETIMEDOUT), + "ErrBadName": reflect.ValueOf(&q.ErrBadName), + "ErrBadStat": reflect.ValueOf(&q.ErrBadStat), + "ErrShortStat": reflect.ValueOf(&q.ErrShortStat), + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Await": reflect.ValueOf(q.Await), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "Create": reflect.ValueOf(q.Create), + "Dup": reflect.ValueOf(q.Dup), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fd2path": reflect.ValueOf(q.Fd2path), + "Fixwd": reflect.ValueOf(q.Fixwd), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fwstat": reflect.ValueOf(q.Fwstat), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mount": reflect.ValueOf(q.Mount), + "NewError": reflect.ValueOf(q.NewError), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "Remove": reflect.ValueOf(q.Remove), + "Seek": reflect.ValueOf(q.Seek), + "Setenv": reflect.ValueOf(q.Setenv), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "UnmarshalDir": reflect.ValueOf(q.UnmarshalDir), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "WaitProcess": reflect.ValueOf(q.WaitProcess), + "Write": reflect.ValueOf(q.Write), + "Wstat": reflect.ValueOf(q.Wstat), + }, + TypedConsts: map[string]igop.TypedConst{ + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeString(string(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeString(string(q.SIGALRM))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeString(string(q.SIGHUP))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeString(string(q.SIGINT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeString(string(q.SIGKILL))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeString(string(q.SIGTERM))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "DMAPPEND": {"untyped int", constant.MakeInt64(int64(q.DMAPPEND))}, + "DMAUTH": {"untyped int", constant.MakeInt64(int64(q.DMAUTH))}, + "DMDIR": {"untyped int", constant.MakeInt64(int64(q.DMDIR))}, + "DMEXCL": {"untyped int", constant.MakeInt64(int64(q.DMEXCL))}, + "DMEXEC": {"untyped int", constant.MakeInt64(int64(q.DMEXEC))}, + "DMMOUNT": {"untyped int", constant.MakeInt64(int64(q.DMMOUNT))}, + "DMREAD": {"untyped int", constant.MakeInt64(int64(q.DMREAD))}, + "DMTMP": {"untyped int", constant.MakeInt64(int64(q.DMTMP))}, + "DMWRITE": {"untyped int", constant.MakeInt64(int64(q.DMWRITE))}, + "ERRMAX": {"untyped int", constant.MakeInt64(int64(q.ERRMAX))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "MAFTER": {"untyped int", constant.MakeInt64(int64(q.MAFTER))}, + "MBEFORE": {"untyped int", constant.MakeInt64(int64(q.MBEFORE))}, + "MCACHE": {"untyped int", constant.MakeInt64(int64(q.MCACHE))}, + "MCREATE": {"untyped int", constant.MakeInt64(int64(q.MCREATE))}, + "MMASK": {"untyped int", constant.MakeInt64(int64(q.MMASK))}, + "MORDER": {"untyped int", constant.MakeInt64(int64(q.MORDER))}, + "MREPL": {"untyped int", constant.MakeInt64(int64(q.MREPL))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "QTAPPEND": {"untyped int", constant.MakeInt64(int64(q.QTAPPEND))}, + "QTAUTH": {"untyped int", constant.MakeInt64(int64(q.QTAUTH))}, + "QTDIR": {"untyped int", constant.MakeInt64(int64(q.QTDIR))}, + "QTEXCL": {"untyped int", constant.MakeInt64(int64(q.QTEXCL))}, + "QTFILE": {"untyped int", constant.MakeInt64(int64(q.QTFILE))}, + "QTMOUNT": {"untyped int", constant.MakeInt64(int64(q.QTMOUNT))}, + "QTTMP": {"untyped int", constant.MakeInt64(int64(q.QTTMP))}, + "RFCENVG": {"untyped int", constant.MakeInt64(int64(q.RFCENVG))}, + "RFCFDG": {"untyped int", constant.MakeInt64(int64(q.RFCFDG))}, + "RFCNAMEG": {"untyped int", constant.MakeInt64(int64(q.RFCNAMEG))}, + "RFENVG": {"untyped int", constant.MakeInt64(int64(q.RFENVG))}, + "RFFDG": {"untyped int", constant.MakeInt64(int64(q.RFFDG))}, + "RFMEM": {"untyped int", constant.MakeInt64(int64(q.RFMEM))}, + "RFNAMEG": {"untyped int", constant.MakeInt64(int64(q.RFNAMEG))}, + "RFNOMNT": {"untyped int", constant.MakeInt64(int64(q.RFNOMNT))}, + "RFNOTEG": {"untyped int", constant.MakeInt64(int64(q.RFNOTEG))}, + "RFNOWAIT": {"untyped int", constant.MakeInt64(int64(q.RFNOWAIT))}, + "RFPROC": {"untyped int", constant.MakeInt64(int64(q.RFPROC))}, + "RFREND": {"untyped int", constant.MakeInt64(int64(q.RFREND))}, + "STATFIXLEN": {"untyped int", constant.MakeInt64(int64(q.STATFIXLEN))}, + "STATMAX": {"untyped int", constant.MakeInt64(int64(q.STATMAX))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_AWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AWAIT))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BRK_": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK_))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_ERRSTR": {"untyped int", constant.MakeInt64(int64(q.SYS_ERRSTR))}, + "SYS_EXEC": {"untyped int", constant.MakeInt64(int64(q.SYS_EXEC))}, + "SYS_EXITS": {"untyped int", constant.MakeInt64(int64(q.SYS_EXITS))}, + "SYS_FAUTH": {"untyped int", constant.MakeInt64(int64(q.SYS_FAUTH))}, + "SYS_FD2PATH": {"untyped int", constant.MakeInt64(int64(q.SYS_FD2PATH))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FVERSION": {"untyped int", constant.MakeInt64(int64(q.SYS_FVERSION))}, + "SYS_FWSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FWSTAT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_NOTED": {"untyped int", constant.MakeInt64(int64(q.SYS_NOTED))}, + "SYS_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_NOTIFY))}, + "SYS_NSEC": {"untyped int", constant.MakeInt64(int64(q.SYS_NSEC))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_OSEEK))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_REMOVE": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVE))}, + "SYS_RENDEZVOUS": {"untyped int", constant.MakeInt64(int64(q.SYS_RENDEZVOUS))}, + "SYS_RFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_RFORK))}, + "SYS_SEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEEK))}, + "SYS_SEGATTACH": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGATTACH))}, + "SYS_SEGBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGBRK))}, + "SYS_SEGDETACH": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGDETACH))}, + "SYS_SEGFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGFLUSH))}, + "SYS_SEGFREE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGFREE))}, + "SYS_SEMACQUIRE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMACQUIRE))}, + "SYS_SEMRELEASE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMRELEASE))}, + "SYS_SLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_SLEEP))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_SYSR1": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSR1))}, + "SYS_TSEMACQUIRE": {"untyped int", constant.MakeInt64(int64(q.SYS_TSEMACQUIRE))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_WSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_WSTAT))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_plan9_amd64.go b/pkg/syscall/go122_export_plan9_amd64.go new file mode 100755 index 00000000..a0d12858 --- /dev/null +++ b/pkg/syscall/go122_export_plan9_amd64.go @@ -0,0 +1,243 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "runtime": "runtime", + "sync": "sync", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Dir": reflect.TypeOf((*q.Dir)(nil)).Elem(), + "ErrorString": reflect.TypeOf((*q.ErrorString)(nil)).Elem(), + "Note": reflect.TypeOf((*q.Note)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Qid": reflect.TypeOf((*q.Qid)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Waitmsg": reflect.TypeOf((*q.Waitmsg)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "EACCES": reflect.ValueOf(&q.EACCES), + "EAFNOSUPPORT": reflect.ValueOf(&q.EAFNOSUPPORT), + "EBUSY": reflect.ValueOf(&q.EBUSY), + "EEXIST": reflect.ValueOf(&q.EEXIST), + "EINTR": reflect.ValueOf(&q.EINTR), + "EINVAL": reflect.ValueOf(&q.EINVAL), + "EIO": reflect.ValueOf(&q.EIO), + "EISDIR": reflect.ValueOf(&q.EISDIR), + "EMFILE": reflect.ValueOf(&q.EMFILE), + "ENAMETOOLONG": reflect.ValueOf(&q.ENAMETOOLONG), + "ENOENT": reflect.ValueOf(&q.ENOENT), + "ENOTDIR": reflect.ValueOf(&q.ENOTDIR), + "EPERM": reflect.ValueOf(&q.EPERM), + "EPLAN9": reflect.ValueOf(&q.EPLAN9), + "ESPIPE": reflect.ValueOf(&q.ESPIPE), + "ETIMEDOUT": reflect.ValueOf(&q.ETIMEDOUT), + "ErrBadName": reflect.ValueOf(&q.ErrBadName), + "ErrBadStat": reflect.ValueOf(&q.ErrBadStat), + "ErrShortStat": reflect.ValueOf(&q.ErrShortStat), + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Await": reflect.ValueOf(q.Await), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "Create": reflect.ValueOf(q.Create), + "Dup": reflect.ValueOf(q.Dup), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fd2path": reflect.ValueOf(q.Fd2path), + "Fixwd": reflect.ValueOf(q.Fixwd), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fwstat": reflect.ValueOf(q.Fwstat), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mount": reflect.ValueOf(q.Mount), + "NewError": reflect.ValueOf(q.NewError), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "Remove": reflect.ValueOf(q.Remove), + "Seek": reflect.ValueOf(q.Seek), + "Setenv": reflect.ValueOf(q.Setenv), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "UnmarshalDir": reflect.ValueOf(q.UnmarshalDir), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "WaitProcess": reflect.ValueOf(q.WaitProcess), + "Write": reflect.ValueOf(q.Write), + "Wstat": reflect.ValueOf(q.Wstat), + }, + TypedConsts: map[string]igop.TypedConst{ + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeString(string(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeString(string(q.SIGALRM))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeString(string(q.SIGHUP))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeString(string(q.SIGINT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeString(string(q.SIGKILL))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeString(string(q.SIGTERM))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "DMAPPEND": {"untyped int", constant.MakeInt64(int64(q.DMAPPEND))}, + "DMAUTH": {"untyped int", constant.MakeInt64(int64(q.DMAUTH))}, + "DMDIR": {"untyped int", constant.MakeInt64(int64(q.DMDIR))}, + "DMEXCL": {"untyped int", constant.MakeInt64(int64(q.DMEXCL))}, + "DMEXEC": {"untyped int", constant.MakeInt64(int64(q.DMEXEC))}, + "DMMOUNT": {"untyped int", constant.MakeInt64(int64(q.DMMOUNT))}, + "DMREAD": {"untyped int", constant.MakeInt64(int64(q.DMREAD))}, + "DMTMP": {"untyped int", constant.MakeInt64(int64(q.DMTMP))}, + "DMWRITE": {"untyped int", constant.MakeInt64(int64(q.DMWRITE))}, + "ERRMAX": {"untyped int", constant.MakeInt64(int64(q.ERRMAX))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "MAFTER": {"untyped int", constant.MakeInt64(int64(q.MAFTER))}, + "MBEFORE": {"untyped int", constant.MakeInt64(int64(q.MBEFORE))}, + "MCACHE": {"untyped int", constant.MakeInt64(int64(q.MCACHE))}, + "MCREATE": {"untyped int", constant.MakeInt64(int64(q.MCREATE))}, + "MMASK": {"untyped int", constant.MakeInt64(int64(q.MMASK))}, + "MORDER": {"untyped int", constant.MakeInt64(int64(q.MORDER))}, + "MREPL": {"untyped int", constant.MakeInt64(int64(q.MREPL))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "QTAPPEND": {"untyped int", constant.MakeInt64(int64(q.QTAPPEND))}, + "QTAUTH": {"untyped int", constant.MakeInt64(int64(q.QTAUTH))}, + "QTDIR": {"untyped int", constant.MakeInt64(int64(q.QTDIR))}, + "QTEXCL": {"untyped int", constant.MakeInt64(int64(q.QTEXCL))}, + "QTFILE": {"untyped int", constant.MakeInt64(int64(q.QTFILE))}, + "QTMOUNT": {"untyped int", constant.MakeInt64(int64(q.QTMOUNT))}, + "QTTMP": {"untyped int", constant.MakeInt64(int64(q.QTTMP))}, + "RFCENVG": {"untyped int", constant.MakeInt64(int64(q.RFCENVG))}, + "RFCFDG": {"untyped int", constant.MakeInt64(int64(q.RFCFDG))}, + "RFCNAMEG": {"untyped int", constant.MakeInt64(int64(q.RFCNAMEG))}, + "RFENVG": {"untyped int", constant.MakeInt64(int64(q.RFENVG))}, + "RFFDG": {"untyped int", constant.MakeInt64(int64(q.RFFDG))}, + "RFMEM": {"untyped int", constant.MakeInt64(int64(q.RFMEM))}, + "RFNAMEG": {"untyped int", constant.MakeInt64(int64(q.RFNAMEG))}, + "RFNOMNT": {"untyped int", constant.MakeInt64(int64(q.RFNOMNT))}, + "RFNOTEG": {"untyped int", constant.MakeInt64(int64(q.RFNOTEG))}, + "RFNOWAIT": {"untyped int", constant.MakeInt64(int64(q.RFNOWAIT))}, + "RFPROC": {"untyped int", constant.MakeInt64(int64(q.RFPROC))}, + "RFREND": {"untyped int", constant.MakeInt64(int64(q.RFREND))}, + "STATFIXLEN": {"untyped int", constant.MakeInt64(int64(q.STATFIXLEN))}, + "STATMAX": {"untyped int", constant.MakeInt64(int64(q.STATMAX))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_AWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AWAIT))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BRK_": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK_))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_ERRSTR": {"untyped int", constant.MakeInt64(int64(q.SYS_ERRSTR))}, + "SYS_EXEC": {"untyped int", constant.MakeInt64(int64(q.SYS_EXEC))}, + "SYS_EXITS": {"untyped int", constant.MakeInt64(int64(q.SYS_EXITS))}, + "SYS_FAUTH": {"untyped int", constant.MakeInt64(int64(q.SYS_FAUTH))}, + "SYS_FD2PATH": {"untyped int", constant.MakeInt64(int64(q.SYS_FD2PATH))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FVERSION": {"untyped int", constant.MakeInt64(int64(q.SYS_FVERSION))}, + "SYS_FWSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FWSTAT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_NOTED": {"untyped int", constant.MakeInt64(int64(q.SYS_NOTED))}, + "SYS_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_NOTIFY))}, + "SYS_NSEC": {"untyped int", constant.MakeInt64(int64(q.SYS_NSEC))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_OSEEK))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_REMOVE": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVE))}, + "SYS_RENDEZVOUS": {"untyped int", constant.MakeInt64(int64(q.SYS_RENDEZVOUS))}, + "SYS_RFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_RFORK))}, + "SYS_SEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEEK))}, + "SYS_SEGATTACH": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGATTACH))}, + "SYS_SEGBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGBRK))}, + "SYS_SEGDETACH": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGDETACH))}, + "SYS_SEGFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGFLUSH))}, + "SYS_SEGFREE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGFREE))}, + "SYS_SEMACQUIRE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMACQUIRE))}, + "SYS_SEMRELEASE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMRELEASE))}, + "SYS_SLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_SLEEP))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_SYSR1": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSR1))}, + "SYS_TSEMACQUIRE": {"untyped int", constant.MakeInt64(int64(q.SYS_TSEMACQUIRE))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_WSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_WSTAT))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_plan9_arm.go b/pkg/syscall/go122_export_plan9_arm.go new file mode 100755 index 00000000..a0d12858 --- /dev/null +++ b/pkg/syscall/go122_export_plan9_arm.go @@ -0,0 +1,243 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "runtime": "runtime", + "sync": "sync", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Dir": reflect.TypeOf((*q.Dir)(nil)).Elem(), + "ErrorString": reflect.TypeOf((*q.ErrorString)(nil)).Elem(), + "Note": reflect.TypeOf((*q.Note)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Qid": reflect.TypeOf((*q.Qid)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Waitmsg": reflect.TypeOf((*q.Waitmsg)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "EACCES": reflect.ValueOf(&q.EACCES), + "EAFNOSUPPORT": reflect.ValueOf(&q.EAFNOSUPPORT), + "EBUSY": reflect.ValueOf(&q.EBUSY), + "EEXIST": reflect.ValueOf(&q.EEXIST), + "EINTR": reflect.ValueOf(&q.EINTR), + "EINVAL": reflect.ValueOf(&q.EINVAL), + "EIO": reflect.ValueOf(&q.EIO), + "EISDIR": reflect.ValueOf(&q.EISDIR), + "EMFILE": reflect.ValueOf(&q.EMFILE), + "ENAMETOOLONG": reflect.ValueOf(&q.ENAMETOOLONG), + "ENOENT": reflect.ValueOf(&q.ENOENT), + "ENOTDIR": reflect.ValueOf(&q.ENOTDIR), + "EPERM": reflect.ValueOf(&q.EPERM), + "EPLAN9": reflect.ValueOf(&q.EPLAN9), + "ESPIPE": reflect.ValueOf(&q.ESPIPE), + "ETIMEDOUT": reflect.ValueOf(&q.ETIMEDOUT), + "ErrBadName": reflect.ValueOf(&q.ErrBadName), + "ErrBadStat": reflect.ValueOf(&q.ErrBadStat), + "ErrShortStat": reflect.ValueOf(&q.ErrShortStat), + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Await": reflect.ValueOf(q.Await), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "Create": reflect.ValueOf(q.Create), + "Dup": reflect.ValueOf(q.Dup), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fd2path": reflect.ValueOf(q.Fd2path), + "Fixwd": reflect.ValueOf(q.Fixwd), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fwstat": reflect.ValueOf(q.Fwstat), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mount": reflect.ValueOf(q.Mount), + "NewError": reflect.ValueOf(q.NewError), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "Remove": reflect.ValueOf(q.Remove), + "Seek": reflect.ValueOf(q.Seek), + "Setenv": reflect.ValueOf(q.Setenv), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "UnmarshalDir": reflect.ValueOf(q.UnmarshalDir), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "WaitProcess": reflect.ValueOf(q.WaitProcess), + "Write": reflect.ValueOf(q.Write), + "Wstat": reflect.ValueOf(q.Wstat), + }, + TypedConsts: map[string]igop.TypedConst{ + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeString(string(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeString(string(q.SIGALRM))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeString(string(q.SIGHUP))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeString(string(q.SIGINT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeString(string(q.SIGKILL))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeString(string(q.SIGTERM))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "DMAPPEND": {"untyped int", constant.MakeInt64(int64(q.DMAPPEND))}, + "DMAUTH": {"untyped int", constant.MakeInt64(int64(q.DMAUTH))}, + "DMDIR": {"untyped int", constant.MakeInt64(int64(q.DMDIR))}, + "DMEXCL": {"untyped int", constant.MakeInt64(int64(q.DMEXCL))}, + "DMEXEC": {"untyped int", constant.MakeInt64(int64(q.DMEXEC))}, + "DMMOUNT": {"untyped int", constant.MakeInt64(int64(q.DMMOUNT))}, + "DMREAD": {"untyped int", constant.MakeInt64(int64(q.DMREAD))}, + "DMTMP": {"untyped int", constant.MakeInt64(int64(q.DMTMP))}, + "DMWRITE": {"untyped int", constant.MakeInt64(int64(q.DMWRITE))}, + "ERRMAX": {"untyped int", constant.MakeInt64(int64(q.ERRMAX))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "MAFTER": {"untyped int", constant.MakeInt64(int64(q.MAFTER))}, + "MBEFORE": {"untyped int", constant.MakeInt64(int64(q.MBEFORE))}, + "MCACHE": {"untyped int", constant.MakeInt64(int64(q.MCACHE))}, + "MCREATE": {"untyped int", constant.MakeInt64(int64(q.MCREATE))}, + "MMASK": {"untyped int", constant.MakeInt64(int64(q.MMASK))}, + "MORDER": {"untyped int", constant.MakeInt64(int64(q.MORDER))}, + "MREPL": {"untyped int", constant.MakeInt64(int64(q.MREPL))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "QTAPPEND": {"untyped int", constant.MakeInt64(int64(q.QTAPPEND))}, + "QTAUTH": {"untyped int", constant.MakeInt64(int64(q.QTAUTH))}, + "QTDIR": {"untyped int", constant.MakeInt64(int64(q.QTDIR))}, + "QTEXCL": {"untyped int", constant.MakeInt64(int64(q.QTEXCL))}, + "QTFILE": {"untyped int", constant.MakeInt64(int64(q.QTFILE))}, + "QTMOUNT": {"untyped int", constant.MakeInt64(int64(q.QTMOUNT))}, + "QTTMP": {"untyped int", constant.MakeInt64(int64(q.QTTMP))}, + "RFCENVG": {"untyped int", constant.MakeInt64(int64(q.RFCENVG))}, + "RFCFDG": {"untyped int", constant.MakeInt64(int64(q.RFCFDG))}, + "RFCNAMEG": {"untyped int", constant.MakeInt64(int64(q.RFCNAMEG))}, + "RFENVG": {"untyped int", constant.MakeInt64(int64(q.RFENVG))}, + "RFFDG": {"untyped int", constant.MakeInt64(int64(q.RFFDG))}, + "RFMEM": {"untyped int", constant.MakeInt64(int64(q.RFMEM))}, + "RFNAMEG": {"untyped int", constant.MakeInt64(int64(q.RFNAMEG))}, + "RFNOMNT": {"untyped int", constant.MakeInt64(int64(q.RFNOMNT))}, + "RFNOTEG": {"untyped int", constant.MakeInt64(int64(q.RFNOTEG))}, + "RFNOWAIT": {"untyped int", constant.MakeInt64(int64(q.RFNOWAIT))}, + "RFPROC": {"untyped int", constant.MakeInt64(int64(q.RFPROC))}, + "RFREND": {"untyped int", constant.MakeInt64(int64(q.RFREND))}, + "STATFIXLEN": {"untyped int", constant.MakeInt64(int64(q.STATFIXLEN))}, + "STATMAX": {"untyped int", constant.MakeInt64(int64(q.STATMAX))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_AWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AWAIT))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BRK_": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK_))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_ERRSTR": {"untyped int", constant.MakeInt64(int64(q.SYS_ERRSTR))}, + "SYS_EXEC": {"untyped int", constant.MakeInt64(int64(q.SYS_EXEC))}, + "SYS_EXITS": {"untyped int", constant.MakeInt64(int64(q.SYS_EXITS))}, + "SYS_FAUTH": {"untyped int", constant.MakeInt64(int64(q.SYS_FAUTH))}, + "SYS_FD2PATH": {"untyped int", constant.MakeInt64(int64(q.SYS_FD2PATH))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FVERSION": {"untyped int", constant.MakeInt64(int64(q.SYS_FVERSION))}, + "SYS_FWSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FWSTAT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_NOTED": {"untyped int", constant.MakeInt64(int64(q.SYS_NOTED))}, + "SYS_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_NOTIFY))}, + "SYS_NSEC": {"untyped int", constant.MakeInt64(int64(q.SYS_NSEC))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_OSEEK))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_REMOVE": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVE))}, + "SYS_RENDEZVOUS": {"untyped int", constant.MakeInt64(int64(q.SYS_RENDEZVOUS))}, + "SYS_RFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_RFORK))}, + "SYS_SEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEEK))}, + "SYS_SEGATTACH": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGATTACH))}, + "SYS_SEGBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGBRK))}, + "SYS_SEGDETACH": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGDETACH))}, + "SYS_SEGFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGFLUSH))}, + "SYS_SEGFREE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGFREE))}, + "SYS_SEMACQUIRE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMACQUIRE))}, + "SYS_SEMRELEASE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMRELEASE))}, + "SYS_SLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_SLEEP))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_SYSR1": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSR1))}, + "SYS_TSEMACQUIRE": {"untyped int", constant.MakeInt64(int64(q.SYS_TSEMACQUIRE))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_WSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_WSTAT))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_solaris_amd64.go b/pkg/syscall/go122_export_solaris_amd64.go new file mode 100755 index 00000000..fc9e72b0 --- /dev/null +++ b/pkg/syscall/go122_export_solaris_amd64.go @@ -0,0 +1,1505 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timeval32": reflect.TypeOf((*q.Timeval32)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getexecname": reflect.ValueOf(q.Getexecname), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Gethostname": reflect.ValueOf(q.Gethostname), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Kill": reflect.ValueOf(q.Kill), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOCKUNMAPPED": {reflect.TypeOf(q.ELOCKUNMAPPED), constant.MakeInt64(int64(q.ELOCKUNMAPPED))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTACTIVE": {reflect.TypeOf(q.ENOTACTIVE), constant.MakeInt64(int64(q.ENOTACTIVE))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCANCEL": {reflect.TypeOf(q.SIGCANCEL), constant.MakeInt64(int64(q.SIGCANCEL))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGFREEZE": {reflect.TypeOf(q.SIGFREEZE), constant.MakeInt64(int64(q.SIGFREEZE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGJVM1": {reflect.TypeOf(q.SIGJVM1), constant.MakeInt64(int64(q.SIGJVM1))}, + "SIGJVM2": {reflect.TypeOf(q.SIGJVM2), constant.MakeInt64(int64(q.SIGJVM2))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGLOST": {reflect.TypeOf(q.SIGLOST), constant.MakeInt64(int64(q.SIGLOST))}, + "SIGLWP": {reflect.TypeOf(q.SIGLWP), constant.MakeInt64(int64(q.SIGLWP))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHAW": {reflect.TypeOf(q.SIGTHAW), constant.MakeInt64(int64(q.SIGTHAW))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWAITING": {reflect.TypeOf(q.SIGWAITING), constant.MakeInt64(int64(q.SIGWAITING))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + "SIGXRES": {reflect.TypeOf(q.SIGXRES), constant.MakeInt64(int64(q.SIGXRES))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_802": {"untyped int", constant.MakeInt64(int64(q.AF_802))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_GOSIP": {"untyped int", constant.MakeInt64(int64(q.AF_GOSIP))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_INET_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.AF_INET_OFFLOAD))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NBS": {"untyped int", constant.MakeInt64(int64(q.AF_NBS))}, + "AF_NCA": {"untyped int", constant.MakeInt64(int64(q.AF_NCA))}, + "AF_NIT": {"untyped int", constant.MakeInt64(int64(q.AF_NIT))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_OSINET": {"untyped int", constant.MakeInt64(int64(q.AF_OSINET))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_POLICY": {"untyped int", constant.MakeInt64(int64(q.AF_POLICY))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TRILL": {"untyped int", constant.MakeInt64(int64(q.AF_TRILL))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FC))}, + "ARPHRD_FRAME": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAME))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_IB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IB))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IPATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPATM))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B153600": {"untyped int", constant.MakeInt64(int64(q.B153600))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B307200": {"untyped int", constant.MakeInt64(int64(q.B307200))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGDLTLIST32": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST32))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGETLIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETLIF))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGRTIMEOUT32": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT32))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGSTATSOLD": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATSOLD))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETF32": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF32))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETLIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETLIF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSRTIMEOUT32": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT32))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTCPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSTCPF))}, + "BIOCSUDPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSUDPF))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DFLTBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_DFLTBUFSIZE))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CSWTCH": {"untyped int", constant.MakeInt64(int64(q.CSWTCH))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HDLC))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.DLT_HIPPI))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPOIB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPOIB))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RAWAF_MASK": {"untyped int", constant.MakeInt64(int64(q.DLT_RAWAF_MASK))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMPTY_SET": {"untyped int", constant.MakeInt64(int64(q.EMPTY_SET))}, + "EMT_CPCOVF": {"untyped int", constant.MakeInt64(int64(q.EMT_CPCOVF))}, + "EQUALITY_CHECK": {"untyped int", constant.MakeInt64(int64(q.EQUALITY_CHECK))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_NFDBITS": {"untyped int", constant.MakeInt64(int64(q.FD_NFDBITS))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHALL": {"untyped int", constant.MakeInt64(int64(q.FLUSHALL))}, + "FLUSHDATA": {"untyped int", constant.MakeInt64(int64(q.FLUSHDATA))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_ALLOCSP": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCSP))}, + "F_ALLOCSP64": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCSP64))}, + "F_BADFD": {"untyped int", constant.MakeInt64(int64(q.F_BADFD))}, + "F_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.F_BLKSIZE))}, + "F_BLOCKS": {"untyped int", constant.MakeInt64(int64(q.F_BLOCKS))}, + "F_CHKFL": {"untyped int", constant.MakeInt64(int64(q.F_CHKFL))}, + "F_COMPAT": {"untyped int", constant.MakeInt64(int64(q.F_COMPAT))}, + "F_DUP2FD": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD))}, + "F_DUP2FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD_CLOEXEC))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FREESP": {"untyped int", constant.MakeInt64(int64(q.F_FREESP))}, + "F_FREESP64": {"untyped int", constant.MakeInt64(int64(q.F_FREESP64))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETXFL": {"untyped int", constant.MakeInt64(int64(q.F_GETXFL))}, + "F_HASREMOTELOCKS": {"untyped int", constant.MakeInt64(int64(q.F_HASREMOTELOCKS))}, + "F_ISSTREAM": {"untyped int", constant.MakeInt64(int64(q.F_ISSTREAM))}, + "F_MANDDNY": {"untyped int", constant.MakeInt64(int64(q.F_MANDDNY))}, + "F_MDACC": {"untyped int", constant.MakeInt64(int64(q.F_MDACC))}, + "F_NODNY": {"untyped int", constant.MakeInt64(int64(q.F_NODNY))}, + "F_NPRIV": {"untyped int", constant.MakeInt64(int64(q.F_NPRIV))}, + "F_PRIV": {"untyped int", constant.MakeInt64(int64(q.F_PRIV))}, + "F_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.F_QUOTACTL))}, + "F_RDACC": {"untyped int", constant.MakeInt64(int64(q.F_RDACC))}, + "F_RDDNY": {"untyped int", constant.MakeInt64(int64(q.F_RDDNY))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_REVOKE": {"untyped int", constant.MakeInt64(int64(q.F_REVOKE))}, + "F_RMACC": {"untyped int", constant.MakeInt64(int64(q.F_RMACC))}, + "F_RMDNY": {"untyped int", constant.MakeInt64(int64(q.F_RMDNY))}, + "F_RWACC": {"untyped int", constant.MakeInt64(int64(q.F_RWACC))}, + "F_RWDNY": {"untyped int", constant.MakeInt64(int64(q.F_RWDNY))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLK64_NBMAND": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64_NBMAND))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETLK_NBMAND": {"untyped int", constant.MakeInt64(int64(q.F_SETLK_NBMAND))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SHARE": {"untyped int", constant.MakeInt64(int64(q.F_SHARE))}, + "F_SHARE_NBMAND": {"untyped int", constant.MakeInt64(int64(q.F_SHARE_NBMAND))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_UNLKSYS": {"untyped int", constant.MakeInt64(int64(q.F_UNLKSYS))}, + "F_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.F_UNSHARE))}, + "F_WRACC": {"untyped int", constant.MakeInt64(int64(q.F_WRACC))}, + "F_WRDNY": {"untyped int", constant.MakeInt64(int64(q.F_WRDNY))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.IFF_ADDRCONF))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_ANYCAST))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_COS_ENABLED": {"untyped int", constant.MakeInt64(int64(q.IFF_COS_ENABLED))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFF_DEPRECATED))}, + "IFF_DHCPRUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_DHCPRUNNING))}, + "IFF_DUPLICATE": {"untyped int", constant.MakeInt64(int64(q.IFF_DUPLICATE))}, + "IFF_FAILED": {"untyped int", constant.MakeInt64(int64(q.IFF_FAILED))}, + "IFF_FIXEDMTU": {"untyped int", constant.MakeInt64(int64(q.IFF_FIXEDMTU))}, + "IFF_INACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_INACTIVE))}, + "IFF_INTELLIGENT": {"untyped int", constant.MakeInt64(int64(q.IFF_INTELLIGENT))}, + "IFF_IPMP": {"untyped int", constant.MakeInt64(int64(q.IFF_IPMP))}, + "IFF_IPMP_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_IPMP_CANTCHANGE))}, + "IFF_IPMP_INVALID": {"untyped int", constant.MakeInt64(int64(q.IFF_IPMP_INVALID))}, + "IFF_IPV4": {"untyped int", constant.MakeInt64(int64(q.IFF_IPV4))}, + "IFF_IPV6": {"untyped int", constant.MakeInt64(int64(q.IFF_IPV6))}, + "IFF_L3PROTECT": {"untyped int", constant.MakeInt64(int64(q.IFF_L3PROTECT))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_BCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_BCAST))}, + "IFF_NOACCEPT": {"untyped int", constant.MakeInt64(int64(q.IFF_NOACCEPT))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFAILOVER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFAILOVER))}, + "IFF_NOLINKLOCAL": {"untyped int", constant.MakeInt64(int64(q.IFF_NOLINKLOCAL))}, + "IFF_NOLOCAL": {"untyped int", constant.MakeInt64(int64(q.IFF_NOLOCAL))}, + "IFF_NONUD": {"untyped int", constant.MakeInt64(int64(q.IFF_NONUD))}, + "IFF_NORTEXCH": {"untyped int", constant.MakeInt64(int64(q.IFF_NORTEXCH))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NOXMIT": {"untyped int", constant.MakeInt64(int64(q.IFF_NOXMIT))}, + "IFF_OFFLINE": {"untyped int", constant.MakeInt64(int64(q.IFF_OFFLINE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PREFERRED": {"untyped int", constant.MakeInt64(int64(q.IFF_PREFERRED))}, + "IFF_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.IFF_PRIVATE))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_ROUTER": {"untyped int", constant.MakeInt64(int64(q.IFF_ROUTER))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_STANDBY": {"untyped int", constant.MakeInt64(int64(q.IFF_STANDBY))}, + "IFF_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFF_TEMPORARY))}, + "IFF_UNNUMBERED": {"untyped int", constant.MakeInt64(int64(q.IFF_UNNUMBERED))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFF_VIRTUAL))}, + "IFF_VRRP": {"untyped int", constant.MakeInt64(int64(q.IFF_VRRP))}, + "IFF_XRESOLV": {"untyped int", constant.MakeInt64(int64(q.IFF_XRESOLV))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_6TO4": {"untyped int", constant.MakeInt64(int64(q.IFT_6TO4))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IB": {"untyped int", constant.MakeInt64(int64(q.IFT_IB))}, + "IFT_IPV4": {"untyped int", constant.MakeInt64(int64(q.IFT_IPV4))}, + "IFT_IPV6": {"untyped int", constant.MakeInt64(int64(q.IFT_IPV6))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_AUTOCONF_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_AUTOCONF_MASK))}, + "IN_AUTOCONF_NET": {"untyped int", constant.MakeInt64(int64(q.IN_AUTOCONF_NET))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_CLASSE_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSE_NET))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_PRIVATE12_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE12_MASK))}, + "IN_PRIVATE12_NET": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE12_NET))}, + "IN_PRIVATE16_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE16_MASK))}, + "IN_PRIVATE16_NET": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE16_NET))}, + "IN_PRIVATE8_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE8_MASK))}, + "IN_PRIVATE8_NET": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE8_NET))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_OSPF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPF))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_BOUND_IF))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FLOWINFO_FLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_FLOWLABEL))}, + "IPV6_FLOWINFO_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_TCLASS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PAD1_OPT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PAD1_OPT))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PREFER_SRC_CGA": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_CGA))}, + "IPV6_PREFER_SRC_CGADEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_CGADEFAULT))}, + "IPV6_PREFER_SRC_CGAMASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_CGAMASK))}, + "IPV6_PREFER_SRC_COA": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_COA))}, + "IPV6_PREFER_SRC_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_DEFAULT))}, + "IPV6_PREFER_SRC_HOME": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_HOME))}, + "IPV6_PREFER_SRC_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_MASK))}, + "IPV6_PREFER_SRC_MIPDEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_MIPDEFAULT))}, + "IPV6_PREFER_SRC_MIPMASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_MIPMASK))}, + "IPV6_PREFER_SRC_NONCGA": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_NONCGA))}, + "IPV6_PREFER_SRC_PUBLIC": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_PUBLIC))}, + "IPV6_PREFER_SRC_TMP": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_TMP))}, + "IPV6_PREFER_SRC_TMPDEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_TMPDEFAULT))}, + "IPV6_PREFER_SRC_TMPMASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_TMPMASK))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVRTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDRDSTOPTS))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SEC_OPT": {"untyped int", constant.MakeInt64(int64(q.IPV6_SEC_OPT))}, + "IPV6_SRC_PREFERENCES": {"untyped int", constant.MakeInt64(int64(q.IPV6_SRC_PREFERENCES))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_UNSPEC_SRC": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNSPEC_SRC))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IP_BOUND_IF))}, + "IP_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IP_BROADCAST))}, + "IP_BROADCAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_BROADCAST_TTL))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DHCPINIT_IF": {"untyped int", constant.MakeInt64(int64(q.IP_DHCPINIT_IF))}, + "IP_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_DONTFRAG))}, + "IP_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.IP_DONTROUTE))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IP_NEXTHOP))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_RECVPKTINFO))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVSLLA": {"untyped int", constant.MakeInt64(int64(q.IP_RECVSLLA))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.IP_REUSEADDR))}, + "IP_SEC_OPT": {"untyped int", constant.MakeInt64(int64(q.IP_SEC_OPT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNSPEC_SRC": {"untyped int", constant.MakeInt64(int64(q.IP_UNSPEC_SRC))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "MADV_ACCESS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.MADV_ACCESS_DEFAULT))}, + "MADV_ACCESS_LWP": {"untyped int", constant.MakeInt64(int64(q.MADV_ACCESS_LWP))}, + "MADV_ACCESS_MANY": {"untyped int", constant.MakeInt64(int64(q.MADV_ACCESS_MANY))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_32BIT": {"untyped int", constant.MakeInt64(int64(q.MAP_32BIT))}, + "MAP_ALIGN": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGN))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_INITDATA": {"untyped int", constant.MakeInt64(int64(q.MAP_INITDATA))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_TEXT": {"untyped int", constant.MakeInt64(int64(q.MAP_TEXT))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_DUPCTRL": {"untyped int", constant.MakeInt64(int64(q.MSG_DUPCTRL))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_MAXIOVLEN": {"untyped int", constant.MakeInt64(int64(q.MSG_MAXIOVLEN))}, + "MSG_NOTIFICATION": {"untyped int", constant.MakeInt64(int64(q.MSG_NOTIFICATION))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_XPG4_2": {"untyped int", constant.MakeInt64(int64(q.MSG_XPG4_2))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_OLDSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_OLDSYNC))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "M_FLUSH": {"untyped int", constant.MakeInt64(int64(q.M_FLUSH))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPENFAIL": {"untyped int", constant.MakeInt64(int64(q.OPENFAIL))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXEC": {"untyped int", constant.MakeInt64(int64(q.O_EXEC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NOLINKS": {"untyped int", constant.MakeInt64(int64(q.O_NOLINKS))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SEARCH": {"untyped int", constant.MakeInt64(int64(q.O_SEARCH))}, + "O_SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.O_SIOCGIFCONF))}, + "O_SIOCGLIFCONF": {"untyped int", constant.MakeInt64(int64(q.O_SIOCGLIFCONF))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "O_XATTR": {"untyped int", constant.MakeInt64(int64(q.O_XATTR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PAREXT": {"untyped int", constant.MakeInt64(int64(q.PAREXT))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_SRC": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRC))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_NUMBITS": {"untyped int", constant.MakeInt64(int64(q.RTA_NUMBITS))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTF_INDIRECT))}, + "RTF_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTF_KERNEL))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTIRT": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTIRT))}, + "RTF_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.RTF_PRIVATE))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_SETSRC": {"untyped int", constant.MakeInt64(int64(q.RTF_SETSRC))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTF_ZONE": {"untyped int", constant.MakeInt64(int64(q.RTF_ZONE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_CHGADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_CHGADDR))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_FREEADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_FREEADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RT_AWARE": {"untyped int", constant.MakeInt64(int64(q.RT_AWARE))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_UCRED": {"untyped int", constant.MakeInt64(int64(q.SCM_UCRED))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIG2STR_MAX": {"untyped int", constant.MakeInt64(int64(q.SIG2STR_MAX))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIPSECONFIG": {"untyped int", constant.MakeInt64(int64(q.SIOCDIPSECONFIG))}, + "SIOCDXARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDXARP))}, + "SIOCFIPSECONFIG": {"untyped int", constant.MakeInt64(int64(q.SIOCFIPSECONFIG))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGDSTINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCGDSTINFO))}, + "SIOCGENADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGENADDR))}, + "SIOCGENPSTATS": {"untyped int", constant.MakeInt64(int64(q.SIOCGENPSTATS))}, + "SIOCGETLSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETLSGCNT))}, + "SIOCGETNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGETNAME))}, + "SIOCGETPEER": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPEER))}, + "SIOCGETPROP": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPROP))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSYNC))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFMUXID": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMUXID))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFNUM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNUM))}, + "SIOCGIP6ADDRPOLICY": {"untyped int", constant.MakeInt64(int64(q.SIOCGIP6ADDRPOLICY))}, + "SIOCGIPMSFILTER": {"untyped int", constant.MakeInt64(int64(q.SIOCGIPMSFILTER))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFBINDING": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFBINDING))}, + "SIOCGLIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFBRDADDR))}, + "SIOCGLIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFCONF))}, + "SIOCGLIFDADSTATE": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFDADSTATE))}, + "SIOCGLIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFDSTADDR))}, + "SIOCGLIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFFLAGS))}, + "SIOCGLIFGROUPINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFGROUPINFO))}, + "SIOCGLIFGROUPNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFGROUPNAME))}, + "SIOCGLIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFHWADDR))}, + "SIOCGLIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFINDEX))}, + "SIOCGLIFLNKINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFLNKINFO))}, + "SIOCGLIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFMETRIC))}, + "SIOCGLIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFMTU))}, + "SIOCGLIFMUXID": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFMUXID))}, + "SIOCGLIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFNETMASK))}, + "SIOCGLIFNUM": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFNUM))}, + "SIOCGLIFSRCOF": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFSRCOF))}, + "SIOCGLIFSUBNET": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFSUBNET))}, + "SIOCGLIFTOKEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFTOKEN))}, + "SIOCGLIFUSESRC": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFUSESRC))}, + "SIOCGLIFZONE": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFZONE))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGMSFILTER": {"untyped int", constant.MakeInt64(int64(q.SIOCGMSFILTER))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGXARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGXARP))}, + "SIOCIFDETACH": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDETACH))}, + "SIOCILB": {"untyped int", constant.MakeInt64(int64(q.SIOCILB))}, + "SIOCLIFADDIF": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFADDIF))}, + "SIOCLIFDELND": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFDELND))}, + "SIOCLIFGETND": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFGETND))}, + "SIOCLIFREMOVEIF": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFREMOVEIF))}, + "SIOCLIFSETND": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFSETND))}, + "SIOCLIPSECONFIG": {"untyped int", constant.MakeInt64(int64(q.SIOCLIPSECONFIG))}, + "SIOCLOWER": {"untyped int", constant.MakeInt64(int64(q.SIOCLOWER))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSCTPGOPT": {"untyped int", constant.MakeInt64(int64(q.SIOCSCTPGOPT))}, + "SIOCSCTPPEELOFF": {"untyped int", constant.MakeInt64(int64(q.SIOCSCTPPEELOFF))}, + "SIOCSCTPSOPT": {"untyped int", constant.MakeInt64(int64(q.SIOCSCTPSOPT))}, + "SIOCSENABLESDP": {"untyped int", constant.MakeInt64(int64(q.SIOCSENABLESDP))}, + "SIOCSETPROP": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPROP))}, + "SIOCSETSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETSYNC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFINDEX))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFMUXID": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMUXID))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIP6ADDRPOLICY": {"untyped int", constant.MakeInt64(int64(q.SIOCSIP6ADDRPOLICY))}, + "SIOCSIPMSFILTER": {"untyped int", constant.MakeInt64(int64(q.SIOCSIPMSFILTER))}, + "SIOCSIPSECONFIG": {"untyped int", constant.MakeInt64(int64(q.SIOCSIPSECONFIG))}, + "SIOCSLGETREQ": {"untyped int", constant.MakeInt64(int64(q.SIOCSLGETREQ))}, + "SIOCSLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFADDR))}, + "SIOCSLIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFBRDADDR))}, + "SIOCSLIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFDSTADDR))}, + "SIOCSLIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFFLAGS))}, + "SIOCSLIFGROUPNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFGROUPNAME))}, + "SIOCSLIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFINDEX))}, + "SIOCSLIFLNKINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFLNKINFO))}, + "SIOCSLIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFMETRIC))}, + "SIOCSLIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFMTU))}, + "SIOCSLIFMUXID": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFMUXID))}, + "SIOCSLIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFNAME))}, + "SIOCSLIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFNETMASK))}, + "SIOCSLIFPREFIX": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPREFIX))}, + "SIOCSLIFSUBNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFSUBNET))}, + "SIOCSLIFTOKEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFTOKEN))}, + "SIOCSLIFUSESRC": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFUSESRC))}, + "SIOCSLIFZONE": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFZONE))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSLSTAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLSTAT))}, + "SIOCSMSFILTER": {"untyped int", constant.MakeInt64(int64(q.SIOCSMSFILTER))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSPROMISC": {"untyped int", constant.MakeInt64(int64(q.SIOCSPROMISC))}, + "SIOCSQPTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSQPTR))}, + "SIOCSSDSTATS": {"untyped int", constant.MakeInt64(int64(q.SIOCSSDSTATS))}, + "SIOCSSESTATS": {"untyped int", constant.MakeInt64(int64(q.SIOCSSESTATS))}, + "SIOCSXARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSXARP))}, + "SIOCTMYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCTMYADDR))}, + "SIOCTMYSITE": {"untyped int", constant.MakeInt64(int64(q.SIOCTMYSITE))}, + "SIOCTONLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCTONLINK))}, + "SIOCUPPER": {"untyped int", constant.MakeInt64(int64(q.SIOCUPPER))}, + "SIOCX25RCV": {"untyped int", constant.MakeInt64(int64(q.SIOCX25RCV))}, + "SIOCX25TBL": {"untyped int", constant.MakeInt64(int64(q.SIOCX25TBL))}, + "SIOCX25XMT": {"untyped int", constant.MakeInt64(int64(q.SIOCX25XMT))}, + "SIOCXPROTO": {"untyped int", constant.MakeInt64(int64(q.SIOCXPROTO))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NDELAY": {"untyped int", constant.MakeInt64(int64(q.SOCK_NDELAY))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOCK_TYPE_MASK": {"untyped int", constant.MakeInt64(int64(q.SOCK_TYPE_MASK))}, + "SOL_FILTER": {"untyped int", constant.MakeInt64(int64(q.SOL_FILTER))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_ROUTE": {"untyped int", constant.MakeInt64(int64(q.SOL_ROUTE))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ALL": {"untyped int", constant.MakeInt64(int64(q.SO_ALL))}, + "SO_ALLZONES": {"untyped int", constant.MakeInt64(int64(q.SO_ALLZONES))}, + "SO_ANON_MLP": {"untyped int", constant.MakeInt64(int64(q.SO_ANON_MLP))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BAND": {"untyped int", constant.MakeInt64(int64(q.SO_BAND))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_COPYOPT": {"untyped int", constant.MakeInt64(int64(q.SO_COPYOPT))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DELIM": {"untyped int", constant.MakeInt64(int64(q.SO_DELIM))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DGRAM_ERRIND": {"untyped int", constant.MakeInt64(int64(q.SO_DGRAM_ERRIND))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTLINGER": {"untyped int", constant.MakeInt64(int64(q.SO_DONTLINGER))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROPT": {"untyped int", constant.MakeInt64(int64(q.SO_ERROPT))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_EXCLBIND": {"untyped int", constant.MakeInt64(int64(q.SO_EXCLBIND))}, + "SO_HIWAT": {"untyped int", constant.MakeInt64(int64(q.SO_HIWAT))}, + "SO_ISNTTY": {"untyped int", constant.MakeInt64(int64(q.SO_ISNTTY))}, + "SO_ISTTY": {"untyped int", constant.MakeInt64(int64(q.SO_ISTTY))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_LOWAT))}, + "SO_MAC_EXEMPT": {"untyped int", constant.MakeInt64(int64(q.SO_MAC_EXEMPT))}, + "SO_MAC_IMPLICIT": {"untyped int", constant.MakeInt64(int64(q.SO_MAC_IMPLICIT))}, + "SO_MAXBLK": {"untyped int", constant.MakeInt64(int64(q.SO_MAXBLK))}, + "SO_MAXPSZ": {"untyped int", constant.MakeInt64(int64(q.SO_MAXPSZ))}, + "SO_MINPSZ": {"untyped int", constant.MakeInt64(int64(q.SO_MINPSZ))}, + "SO_MREADOFF": {"untyped int", constant.MakeInt64(int64(q.SO_MREADOFF))}, + "SO_MREADON": {"untyped int", constant.MakeInt64(int64(q.SO_MREADON))}, + "SO_NDELOFF": {"untyped int", constant.MakeInt64(int64(q.SO_NDELOFF))}, + "SO_NDELON": {"untyped int", constant.MakeInt64(int64(q.SO_NDELON))}, + "SO_NODELIM": {"untyped int", constant.MakeInt64(int64(q.SO_NODELIM))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PROTOTYPE": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOTYPE))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVPSH": {"untyped int", constant.MakeInt64(int64(q.SO_RCVPSH))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_READOPT": {"untyped int", constant.MakeInt64(int64(q.SO_READOPT))}, + "SO_RECVUCRED": {"untyped int", constant.MakeInt64(int64(q.SO_RECVUCRED))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_SECATTR": {"untyped int", constant.MakeInt64(int64(q.SO_SECATTR))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_STRHOLD": {"untyped int", constant.MakeInt64(int64(q.SO_STRHOLD))}, + "SO_TAIL": {"untyped int", constant.MakeInt64(int64(q.SO_TAIL))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TONSTOP": {"untyped int", constant.MakeInt64(int64(q.SO_TONSTOP))}, + "SO_TOSTOP": {"untyped int", constant.MakeInt64(int64(q.SO_TOSTOP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_VRRP": {"untyped int", constant.MakeInt64(int64(q.SO_VRRP))}, + "SO_WROFF": {"untyped int", constant.MakeInt64(int64(q.SO_WROFF))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_ABORT_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_ABORT_THRESHOLD))}, + "TCP_ANONPRIVBIND": {"untyped int", constant.MakeInt64(int64(q.TCP_ANONPRIVBIND))}, + "TCP_CONN_ABORT_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_CONN_ABORT_THRESHOLD))}, + "TCP_CONN_NOTIFY_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_CONN_NOTIFY_THRESHOLD))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_EXCLBIND": {"untyped int", constant.MakeInt64(int64(q.TCP_EXCLBIND))}, + "TCP_INIT_CWND": {"untyped int", constant.MakeInt64(int64(q.TCP_INIT_CWND))}, + "TCP_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE))}, + "TCP_KEEPALIVE_ABORT_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE_ABORT_THRESHOLD))}, + "TCP_KEEPALIVE_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE_THRESHOLD))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOTIFY_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_NOTIFY_THRESHOLD))}, + "TCP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.TCP_RECVDSTADDR))}, + "TCP_RTO_INITIAL": {"untyped int", constant.MakeInt64(int64(q.TCP_RTO_INITIAL))}, + "TCP_RTO_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_RTO_MAX))}, + "TCP_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_RTO_MIN))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOC": {"untyped int", constant.MakeInt64(int64(q.TIOC))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCILOOP": {"untyped int", constant.MakeInt64(int64(q.TIOCCILOOP))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETC": {"untyped int", constant.MakeInt64(int64(q.TIOCGETC))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGETP": {"untyped int", constant.MakeInt64(int64(q.TIOCGETP))}, + "TIOCGLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCGLTC))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPPS": {"untyped int", constant.MakeInt64(int64(q.TIOCGPPS))}, + "TIOCGPPSEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGPPSEV))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCHPCL": {"untyped int", constant.MakeInt64(int64(q.TIOCHPCL))}, + "TIOCKBOF": {"untyped int", constant.MakeInt64(int64(q.TIOCKBOF))}, + "TIOCKBON": {"untyped int", constant.MakeInt64(int64(q.TIOCKBON))}, + "TIOCLBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCLBIC))}, + "TIOCLBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCLBIS))}, + "TIOCLGET": {"untyped int", constant.MakeInt64(int64(q.TIOCLGET))}, + "TIOCLSET": {"untyped int", constant.MakeInt64(int64(q.TIOCLSET))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETC": {"untyped int", constant.MakeInt64(int64(q.TIOCSETC))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETN": {"untyped int", constant.MakeInt64(int64(q.TIOCSETN))}, + "TIOCSETP": {"untyped int", constant.MakeInt64(int64(q.TIOCSETP))}, + "TIOCSIGNAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSIGNAL))}, + "TIOCSILOOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSILOOP))}, + "TIOCSLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCSLTC))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPPS": {"untyped int", constant.MakeInt64(int64(q.TIOCSPPS))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VCEOF": {"untyped int", constant.MakeInt64(int64(q.VCEOF))}, + "VCEOL": {"untyped int", constant.MakeInt64(int64(q.VCEOL))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTCH": {"untyped int", constant.MakeInt64(int64(q.VSWTCH))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTFLG": {"untyped int", constant.MakeInt64(int64(q.WCONTFLG))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WOPTMASK": {"untyped int", constant.MakeInt64(int64(q.WOPTMASK))}, + "WRAP": {"untyped int", constant.MakeInt64(int64(q.WRAP))}, + "WSIGMASK": {"untyped int", constant.MakeInt64(int64(q.WSIGMASK))}, + "WSTOPFLG": {"untyped int", constant.MakeInt64(int64(q.WSTOPFLG))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WTRAPPED": {"untyped int", constant.MakeInt64(int64(q.WTRAPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_wasip1_wasm.go b/pkg/syscall/go122_export_wasip1_wasm.go new file mode 100755 index 00000000..56719498 --- /dev/null +++ b/pkg/syscall/go122_export_wasip1_wasm.go @@ -0,0 +1,401 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "runtime": "runtime", + "sync": "sync", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{ + "Dircookie": reflect.TypeOf((*uint64)(nil)).Elem(), + "Filetype": reflect.TypeOf((*uint8)(nil)).Elem(), + }, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exit": reflect.ValueOf(q.Exit), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "Fstat": reflect.ValueOf(q.Fstat), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Kill": reflect.ValueOf(q.Kill), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "ProcExit": reflect.ValueOf(q.ProcExit), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RandomGet": reflect.ValueOf(q.RandomGet), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDir": reflect.ValueOf(q.ReadDir), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Sendfile": reflect.ValueOf(q.Sendfile), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "SetReadDeadline": reflect.ValueOf(q.SetReadDeadline), + "SetWriteDeadline": reflect.ValueOf(q.SetWriteDeadline), + "Setenv": reflect.ValueOf(q.Setenv), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "Shutdown": reflect.ValueOf(q.Shutdown), + "Socket": reflect.ValueOf(q.Socket), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StopIO": reflect.ValueOf(q.StopIO), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "Symlink": reflect.ValueOf(q.Symlink), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysctl": reflect.ValueOf(q.Sysctl), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Unlink": reflect.ValueOf(q.Unlink), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTCAPABLE": {reflect.TypeOf(q.ENOTCAPABLE), constant.MakeInt64(int64(q.ENOTCAPABLE))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "FILETYPE_BLOCK_DEVICE": {reflect.TypeOf(q.FILETYPE_BLOCK_DEVICE), constant.MakeInt64(int64(q.FILETYPE_BLOCK_DEVICE))}, + "FILETYPE_CHARACTER_DEVICE": {reflect.TypeOf(q.FILETYPE_CHARACTER_DEVICE), constant.MakeInt64(int64(q.FILETYPE_CHARACTER_DEVICE))}, + "FILETYPE_DIRECTORY": {reflect.TypeOf(q.FILETYPE_DIRECTORY), constant.MakeInt64(int64(q.FILETYPE_DIRECTORY))}, + "FILETYPE_REGULAR_FILE": {reflect.TypeOf(q.FILETYPE_REGULAR_FILE), constant.MakeInt64(int64(q.FILETYPE_REGULAR_FILE))}, + "FILETYPE_SOCKET_DGRAM": {reflect.TypeOf(q.FILETYPE_SOCKET_DGRAM), constant.MakeInt64(int64(q.FILETYPE_SOCKET_DGRAM))}, + "FILETYPE_SOCKET_STREAM": {reflect.TypeOf(q.FILETYPE_SOCKET_STREAM), constant.MakeInt64(int64(q.FILETYPE_SOCKET_STREAM))}, + "FILETYPE_SYMBOLIC_LINK": {reflect.TypeOf(q.FILETYPE_SYMBOLIC_LINK), constant.MakeInt64(int64(q.FILETYPE_SYMBOLIC_LINK))}, + "FILETYPE_UNKNOWN": {reflect.TypeOf(q.FILETYPE_UNKNOWN), constant.MakeInt64(int64(q.FILETYPE_UNKNOWN))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGNONE": {reflect.TypeOf(q.SIGNONE), constant.MakeInt64(int64(q.SIGNONE))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTARLM": {reflect.TypeOf(q.SIGVTARLM), constant.MakeInt64(int64(q.SIGVTARLM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "FDFLAG_APPEND": {"untyped int", constant.MakeInt64(int64(q.FDFLAG_APPEND))}, + "FDFLAG_DSYNC": {"untyped int", constant.MakeInt64(int64(q.FDFLAG_DSYNC))}, + "FDFLAG_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.FDFLAG_NONBLOCK))}, + "FDFLAG_RSYNC": {"untyped int", constant.MakeInt64(int64(q.FDFLAG_RSYNC))}, + "FDFLAG_SYNC": {"untyped int", constant.MakeInt64(int64(q.FDFLAG_SYNC))}, + "FILESTAT_SET_ATIM": {"untyped int", constant.MakeInt64(int64(q.FILESTAT_SET_ATIM))}, + "FILESTAT_SET_ATIM_NOW": {"untyped int", constant.MakeInt64(int64(q.FILESTAT_SET_ATIM_NOW))}, + "FILESTAT_SET_MTIM": {"untyped int", constant.MakeInt64(int64(q.FILESTAT_SET_MTIM))}, + "FILESTAT_SET_MTIM_NOW": {"untyped int", constant.MakeInt64(int64(q.FILESTAT_SET_MTIM_NOW))}, + "F_CNVT": {"untyped int", constant.MakeInt64(int64(q.F_CNVT))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_RGETLK": {"untyped int", constant.MakeInt64(int64(q.F_RGETLK))}, + "F_RSETLK": {"untyped int", constant.MakeInt64(int64(q.F_RSETLK))}, + "F_RSETLKW": {"untyped int", constant.MakeInt64(int64(q.F_RSETLKW))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_UNLKSYS": {"untyped int", constant.MakeInt64(int64(q.F_UNLKSYS))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOOKUP_SYMLINK_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.LOOKUP_SYMLINK_FOLLOW))}, + "OFLAG_CREATE": {"untyped int", constant.MakeInt64(int64(q.OFLAG_CREATE))}, + "OFLAG_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.OFLAG_DIRECTORY))}, + "OFLAG_EXCL": {"untyped int", constant.MakeInt64(int64(q.OFLAG_EXCL))}, + "OFLAG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.OFLAG_TRUNC))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_CREATE": {"untyped int", constant.MakeInt64(int64(q.O_CREATE))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "RIGHT_FDSTAT_SET_FLAGS": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FDSTAT_SET_FLAGS))}, + "RIGHT_FD_ADVISE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_ADVISE))}, + "RIGHT_FD_ALLOCATE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_ALLOCATE))}, + "RIGHT_FD_DATASYNC": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_DATASYNC))}, + "RIGHT_FD_FILESTAT_GET": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_FILESTAT_GET))}, + "RIGHT_FD_FILESTAT_SET_SIZE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_FILESTAT_SET_SIZE))}, + "RIGHT_FD_FILESTAT_SET_TIMES": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_FILESTAT_SET_TIMES))}, + "RIGHT_FD_READ": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_READ))}, + "RIGHT_FD_READDIR": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_READDIR))}, + "RIGHT_FD_SEEK": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_SEEK))}, + "RIGHT_FD_SYNC": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_SYNC))}, + "RIGHT_FD_TELL": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_TELL))}, + "RIGHT_FD_WRITE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_WRITE))}, + "RIGHT_PATH_CREATE_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_CREATE_DIRECTORY))}, + "RIGHT_PATH_CREATE_FILE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_CREATE_FILE))}, + "RIGHT_PATH_FILESTAT_GET": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_FILESTAT_GET))}, + "RIGHT_PATH_FILESTAT_SET_SIZE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_FILESTAT_SET_SIZE))}, + "RIGHT_PATH_FILESTAT_SET_TIMES": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_FILESTAT_SET_TIMES))}, + "RIGHT_PATH_LINK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_LINK_SOURCE))}, + "RIGHT_PATH_LINK_TARGET": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_LINK_TARGET))}, + "RIGHT_PATH_OPEN": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_OPEN))}, + "RIGHT_PATH_READLINK": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_READLINK))}, + "RIGHT_PATH_REMOVE_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_REMOVE_DIRECTORY))}, + "RIGHT_PATH_RENAME_SOURCE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_RENAME_SOURCE))}, + "RIGHT_PATH_RENAME_TARGET": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_RENAME_TARGET))}, + "RIGHT_PATH_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_SYMLINK))}, + "RIGHT_PATH_UNLINK_FILE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_UNLINK_FILE))}, + "RIGHT_POLL_FD_READWRITE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_POLL_FD_READWRITE))}, + "RIGHT_SOCK_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.RIGHT_SOCK_ACCEPT))}, + "RIGHT_SOCK_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.RIGHT_SOCK_SHUTDOWN))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFBOUNDSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFBOUNDSOCK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFCOND": {"untyped int", constant.MakeInt64(int64(q.S_IFCOND))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFDSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFDSOCK))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFMUTEX": {"untyped int", constant.MakeInt64(int64(q.S_IFMUTEX))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSEMA": {"untyped int", constant.MakeInt64(int64(q.S_IFSEMA))}, + "S_IFSHM": {"untyped int", constant.MakeInt64(int64(q.S_IFSHM))}, + "S_IFSHM_SYSV": {"untyped int", constant.MakeInt64(int64(q.S_IFSHM_SYSV))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFSOCKADDR": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCKADDR))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "S_UNSUP": {"untyped int", constant.MakeInt64(int64(q.S_UNSUP))}, + "Stderr": {"untyped int", constant.MakeInt64(int64(q.Stderr))}, + "Stdin": {"untyped int", constant.MakeInt64(int64(q.Stdin))}, + "Stdout": {"untyped int", constant.MakeInt64(int64(q.Stdout))}, + "WHENCE_CUR": {"untyped int", constant.MakeInt64(int64(q.WHENCE_CUR))}, + "WHENCE_END": {"untyped int", constant.MakeInt64(int64(q.WHENCE_END))}, + "WHENCE_SET": {"untyped int", constant.MakeInt64(int64(q.WHENCE_SET))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_windows_386.go b/pkg/syscall/go122_export_windows_386.go new file mode 100755 index 00000000..c17c4c32 --- /dev/null +++ b/pkg/syscall/go122_export_windows_386.go @@ -0,0 +1,1040 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/syscall/windows/sysdll": "sysdll", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unicode/utf16": "utf16", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "AddrinfoW": reflect.TypeOf((*q.AddrinfoW)(nil)).Elem(), + "ByHandleFileInformation": reflect.TypeOf((*q.ByHandleFileInformation)(nil)).Elem(), + "CertChainContext": reflect.TypeOf((*q.CertChainContext)(nil)).Elem(), + "CertChainElement": reflect.TypeOf((*q.CertChainElement)(nil)).Elem(), + "CertChainPara": reflect.TypeOf((*q.CertChainPara)(nil)).Elem(), + "CertChainPolicyPara": reflect.TypeOf((*q.CertChainPolicyPara)(nil)).Elem(), + "CertChainPolicyStatus": reflect.TypeOf((*q.CertChainPolicyStatus)(nil)).Elem(), + "CertContext": reflect.TypeOf((*q.CertContext)(nil)).Elem(), + "CertEnhKeyUsage": reflect.TypeOf((*q.CertEnhKeyUsage)(nil)).Elem(), + "CertInfo": reflect.TypeOf((*q.CertInfo)(nil)).Elem(), + "CertRevocationCrlInfo": reflect.TypeOf((*q.CertRevocationCrlInfo)(nil)).Elem(), + "CertRevocationInfo": reflect.TypeOf((*q.CertRevocationInfo)(nil)).Elem(), + "CertSimpleChain": reflect.TypeOf((*q.CertSimpleChain)(nil)).Elem(), + "CertTrustListInfo": reflect.TypeOf((*q.CertTrustListInfo)(nil)).Elem(), + "CertTrustStatus": reflect.TypeOf((*q.CertTrustStatus)(nil)).Elem(), + "CertUsageMatch": reflect.TypeOf((*q.CertUsageMatch)(nil)).Elem(), + "DLL": reflect.TypeOf((*q.DLL)(nil)).Elem(), + "DLLError": reflect.TypeOf((*q.DLLError)(nil)).Elem(), + "DNSMXData": reflect.TypeOf((*q.DNSMXData)(nil)).Elem(), + "DNSPTRData": reflect.TypeOf((*q.DNSPTRData)(nil)).Elem(), + "DNSRecord": reflect.TypeOf((*q.DNSRecord)(nil)).Elem(), + "DNSSRVData": reflect.TypeOf((*q.DNSSRVData)(nil)).Elem(), + "DNSTXTData": reflect.TypeOf((*q.DNSTXTData)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FileNotifyInformation": reflect.TypeOf((*q.FileNotifyInformation)(nil)).Elem(), + "Filetime": reflect.TypeOf((*q.Filetime)(nil)).Elem(), + "GUID": reflect.TypeOf((*q.GUID)(nil)).Elem(), + "Handle": reflect.TypeOf((*q.Handle)(nil)).Elem(), + "Hostent": reflect.TypeOf((*q.Hostent)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "InterfaceInfo": reflect.TypeOf((*q.InterfaceInfo)(nil)).Elem(), + "IpAdapterInfo": reflect.TypeOf((*q.IpAdapterInfo)(nil)).Elem(), + "IpAddrString": reflect.TypeOf((*q.IpAddrString)(nil)).Elem(), + "IpAddressString": reflect.TypeOf((*q.IpAddressString)(nil)).Elem(), + "IpMaskString": reflect.TypeOf((*q.IpMaskString)(nil)).Elem(), + "LazyDLL": reflect.TypeOf((*q.LazyDLL)(nil)).Elem(), + "LazyProc": reflect.TypeOf((*q.LazyProc)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "MibIfRow": reflect.TypeOf((*q.MibIfRow)(nil)).Elem(), + "Overlapped": reflect.TypeOf((*q.Overlapped)(nil)).Elem(), + "Pointer": reflect.TypeOf((*q.Pointer)(nil)).Elem(), + "Proc": reflect.TypeOf((*q.Proc)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "ProcessEntry32": reflect.TypeOf((*q.ProcessEntry32)(nil)).Elem(), + "ProcessInformation": reflect.TypeOf((*q.ProcessInformation)(nil)).Elem(), + "Protoent": reflect.TypeOf((*q.Protoent)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "SID": reflect.TypeOf((*q.SID)(nil)).Elem(), + "SIDAndAttributes": reflect.TypeOf((*q.SIDAndAttributes)(nil)).Elem(), + "SSLExtraCertChainPolicyPara": reflect.TypeOf((*q.SSLExtraCertChainPolicyPara)(nil)).Elem(), + "SecurityAttributes": reflect.TypeOf((*q.SecurityAttributes)(nil)).Elem(), + "Servent": reflect.TypeOf((*q.Servent)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrGen": reflect.TypeOf((*q.SockaddrGen)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "StartupInfo": reflect.TypeOf((*q.StartupInfo)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Systemtime": reflect.TypeOf((*q.Systemtime)(nil)).Elem(), + "TCPKeepalive": reflect.TypeOf((*q.TCPKeepalive)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timezoneinformation": reflect.TypeOf((*q.Timezoneinformation)(nil)).Elem(), + "Token": reflect.TypeOf((*q.Token)(nil)).Elem(), + "Tokenprimarygroup": reflect.TypeOf((*q.Tokenprimarygroup)(nil)).Elem(), + "Tokenuser": reflect.TypeOf((*q.Tokenuser)(nil)).Elem(), + "TransmitFileBuffers": reflect.TypeOf((*q.TransmitFileBuffers)(nil)).Elem(), + "UserInfo10": reflect.TypeOf((*q.UserInfo10)(nil)).Elem(), + "WSABuf": reflect.TypeOf((*q.WSABuf)(nil)).Elem(), + "WSAData": reflect.TypeOf((*q.WSAData)(nil)).Elem(), + "WSAProtocolChain": reflect.TypeOf((*q.WSAProtocolChain)(nil)).Elem(), + "WSAProtocolInfo": reflect.TypeOf((*q.WSAProtocolInfo)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + "Win32FileAttributeData": reflect.TypeOf((*q.Win32FileAttributeData)(nil)).Elem(), + "Win32finddata": reflect.TypeOf((*q.Win32finddata)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&q.OID_PKIX_KP_SERVER_AUTH), + "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&q.OID_SERVER_GATED_CRYPTO), + "OID_SGC_NETSCAPE": reflect.ValueOf(&q.OID_SGC_NETSCAPE), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + "WSAID_CONNECTEX": reflect.ValueOf(&q.WSAID_CONNECTEX), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "AcceptEx": reflect.ValueOf(q.AcceptEx), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "CancelIo": reflect.ValueOf(q.CancelIo), + "CancelIoEx": reflect.ValueOf(q.CancelIoEx), + "CertAddCertificateContextToStore": reflect.ValueOf(q.CertAddCertificateContextToStore), + "CertCloseStore": reflect.ValueOf(q.CertCloseStore), + "CertCreateCertificateContext": reflect.ValueOf(q.CertCreateCertificateContext), + "CertEnumCertificatesInStore": reflect.ValueOf(q.CertEnumCertificatesInStore), + "CertFreeCertificateChain": reflect.ValueOf(q.CertFreeCertificateChain), + "CertFreeCertificateContext": reflect.ValueOf(q.CertFreeCertificateContext), + "CertGetCertificateChain": reflect.ValueOf(q.CertGetCertificateChain), + "CertOpenStore": reflect.ValueOf(q.CertOpenStore), + "CertOpenSystemStore": reflect.ValueOf(q.CertOpenSystemStore), + "CertVerifyCertificateChainPolicy": reflect.ValueOf(q.CertVerifyCertificateChainPolicy), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseHandle": reflect.ValueOf(q.CloseHandle), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "Closesocket": reflect.ValueOf(q.Closesocket), + "CommandLineToArgv": reflect.ValueOf(q.CommandLineToArgv), + "ComputerName": reflect.ValueOf(q.ComputerName), + "Connect": reflect.ValueOf(q.Connect), + "ConnectEx": reflect.ValueOf(q.ConnectEx), + "ConvertSidToStringSid": reflect.ValueOf(q.ConvertSidToStringSid), + "ConvertStringSidToSid": reflect.ValueOf(q.ConvertStringSidToSid), + "CopySid": reflect.ValueOf(q.CopySid), + "CreateDirectory": reflect.ValueOf(q.CreateDirectory), + "CreateFile": reflect.ValueOf(q.CreateFile), + "CreateFileMapping": reflect.ValueOf(q.CreateFileMapping), + "CreateHardLink": reflect.ValueOf(q.CreateHardLink), + "CreateIoCompletionPort": reflect.ValueOf(q.CreateIoCompletionPort), + "CreatePipe": reflect.ValueOf(q.CreatePipe), + "CreateProcess": reflect.ValueOf(q.CreateProcess), + "CreateProcessAsUser": reflect.ValueOf(q.CreateProcessAsUser), + "CreateSymbolicLink": reflect.ValueOf(q.CreateSymbolicLink), + "CreateToolhelp32Snapshot": reflect.ValueOf(q.CreateToolhelp32Snapshot), + "CryptAcquireContext": reflect.ValueOf(q.CryptAcquireContext), + "CryptGenRandom": reflect.ValueOf(q.CryptGenRandom), + "CryptReleaseContext": reflect.ValueOf(q.CryptReleaseContext), + "DeleteFile": reflect.ValueOf(q.DeleteFile), + "DeviceIoControl": reflect.ValueOf(q.DeviceIoControl), + "DnsNameCompare": reflect.ValueOf(q.DnsNameCompare), + "DnsQuery": reflect.ValueOf(q.DnsQuery), + "DnsRecordListFree": reflect.ValueOf(q.DnsRecordListFree), + "DuplicateHandle": reflect.ValueOf(q.DuplicateHandle), + "Environ": reflect.ValueOf(q.Environ), + "EscapeArg": reflect.ValueOf(q.EscapeArg), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "ExitProcess": reflect.ValueOf(q.ExitProcess), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FindClose": reflect.ValueOf(q.FindClose), + "FindFirstFile": reflect.ValueOf(q.FindFirstFile), + "FindNextFile": reflect.ValueOf(q.FindNextFile), + "FlushFileBuffers": reflect.ValueOf(q.FlushFileBuffers), + "FlushViewOfFile": reflect.ValueOf(q.FlushViewOfFile), + "FormatMessage": reflect.ValueOf(q.FormatMessage), + "FreeAddrInfoW": reflect.ValueOf(q.FreeAddrInfoW), + "FreeEnvironmentStrings": reflect.ValueOf(q.FreeEnvironmentStrings), + "FreeLibrary": reflect.ValueOf(q.FreeLibrary), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "FullPath": reflect.ValueOf(q.FullPath), + "GetAcceptExSockaddrs": reflect.ValueOf(q.GetAcceptExSockaddrs), + "GetAdaptersInfo": reflect.ValueOf(q.GetAdaptersInfo), + "GetAddrInfoW": reflect.ValueOf(q.GetAddrInfoW), + "GetCommandLine": reflect.ValueOf(q.GetCommandLine), + "GetComputerName": reflect.ValueOf(q.GetComputerName), + "GetConsoleMode": reflect.ValueOf(q.GetConsoleMode), + "GetCurrentDirectory": reflect.ValueOf(q.GetCurrentDirectory), + "GetCurrentProcess": reflect.ValueOf(q.GetCurrentProcess), + "GetEnvironmentStrings": reflect.ValueOf(q.GetEnvironmentStrings), + "GetEnvironmentVariable": reflect.ValueOf(q.GetEnvironmentVariable), + "GetExitCodeProcess": reflect.ValueOf(q.GetExitCodeProcess), + "GetFileAttributes": reflect.ValueOf(q.GetFileAttributes), + "GetFileAttributesEx": reflect.ValueOf(q.GetFileAttributesEx), + "GetFileInformationByHandle": reflect.ValueOf(q.GetFileInformationByHandle), + "GetFileType": reflect.ValueOf(q.GetFileType), + "GetFullPathName": reflect.ValueOf(q.GetFullPathName), + "GetHostByName": reflect.ValueOf(q.GetHostByName), + "GetIfEntry": reflect.ValueOf(q.GetIfEntry), + "GetLastError": reflect.ValueOf(q.GetLastError), + "GetLengthSid": reflect.ValueOf(q.GetLengthSid), + "GetLongPathName": reflect.ValueOf(q.GetLongPathName), + "GetProcAddress": reflect.ValueOf(q.GetProcAddress), + "GetProcessTimes": reflect.ValueOf(q.GetProcessTimes), + "GetProtoByName": reflect.ValueOf(q.GetProtoByName), + "GetQueuedCompletionStatus": reflect.ValueOf(q.GetQueuedCompletionStatus), + "GetServByName": reflect.ValueOf(q.GetServByName), + "GetShortPathName": reflect.ValueOf(q.GetShortPathName), + "GetStartupInfo": reflect.ValueOf(q.GetStartupInfo), + "GetStdHandle": reflect.ValueOf(q.GetStdHandle), + "GetSystemTimeAsFileTime": reflect.ValueOf(q.GetSystemTimeAsFileTime), + "GetTempPath": reflect.ValueOf(q.GetTempPath), + "GetTimeZoneInformation": reflect.ValueOf(q.GetTimeZoneInformation), + "GetTokenInformation": reflect.ValueOf(q.GetTokenInformation), + "GetUserNameEx": reflect.ValueOf(q.GetUserNameEx), + "GetUserProfileDirectory": reflect.ValueOf(q.GetUserProfileDirectory), + "GetVersion": reflect.ValueOf(q.GetVersion), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "Getsockopt": reflect.ValueOf(q.Getsockopt), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "LoadCancelIoEx": reflect.ValueOf(q.LoadCancelIoEx), + "LoadConnectEx": reflect.ValueOf(q.LoadConnectEx), + "LoadCreateSymbolicLink": reflect.ValueOf(q.LoadCreateSymbolicLink), + "LoadDLL": reflect.ValueOf(q.LoadDLL), + "LoadGetAddrInfo": reflect.ValueOf(q.LoadGetAddrInfo), + "LoadLibrary": reflect.ValueOf(q.LoadLibrary), + "LoadSetFileCompletionNotificationModes": reflect.ValueOf(q.LoadSetFileCompletionNotificationModes), + "LocalFree": reflect.ValueOf(q.LocalFree), + "LookupAccountName": reflect.ValueOf(q.LookupAccountName), + "LookupAccountSid": reflect.ValueOf(q.LookupAccountSid), + "LookupSID": reflect.ValueOf(q.LookupSID), + "MapViewOfFile": reflect.ValueOf(q.MapViewOfFile), + "Mkdir": reflect.ValueOf(q.Mkdir), + "MoveFile": reflect.ValueOf(q.MoveFile), + "MustLoadDLL": reflect.ValueOf(q.MustLoadDLL), + "NetApiBufferFree": reflect.ValueOf(q.NetApiBufferFree), + "NetGetJoinInformation": reflect.ValueOf(q.NetGetJoinInformation), + "NetUserGetInfo": reflect.ValueOf(q.NetUserGetInfo), + "NewCallback": reflect.ValueOf(q.NewCallback), + "NewCallbackCDecl": reflect.ValueOf(q.NewCallbackCDecl), + "NewLazyDLL": reflect.ValueOf(q.NewLazyDLL), + "NsecToFiletime": reflect.ValueOf(q.NsecToFiletime), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Ntohs": reflect.ValueOf(q.Ntohs), + "Open": reflect.ValueOf(q.Open), + "OpenCurrentProcessToken": reflect.ValueOf(q.OpenCurrentProcessToken), + "OpenProcess": reflect.ValueOf(q.OpenProcess), + "OpenProcessToken": reflect.ValueOf(q.OpenProcessToken), + "Pipe": reflect.ValueOf(q.Pipe), + "PostQueuedCompletionStatus": reflect.ValueOf(q.PostQueuedCompletionStatus), + "Process32First": reflect.ValueOf(q.Process32First), + "Process32Next": reflect.ValueOf(q.Process32Next), + "Read": reflect.ValueOf(q.Read), + "ReadConsole": reflect.ValueOf(q.ReadConsole), + "ReadDirectoryChanges": reflect.ValueOf(q.ReadDirectoryChanges), + "ReadFile": reflect.ValueOf(q.ReadFile), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "RegCloseKey": reflect.ValueOf(q.RegCloseKey), + "RegEnumKeyEx": reflect.ValueOf(q.RegEnumKeyEx), + "RegOpenKeyEx": reflect.ValueOf(q.RegOpenKeyEx), + "RegQueryInfoKey": reflect.ValueOf(q.RegQueryInfoKey), + "RegQueryValueEx": reflect.ValueOf(q.RegQueryValueEx), + "RemoveDirectory": reflect.ValueOf(q.RemoveDirectory), + "Rename": reflect.ValueOf(q.Rename), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Sendto": reflect.ValueOf(q.Sendto), + "SetCurrentDirectory": reflect.ValueOf(q.SetCurrentDirectory), + "SetEndOfFile": reflect.ValueOf(q.SetEndOfFile), + "SetEnvironmentVariable": reflect.ValueOf(q.SetEnvironmentVariable), + "SetFileAttributes": reflect.ValueOf(q.SetFileAttributes), + "SetFileCompletionNotificationModes": reflect.ValueOf(q.SetFileCompletionNotificationModes), + "SetFilePointer": reflect.ValueOf(q.SetFilePointer), + "SetFileTime": reflect.ValueOf(q.SetFileTime), + "SetHandleInformation": reflect.ValueOf(q.SetHandleInformation), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setenv": reflect.ValueOf(q.Setenv), + "Setsockopt": reflect.ValueOf(q.Setsockopt), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Shutdown": reflect.ValueOf(q.Shutdown), + "Socket": reflect.ValueOf(q.Socket), + "StartProcess": reflect.ValueOf(q.StartProcess), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringToSid": reflect.ValueOf(q.StringToSid), + "StringToUTF16": reflect.ValueOf(q.StringToUTF16), + "StringToUTF16Ptr": reflect.ValueOf(q.StringToUTF16Ptr), + "Symlink": reflect.ValueOf(q.Symlink), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall12": reflect.ValueOf(q.Syscall12), + "Syscall15": reflect.ValueOf(q.Syscall15), + "Syscall18": reflect.ValueOf(q.Syscall18), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "SyscallN": reflect.ValueOf(q.SyscallN), + "TerminateProcess": reflect.ValueOf(q.TerminateProcess), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TranslateAccountName": reflect.ValueOf(q.TranslateAccountName), + "TranslateName": reflect.ValueOf(q.TranslateName), + "TransmitFile": reflect.ValueOf(q.TransmitFile), + "UTF16FromString": reflect.ValueOf(q.UTF16FromString), + "UTF16PtrFromString": reflect.ValueOf(q.UTF16PtrFromString), + "UTF16ToString": reflect.ValueOf(q.UTF16ToString), + "Unlink": reflect.ValueOf(q.Unlink), + "UnmapViewOfFile": reflect.ValueOf(q.UnmapViewOfFile), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "VirtualLock": reflect.ValueOf(q.VirtualLock), + "VirtualUnlock": reflect.ValueOf(q.VirtualUnlock), + "WSACleanup": reflect.ValueOf(q.WSACleanup), + "WSAEnumProtocols": reflect.ValueOf(q.WSAEnumProtocols), + "WSAIoctl": reflect.ValueOf(q.WSAIoctl), + "WSARecv": reflect.ValueOf(q.WSARecv), + "WSARecvFrom": reflect.ValueOf(q.WSARecvFrom), + "WSASend": reflect.ValueOf(q.WSASend), + "WSASendTo": reflect.ValueOf(q.WSASendTo), + "WSASendto": reflect.ValueOf(q.WSASendto), + "WSAStartup": reflect.ValueOf(q.WSAStartup), + "WaitForSingleObject": reflect.ValueOf(q.WaitForSingleObject), + "Write": reflect.ValueOf(q.Write), + "WriteConsole": reflect.ValueOf(q.WriteConsole), + "WriteFile": reflect.ValueOf(q.WriteFile), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERROR_ACCESS_DENIED": {reflect.TypeOf(q.ERROR_ACCESS_DENIED), constant.MakeInt64(int64(q.ERROR_ACCESS_DENIED))}, + "ERROR_ALREADY_EXISTS": {reflect.TypeOf(q.ERROR_ALREADY_EXISTS), constant.MakeInt64(int64(q.ERROR_ALREADY_EXISTS))}, + "ERROR_BROKEN_PIPE": {reflect.TypeOf(q.ERROR_BROKEN_PIPE), constant.MakeInt64(int64(q.ERROR_BROKEN_PIPE))}, + "ERROR_BUFFER_OVERFLOW": {reflect.TypeOf(q.ERROR_BUFFER_OVERFLOW), constant.MakeInt64(int64(q.ERROR_BUFFER_OVERFLOW))}, + "ERROR_DIR_NOT_EMPTY": {reflect.TypeOf(q.ERROR_DIR_NOT_EMPTY), constant.MakeInt64(int64(q.ERROR_DIR_NOT_EMPTY))}, + "ERROR_ENVVAR_NOT_FOUND": {reflect.TypeOf(q.ERROR_ENVVAR_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_ENVVAR_NOT_FOUND))}, + "ERROR_FILE_EXISTS": {reflect.TypeOf(q.ERROR_FILE_EXISTS), constant.MakeInt64(int64(q.ERROR_FILE_EXISTS))}, + "ERROR_FILE_NOT_FOUND": {reflect.TypeOf(q.ERROR_FILE_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_FILE_NOT_FOUND))}, + "ERROR_HANDLE_EOF": {reflect.TypeOf(q.ERROR_HANDLE_EOF), constant.MakeInt64(int64(q.ERROR_HANDLE_EOF))}, + "ERROR_INSUFFICIENT_BUFFER": {reflect.TypeOf(q.ERROR_INSUFFICIENT_BUFFER), constant.MakeInt64(int64(q.ERROR_INSUFFICIENT_BUFFER))}, + "ERROR_IO_PENDING": {reflect.TypeOf(q.ERROR_IO_PENDING), constant.MakeInt64(int64(q.ERROR_IO_PENDING))}, + "ERROR_MOD_NOT_FOUND": {reflect.TypeOf(q.ERROR_MOD_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_MOD_NOT_FOUND))}, + "ERROR_MORE_DATA": {reflect.TypeOf(q.ERROR_MORE_DATA), constant.MakeInt64(int64(q.ERROR_MORE_DATA))}, + "ERROR_NETNAME_DELETED": {reflect.TypeOf(q.ERROR_NETNAME_DELETED), constant.MakeInt64(int64(q.ERROR_NETNAME_DELETED))}, + "ERROR_NOT_FOUND": {reflect.TypeOf(q.ERROR_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_NOT_FOUND))}, + "ERROR_NO_MORE_FILES": {reflect.TypeOf(q.ERROR_NO_MORE_FILES), constant.MakeInt64(int64(q.ERROR_NO_MORE_FILES))}, + "ERROR_OPERATION_ABORTED": {reflect.TypeOf(q.ERROR_OPERATION_ABORTED), constant.MakeInt64(int64(q.ERROR_OPERATION_ABORTED))}, + "ERROR_PATH_NOT_FOUND": {reflect.TypeOf(q.ERROR_PATH_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_PATH_NOT_FOUND))}, + "ERROR_PRIVILEGE_NOT_HELD": {reflect.TypeOf(q.ERROR_PRIVILEGE_NOT_HELD), constant.MakeInt64(int64(q.ERROR_PRIVILEGE_NOT_HELD))}, + "ERROR_PROC_NOT_FOUND": {reflect.TypeOf(q.ERROR_PROC_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_PROC_NOT_FOUND))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWINDOWS": {reflect.TypeOf(q.EWINDOWS), constant.MakeInt64(int64(q.EWINDOWS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "InvalidHandle": {reflect.TypeOf(q.InvalidHandle), constant.MakeUint64(uint64(q.InvalidHandle))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "WSAEACCES": {reflect.TypeOf(q.WSAEACCES), constant.MakeInt64(int64(q.WSAEACCES))}, + "WSAECONNABORTED": {reflect.TypeOf(q.WSAECONNABORTED), constant.MakeInt64(int64(q.WSAECONNABORTED))}, + "WSAECONNRESET": {reflect.TypeOf(q.WSAECONNRESET), constant.MakeInt64(int64(q.WSAECONNRESET))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AI_CANONNAME": {"untyped int", constant.MakeInt64(int64(q.AI_CANONNAME))}, + "AI_NUMERICHOST": {"untyped int", constant.MakeInt64(int64(q.AI_NUMERICHOST))}, + "AI_PASSIVE": {"untyped int", constant.MakeInt64(int64(q.AI_PASSIVE))}, + "APPLICATION_ERROR": {"untyped int", constant.MakeInt64(int64(q.APPLICATION_ERROR))}, + "AUTHTYPE_CLIENT": {"untyped int", constant.MakeInt64(int64(q.AUTHTYPE_CLIENT))}, + "AUTHTYPE_SERVER": {"untyped int", constant.MakeInt64(int64(q.AUTHTYPE_SERVER))}, + "BASE_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.BASE_PROTOCOL))}, + "CERT_CHAIN_POLICY_AUTHENTICODE": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_AUTHENTICODE))}, + "CERT_CHAIN_POLICY_AUTHENTICODE_TS": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_AUTHENTICODE_TS))}, + "CERT_CHAIN_POLICY_BASE": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_BASE))}, + "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_BASIC_CONSTRAINTS))}, + "CERT_CHAIN_POLICY_EV": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_EV))}, + "CERT_CHAIN_POLICY_MICROSOFT_ROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_MICROSOFT_ROOT))}, + "CERT_CHAIN_POLICY_NT_AUTH": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_NT_AUTH))}, + "CERT_CHAIN_POLICY_SSL": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_SSL))}, + "CERT_E_CN_NO_MATCH": {"untyped int", constant.MakeInt64(int64(q.CERT_E_CN_NO_MATCH))}, + "CERT_E_EXPIRED": {"untyped int", constant.MakeInt64(int64(q.CERT_E_EXPIRED))}, + "CERT_E_PURPOSE": {"untyped int", constant.MakeInt64(int64(q.CERT_E_PURPOSE))}, + "CERT_E_ROLE": {"untyped int", constant.MakeInt64(int64(q.CERT_E_ROLE))}, + "CERT_E_UNTRUSTEDROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_E_UNTRUSTEDROOT))}, + "CERT_STORE_ADD_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_ADD_ALWAYS))}, + "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG))}, + "CERT_STORE_PROV_MEMORY": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_PROV_MEMORY))}, + "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT))}, + "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT))}, + "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_BASIC_CONSTRAINTS))}, + "CERT_TRUST_INVALID_EXTENSION": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_EXTENSION))}, + "CERT_TRUST_INVALID_NAME_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_NAME_CONSTRAINTS))}, + "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_POLICY_CONSTRAINTS))}, + "CERT_TRUST_IS_CYCLIC": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_CYCLIC))}, + "CERT_TRUST_IS_EXPLICIT_DISTRUST": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_EXPLICIT_DISTRUST))}, + "CERT_TRUST_IS_NOT_SIGNATURE_VALID": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_SIGNATURE_VALID))}, + "CERT_TRUST_IS_NOT_TIME_VALID": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_TIME_VALID))}, + "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_VALID_FOR_USAGE))}, + "CERT_TRUST_IS_OFFLINE_REVOCATION": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_OFFLINE_REVOCATION))}, + "CERT_TRUST_IS_REVOKED": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_REVOKED))}, + "CERT_TRUST_IS_UNTRUSTED_ROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_UNTRUSTED_ROOT))}, + "CERT_TRUST_NO_ERROR": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_NO_ERROR))}, + "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY))}, + "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_REVOCATION_STATUS_UNKNOWN))}, + "CREATE_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.CREATE_ALWAYS))}, + "CREATE_NEW": {"untyped int", constant.MakeInt64(int64(q.CREATE_NEW))}, + "CREATE_NEW_PROCESS_GROUP": {"untyped int", constant.MakeInt64(int64(q.CREATE_NEW_PROCESS_GROUP))}, + "CREATE_UNICODE_ENVIRONMENT": {"untyped int", constant.MakeInt64(int64(q.CREATE_UNICODE_ENVIRONMENT))}, + "CRYPT_DEFAULT_CONTAINER_OPTIONAL": {"untyped int", constant.MakeInt64(int64(q.CRYPT_DEFAULT_CONTAINER_OPTIONAL))}, + "CRYPT_DELETEKEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_DELETEKEYSET))}, + "CRYPT_MACHINE_KEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_MACHINE_KEYSET))}, + "CRYPT_NEWKEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_NEWKEYSET))}, + "CRYPT_SILENT": {"untyped int", constant.MakeInt64(int64(q.CRYPT_SILENT))}, + "CRYPT_VERIFYCONTEXT": {"untyped int", constant.MakeInt64(int64(q.CRYPT_VERIFYCONTEXT))}, + "CTRL_BREAK_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_BREAK_EVENT))}, + "CTRL_CLOSE_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_CLOSE_EVENT))}, + "CTRL_C_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_C_EVENT))}, + "CTRL_LOGOFF_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_LOGOFF_EVENT))}, + "CTRL_SHUTDOWN_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_SHUTDOWN_EVENT))}, + "DNS_INFO_NO_RECORDS": {"untyped int", constant.MakeInt64(int64(q.DNS_INFO_NO_RECORDS))}, + "DNS_TYPE_A": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_A))}, + "DNS_TYPE_A6": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_A6))}, + "DNS_TYPE_AAAA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AAAA))}, + "DNS_TYPE_ADDRS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ADDRS))}, + "DNS_TYPE_AFSDB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AFSDB))}, + "DNS_TYPE_ALL": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ALL))}, + "DNS_TYPE_ANY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ANY))}, + "DNS_TYPE_ATMA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ATMA))}, + "DNS_TYPE_AXFR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AXFR))}, + "DNS_TYPE_CERT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_CERT))}, + "DNS_TYPE_CNAME": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_CNAME))}, + "DNS_TYPE_DHCID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DHCID))}, + "DNS_TYPE_DNAME": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DNAME))}, + "DNS_TYPE_DNSKEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DNSKEY))}, + "DNS_TYPE_DS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DS))}, + "DNS_TYPE_EID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_EID))}, + "DNS_TYPE_GID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_GID))}, + "DNS_TYPE_GPOS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_GPOS))}, + "DNS_TYPE_HINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_HINFO))}, + "DNS_TYPE_ISDN": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ISDN))}, + "DNS_TYPE_IXFR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_IXFR))}, + "DNS_TYPE_KEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_KEY))}, + "DNS_TYPE_KX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_KX))}, + "DNS_TYPE_LOC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_LOC))}, + "DNS_TYPE_MAILA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MAILA))}, + "DNS_TYPE_MAILB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MAILB))}, + "DNS_TYPE_MB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MB))}, + "DNS_TYPE_MD": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MD))}, + "DNS_TYPE_MF": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MF))}, + "DNS_TYPE_MG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MG))}, + "DNS_TYPE_MINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MINFO))}, + "DNS_TYPE_MR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MR))}, + "DNS_TYPE_MX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MX))}, + "DNS_TYPE_NAPTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NAPTR))}, + "DNS_TYPE_NBSTAT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NBSTAT))}, + "DNS_TYPE_NIMLOC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NIMLOC))}, + "DNS_TYPE_NS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NS))}, + "DNS_TYPE_NSAP": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSAP))}, + "DNS_TYPE_NSAPPTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSAPPTR))}, + "DNS_TYPE_NSEC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSEC))}, + "DNS_TYPE_NULL": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NULL))}, + "DNS_TYPE_NXT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NXT))}, + "DNS_TYPE_OPT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_OPT))}, + "DNS_TYPE_PTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_PTR))}, + "DNS_TYPE_PX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_PX))}, + "DNS_TYPE_RP": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RP))}, + "DNS_TYPE_RRSIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RRSIG))}, + "DNS_TYPE_RT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RT))}, + "DNS_TYPE_SIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SIG))}, + "DNS_TYPE_SINK": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SINK))}, + "DNS_TYPE_SOA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SOA))}, + "DNS_TYPE_SRV": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SRV))}, + "DNS_TYPE_TEXT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TEXT))}, + "DNS_TYPE_TKEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TKEY))}, + "DNS_TYPE_TSIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TSIG))}, + "DNS_TYPE_UID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UID))}, + "DNS_TYPE_UINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UINFO))}, + "DNS_TYPE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UNSPEC))}, + "DNS_TYPE_WINS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WINS))}, + "DNS_TYPE_WINSR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WINSR))}, + "DNS_TYPE_WKS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WKS))}, + "DNS_TYPE_X25": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_X25))}, + "DUPLICATE_CLOSE_SOURCE": {"untyped int", constant.MakeInt64(int64(q.DUPLICATE_CLOSE_SOURCE))}, + "DUPLICATE_SAME_ACCESS": {"untyped int", constant.MakeInt64(int64(q.DUPLICATE_SAME_ACCESS))}, + "DnsSectionAdditional": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAdditional))}, + "DnsSectionAnswer": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAnswer))}, + "DnsSectionAuthority": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAuthority))}, + "DnsSectionQuestion": {"untyped int", constant.MakeInt64(int64(q.DnsSectionQuestion))}, + "FILE_ACTION_ADDED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_ADDED))}, + "FILE_ACTION_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_MODIFIED))}, + "FILE_ACTION_REMOVED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_REMOVED))}, + "FILE_ACTION_RENAMED_NEW_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_RENAMED_NEW_NAME))}, + "FILE_ACTION_RENAMED_OLD_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_RENAMED_OLD_NAME))}, + "FILE_APPEND_DATA": {"untyped int", constant.MakeInt64(int64(q.FILE_APPEND_DATA))}, + "FILE_ATTRIBUTE_ARCHIVE": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_ARCHIVE))}, + "FILE_ATTRIBUTE_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_DIRECTORY))}, + "FILE_ATTRIBUTE_HIDDEN": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_HIDDEN))}, + "FILE_ATTRIBUTE_NORMAL": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_NORMAL))}, + "FILE_ATTRIBUTE_READONLY": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_READONLY))}, + "FILE_ATTRIBUTE_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_REPARSE_POINT))}, + "FILE_ATTRIBUTE_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_SYSTEM))}, + "FILE_BEGIN": {"untyped int", constant.MakeInt64(int64(q.FILE_BEGIN))}, + "FILE_CURRENT": {"untyped int", constant.MakeInt64(int64(q.FILE_CURRENT))}, + "FILE_END": {"untyped int", constant.MakeInt64(int64(q.FILE_END))}, + "FILE_FLAG_BACKUP_SEMANTICS": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_BACKUP_SEMANTICS))}, + "FILE_FLAG_OPEN_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_OPEN_REPARSE_POINT))}, + "FILE_FLAG_OVERLAPPED": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_OVERLAPPED))}, + "FILE_LIST_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.FILE_LIST_DIRECTORY))}, + "FILE_MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_COPY))}, + "FILE_MAP_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_EXECUTE))}, + "FILE_MAP_READ": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_READ))}, + "FILE_MAP_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_WRITE))}, + "FILE_NOTIFY_CHANGE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_ATTRIBUTES))}, + "FILE_NOTIFY_CHANGE_CREATION": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_CREATION))}, + "FILE_NOTIFY_CHANGE_DIR_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_DIR_NAME))}, + "FILE_NOTIFY_CHANGE_FILE_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_FILE_NAME))}, + "FILE_NOTIFY_CHANGE_LAST_ACCESS": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_LAST_ACCESS))}, + "FILE_NOTIFY_CHANGE_LAST_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_LAST_WRITE))}, + "FILE_NOTIFY_CHANGE_SIZE": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_SIZE))}, + "FILE_SHARE_DELETE": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_DELETE))}, + "FILE_SHARE_READ": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_READ))}, + "FILE_SHARE_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_WRITE))}, + "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": {"untyped int", constant.MakeInt64(int64(q.FILE_SKIP_COMPLETION_PORT_ON_SUCCESS))}, + "FILE_SKIP_SET_EVENT_ON_HANDLE": {"untyped int", constant.MakeInt64(int64(q.FILE_SKIP_SET_EVENT_ON_HANDLE))}, + "FILE_TYPE_CHAR": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_CHAR))}, + "FILE_TYPE_DISK": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_DISK))}, + "FILE_TYPE_PIPE": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_PIPE))}, + "FILE_TYPE_REMOTE": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_REMOTE))}, + "FILE_TYPE_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_UNKNOWN))}, + "FILE_WRITE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.FILE_WRITE_ATTRIBUTES))}, + "FORMAT_MESSAGE_ALLOCATE_BUFFER": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_ALLOCATE_BUFFER))}, + "FORMAT_MESSAGE_ARGUMENT_ARRAY": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_ARGUMENT_ARRAY))}, + "FORMAT_MESSAGE_FROM_HMODULE": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_HMODULE))}, + "FORMAT_MESSAGE_FROM_STRING": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_STRING))}, + "FORMAT_MESSAGE_FROM_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_SYSTEM))}, + "FORMAT_MESSAGE_IGNORE_INSERTS": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_IGNORE_INSERTS))}, + "FORMAT_MESSAGE_MAX_WIDTH_MASK": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_MAX_WIDTH_MASK))}, + "FSCTL_GET_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FSCTL_GET_REPARSE_POINT))}, + "GENERIC_ALL": {"untyped int", constant.MakeInt64(int64(q.GENERIC_ALL))}, + "GENERIC_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.GENERIC_EXECUTE))}, + "GENERIC_READ": {"untyped int", constant.MakeInt64(int64(q.GENERIC_READ))}, + "GENERIC_WRITE": {"untyped int", constant.MakeInt64(int64(q.GENERIC_WRITE))}, + "GetFileExInfoStandard": {"untyped int", constant.MakeInt64(int64(q.GetFileExInfoStandard))}, + "GetFileExMaxInfoLevel": {"untyped int", constant.MakeInt64(int64(q.GetFileExMaxInfoLevel))}, + "HANDLE_FLAG_INHERIT": {"untyped int", constant.MakeInt64(int64(q.HANDLE_FLAG_INHERIT))}, + "HKEY_CLASSES_ROOT": {"untyped int", constant.MakeInt64(int64(q.HKEY_CLASSES_ROOT))}, + "HKEY_CURRENT_CONFIG": {"untyped int", constant.MakeInt64(int64(q.HKEY_CURRENT_CONFIG))}, + "HKEY_CURRENT_USER": {"untyped int", constant.MakeInt64(int64(q.HKEY_CURRENT_USER))}, + "HKEY_DYN_DATA": {"untyped int", constant.MakeInt64(int64(q.HKEY_DYN_DATA))}, + "HKEY_LOCAL_MACHINE": {"untyped int", constant.MakeInt64(int64(q.HKEY_LOCAL_MACHINE))}, + "HKEY_PERFORMANCE_DATA": {"untyped int", constant.MakeInt64(int64(q.HKEY_PERFORMANCE_DATA))}, + "HKEY_USERS": {"untyped int", constant.MakeInt64(int64(q.HKEY_USERS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_POINTTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTTOPOINT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IGNORE": {"untyped int", constant.MakeInt64(int64(q.IGNORE))}, + "INFINITE": {"untyped int", constant.MakeInt64(int64(q.INFINITE))}, + "INVALID_FILE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.INVALID_FILE_ATTRIBUTES))}, + "IOC_IN": {"untyped int", constant.MakeInt64(int64(q.IOC_IN))}, + "IOC_INOUT": {"untyped int", constant.MakeInt64(int64(q.IOC_INOUT))}, + "IOC_OUT": {"untyped int", constant.MakeInt64(int64(q.IOC_OUT))}, + "IOC_VENDOR": {"untyped int", constant.MakeInt64(int64(q.IOC_VENDOR))}, + "IOC_WS2": {"untyped int", constant.MakeInt64(int64(q.IOC_WS2))}, + "IO_REPARSE_TAG_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.IO_REPARSE_TAG_SYMLINK))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "KEY_ALL_ACCESS": {"untyped int", constant.MakeInt64(int64(q.KEY_ALL_ACCESS))}, + "KEY_CREATE_LINK": {"untyped int", constant.MakeInt64(int64(q.KEY_CREATE_LINK))}, + "KEY_CREATE_SUB_KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_CREATE_SUB_KEY))}, + "KEY_ENUMERATE_SUB_KEYS": {"untyped int", constant.MakeInt64(int64(q.KEY_ENUMERATE_SUB_KEYS))}, + "KEY_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.KEY_EXECUTE))}, + "KEY_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.KEY_NOTIFY))}, + "KEY_QUERY_VALUE": {"untyped int", constant.MakeInt64(int64(q.KEY_QUERY_VALUE))}, + "KEY_READ": {"untyped int", constant.MakeInt64(int64(q.KEY_READ))}, + "KEY_SET_VALUE": {"untyped int", constant.MakeInt64(int64(q.KEY_SET_VALUE))}, + "KEY_WOW64_32KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_WOW64_32KEY))}, + "KEY_WOW64_64KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_WOW64_64KEY))}, + "KEY_WRITE": {"untyped int", constant.MakeInt64(int64(q.KEY_WRITE))}, + "LANG_ENGLISH": {"untyped int", constant.MakeInt64(int64(q.LANG_ENGLISH))}, + "LAYERED_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.LAYERED_PROTOCOL))}, + "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": {"untyped int", constant.MakeInt64(int64(q.MAXIMUM_REPARSE_DATA_BUFFER_SIZE))}, + "MAXLEN_IFDESCR": {"untyped int", constant.MakeInt64(int64(q.MAXLEN_IFDESCR))}, + "MAXLEN_PHYSADDR": {"untyped int", constant.MakeInt64(int64(q.MAXLEN_PHYSADDR))}, + "MAX_ADAPTER_ADDRESS_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_ADDRESS_LENGTH))}, + "MAX_ADAPTER_DESCRIPTION_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_DESCRIPTION_LENGTH))}, + "MAX_ADAPTER_NAME_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_NAME_LENGTH))}, + "MAX_COMPUTERNAME_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_COMPUTERNAME_LENGTH))}, + "MAX_INTERFACE_NAME_LEN": {"untyped int", constant.MakeInt64(int64(q.MAX_INTERFACE_NAME_LEN))}, + "MAX_LONG_PATH": {"untyped int", constant.MakeInt64(int64(q.MAX_LONG_PATH))}, + "MAX_PATH": {"untyped int", constant.MakeInt64(int64(q.MAX_PATH))}, + "MAX_PROTOCOL_CHAIN": {"untyped int", constant.MakeInt64(int64(q.MAX_PROTOCOL_CHAIN))}, + "MaxTokenInfoClass": {"untyped int", constant.MakeInt64(int64(q.MaxTokenInfoClass))}, + "NameCanonical": {"untyped int", constant.MakeInt64(int64(q.NameCanonical))}, + "NameCanonicalEx": {"untyped int", constant.MakeInt64(int64(q.NameCanonicalEx))}, + "NameDisplay": {"untyped int", constant.MakeInt64(int64(q.NameDisplay))}, + "NameDnsDomain": {"untyped int", constant.MakeInt64(int64(q.NameDnsDomain))}, + "NameFullyQualifiedDN": {"untyped int", constant.MakeInt64(int64(q.NameFullyQualifiedDN))}, + "NameSamCompatible": {"untyped int", constant.MakeInt64(int64(q.NameSamCompatible))}, + "NameServicePrincipal": {"untyped int", constant.MakeInt64(int64(q.NameServicePrincipal))}, + "NameUniqueId": {"untyped int", constant.MakeInt64(int64(q.NameUniqueId))}, + "NameUnknown": {"untyped int", constant.MakeInt64(int64(q.NameUnknown))}, + "NameUserPrincipal": {"untyped int", constant.MakeInt64(int64(q.NameUserPrincipal))}, + "NetSetupDomainName": {"untyped int", constant.MakeInt64(int64(q.NetSetupDomainName))}, + "NetSetupUnjoined": {"untyped int", constant.MakeInt64(int64(q.NetSetupUnjoined))}, + "NetSetupUnknownStatus": {"untyped int", constant.MakeInt64(int64(q.NetSetupUnknownStatus))}, + "NetSetupWorkgroupName": {"untyped int", constant.MakeInt64(int64(q.NetSetupWorkgroupName))}, + "OPEN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.OPEN_ALWAYS))}, + "OPEN_EXISTING": {"untyped int", constant.MakeInt64(int64(q.OPEN_EXISTING))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PAGE_EXECUTE_READ": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_READ))}, + "PAGE_EXECUTE_READWRITE": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_READWRITE))}, + "PAGE_EXECUTE_WRITECOPY": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_WRITECOPY))}, + "PAGE_READONLY": {"untyped int", constant.MakeInt64(int64(q.PAGE_READONLY))}, + "PAGE_READWRITE": {"untyped int", constant.MakeInt64(int64(q.PAGE_READWRITE))}, + "PAGE_WRITECOPY": {"untyped int", constant.MakeInt64(int64(q.PAGE_WRITECOPY))}, + "PFL_HIDDEN": {"untyped int", constant.MakeInt64(int64(q.PFL_HIDDEN))}, + "PFL_MATCHES_PROTOCOL_ZERO": {"untyped int", constant.MakeInt64(int64(q.PFL_MATCHES_PROTOCOL_ZERO))}, + "PFL_MULTIPLE_PROTO_ENTRIES": {"untyped int", constant.MakeInt64(int64(q.PFL_MULTIPLE_PROTO_ENTRIES))}, + "PFL_NETWORKDIRECT_PROVIDER": {"untyped int", constant.MakeInt64(int64(q.PFL_NETWORKDIRECT_PROVIDER))}, + "PFL_RECOMMENDED_PROTO_ENTRY": {"untyped int", constant.MakeInt64(int64(q.PFL_RECOMMENDED_PROTO_ENTRY))}, + "PKCS_7_ASN_ENCODING": {"untyped int", constant.MakeInt64(int64(q.PKCS_7_ASN_ENCODING))}, + "PROCESS_QUERY_INFORMATION": {"untyped int", constant.MakeInt64(int64(q.PROCESS_QUERY_INFORMATION))}, + "PROCESS_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.PROCESS_TERMINATE))}, + "PROV_DH_SCHANNEL": {"untyped int", constant.MakeInt64(int64(q.PROV_DH_SCHANNEL))}, + "PROV_DSS": {"untyped int", constant.MakeInt64(int64(q.PROV_DSS))}, + "PROV_DSS_DH": {"untyped int", constant.MakeInt64(int64(q.PROV_DSS_DH))}, + "PROV_EC_ECDSA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECDSA_FULL))}, + "PROV_EC_ECDSA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECDSA_SIG))}, + "PROV_EC_ECNRA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECNRA_FULL))}, + "PROV_EC_ECNRA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECNRA_SIG))}, + "PROV_FORTEZZA": {"untyped int", constant.MakeInt64(int64(q.PROV_FORTEZZA))}, + "PROV_INTEL_SEC": {"untyped int", constant.MakeInt64(int64(q.PROV_INTEL_SEC))}, + "PROV_MS_EXCHANGE": {"untyped int", constant.MakeInt64(int64(q.PROV_MS_EXCHANGE))}, + "PROV_REPLACE_OWF": {"untyped int", constant.MakeInt64(int64(q.PROV_REPLACE_OWF))}, + "PROV_RNG": {"untyped int", constant.MakeInt64(int64(q.PROV_RNG))}, + "PROV_RSA_AES": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_AES))}, + "PROV_RSA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_FULL))}, + "PROV_RSA_SCHANNEL": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_SCHANNEL))}, + "PROV_RSA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_SIG))}, + "PROV_SPYRUS_LYNKS": {"untyped int", constant.MakeInt64(int64(q.PROV_SPYRUS_LYNKS))}, + "PROV_SSL": {"untyped int", constant.MakeInt64(int64(q.PROV_SSL))}, + "REG_BINARY": {"untyped int", constant.MakeInt64(int64(q.REG_BINARY))}, + "REG_DWORD": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD))}, + "REG_DWORD_BIG_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD_BIG_ENDIAN))}, + "REG_DWORD_LITTLE_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD_LITTLE_ENDIAN))}, + "REG_EXPAND_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_EXPAND_SZ))}, + "REG_FULL_RESOURCE_DESCRIPTOR": {"untyped int", constant.MakeInt64(int64(q.REG_FULL_RESOURCE_DESCRIPTOR))}, + "REG_LINK": {"untyped int", constant.MakeInt64(int64(q.REG_LINK))}, + "REG_MULTI_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_MULTI_SZ))}, + "REG_NONE": {"untyped int", constant.MakeInt64(int64(q.REG_NONE))}, + "REG_QWORD": {"untyped int", constant.MakeInt64(int64(q.REG_QWORD))}, + "REG_QWORD_LITTLE_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_QWORD_LITTLE_ENDIAN))}, + "REG_RESOURCE_LIST": {"untyped int", constant.MakeInt64(int64(q.REG_RESOURCE_LIST))}, + "REG_RESOURCE_REQUIREMENTS_LIST": {"untyped int", constant.MakeInt64(int64(q.REG_RESOURCE_REQUIREMENTS_LIST))}, + "REG_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_SZ))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIO_GET_EXTENSION_FUNCTION_POINTER": {"untyped int", constant.MakeInt64(int64(q.SIO_GET_EXTENSION_FUNCTION_POINTER))}, + "SIO_GET_INTERFACE_LIST": {"untyped int", constant.MakeInt64(int64(q.SIO_GET_INTERFACE_LIST))}, + "SIO_KEEPALIVE_VALS": {"untyped int", constant.MakeInt64(int64(q.SIO_KEEPALIVE_VALS))}, + "SIO_UDP_CONNRESET": {"untyped int", constant.MakeInt64(int64(q.SIO_UDP_CONNRESET))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_UPDATE_ACCEPT_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.SO_UPDATE_ACCEPT_CONTEXT))}, + "SO_UPDATE_CONNECT_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.SO_UPDATE_CONNECT_CONTEXT))}, + "STANDARD_RIGHTS_ALL": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_ALL))}, + "STANDARD_RIGHTS_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_EXECUTE))}, + "STANDARD_RIGHTS_READ": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_READ))}, + "STANDARD_RIGHTS_REQUIRED": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_REQUIRED))}, + "STANDARD_RIGHTS_WRITE": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_WRITE))}, + "STARTF_USESHOWWINDOW": {"untyped int", constant.MakeInt64(int64(q.STARTF_USESHOWWINDOW))}, + "STARTF_USESTDHANDLES": {"untyped int", constant.MakeInt64(int64(q.STARTF_USESTDHANDLES))}, + "STD_ERROR_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_ERROR_HANDLE))}, + "STD_INPUT_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_INPUT_HANDLE))}, + "STD_OUTPUT_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_OUTPUT_HANDLE))}, + "SUBLANG_ENGLISH_US": {"untyped int", constant.MakeInt64(int64(q.SUBLANG_ENGLISH_US))}, + "SW_FORCEMINIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_FORCEMINIMIZE))}, + "SW_HIDE": {"untyped int", constant.MakeInt64(int64(q.SW_HIDE))}, + "SW_MAXIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_MAXIMIZE))}, + "SW_MINIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_MINIMIZE))}, + "SW_NORMAL": {"untyped int", constant.MakeInt64(int64(q.SW_NORMAL))}, + "SW_RESTORE": {"untyped int", constant.MakeInt64(int64(q.SW_RESTORE))}, + "SW_SHOW": {"untyped int", constant.MakeInt64(int64(q.SW_SHOW))}, + "SW_SHOWDEFAULT": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWDEFAULT))}, + "SW_SHOWMAXIMIZED": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMAXIMIZED))}, + "SW_SHOWMINIMIZED": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMINIMIZED))}, + "SW_SHOWMINNOACTIVE": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMINNOACTIVE))}, + "SW_SHOWNA": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNA))}, + "SW_SHOWNOACTIVATE": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNOACTIVATE))}, + "SW_SHOWNORMAL": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNORMAL))}, + "SYMBOLIC_LINK_FLAG_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.SYMBOLIC_LINK_FLAG_DIRECTORY))}, + "SYNCHRONIZE": {"untyped int", constant.MakeInt64(int64(q.SYNCHRONIZE))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SidTypeAlias": {"untyped int", constant.MakeInt64(int64(q.SidTypeAlias))}, + "SidTypeComputer": {"untyped int", constant.MakeInt64(int64(q.SidTypeComputer))}, + "SidTypeDeletedAccount": {"untyped int", constant.MakeInt64(int64(q.SidTypeDeletedAccount))}, + "SidTypeDomain": {"untyped int", constant.MakeInt64(int64(q.SidTypeDomain))}, + "SidTypeGroup": {"untyped int", constant.MakeInt64(int64(q.SidTypeGroup))}, + "SidTypeInvalid": {"untyped int", constant.MakeInt64(int64(q.SidTypeInvalid))}, + "SidTypeLabel": {"untyped int", constant.MakeInt64(int64(q.SidTypeLabel))}, + "SidTypeUnknown": {"untyped int", constant.MakeInt64(int64(q.SidTypeUnknown))}, + "SidTypeUser": {"untyped int", constant.MakeInt64(int64(q.SidTypeUser))}, + "SidTypeWellKnownGroup": {"untyped int", constant.MakeInt64(int64(q.SidTypeWellKnownGroup))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TF_DISCONNECT": {"untyped int", constant.MakeInt64(int64(q.TF_DISCONNECT))}, + "TF_REUSE_SOCKET": {"untyped int", constant.MakeInt64(int64(q.TF_REUSE_SOCKET))}, + "TF_USE_DEFAULT_WORKER": {"untyped int", constant.MakeInt64(int64(q.TF_USE_DEFAULT_WORKER))}, + "TF_USE_KERNEL_APC": {"untyped int", constant.MakeInt64(int64(q.TF_USE_KERNEL_APC))}, + "TF_USE_SYSTEM_THREAD": {"untyped int", constant.MakeInt64(int64(q.TF_USE_SYSTEM_THREAD))}, + "TF_WRITE_BEHIND": {"untyped int", constant.MakeInt64(int64(q.TF_WRITE_BEHIND))}, + "TH32CS_INHERIT": {"untyped int", constant.MakeInt64(int64(q.TH32CS_INHERIT))}, + "TH32CS_SNAPALL": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPALL))}, + "TH32CS_SNAPHEAPLIST": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPHEAPLIST))}, + "TH32CS_SNAPMODULE": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPMODULE))}, + "TH32CS_SNAPMODULE32": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPMODULE32))}, + "TH32CS_SNAPPROCESS": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPPROCESS))}, + "TH32CS_SNAPTHREAD": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPTHREAD))}, + "TIME_ZONE_ID_DAYLIGHT": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_DAYLIGHT))}, + "TIME_ZONE_ID_STANDARD": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_STANDARD))}, + "TIME_ZONE_ID_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_UNKNOWN))}, + "TOKEN_ADJUST_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_DEFAULT))}, + "TOKEN_ADJUST_GROUPS": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_GROUPS))}, + "TOKEN_ADJUST_PRIVILEGES": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_PRIVILEGES))}, + "TOKEN_ADJUST_SESSIONID": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_SESSIONID))}, + "TOKEN_ALL_ACCESS": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ALL_ACCESS))}, + "TOKEN_ASSIGN_PRIMARY": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ASSIGN_PRIMARY))}, + "TOKEN_DUPLICATE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_DUPLICATE))}, + "TOKEN_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_EXECUTE))}, + "TOKEN_IMPERSONATE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_IMPERSONATE))}, + "TOKEN_QUERY": {"untyped int", constant.MakeInt64(int64(q.TOKEN_QUERY))}, + "TOKEN_QUERY_SOURCE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_QUERY_SOURCE))}, + "TOKEN_READ": {"untyped int", constant.MakeInt64(int64(q.TOKEN_READ))}, + "TOKEN_WRITE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_WRITE))}, + "TRUNCATE_EXISTING": {"untyped int", constant.MakeInt64(int64(q.TRUNCATE_EXISTING))}, + "TokenAccessInformation": {"untyped int", constant.MakeInt64(int64(q.TokenAccessInformation))}, + "TokenAuditPolicy": {"untyped int", constant.MakeInt64(int64(q.TokenAuditPolicy))}, + "TokenDefaultDacl": {"untyped int", constant.MakeInt64(int64(q.TokenDefaultDacl))}, + "TokenElevation": {"untyped int", constant.MakeInt64(int64(q.TokenElevation))}, + "TokenElevationType": {"untyped int", constant.MakeInt64(int64(q.TokenElevationType))}, + "TokenGroups": {"untyped int", constant.MakeInt64(int64(q.TokenGroups))}, + "TokenGroupsAndPrivileges": {"untyped int", constant.MakeInt64(int64(q.TokenGroupsAndPrivileges))}, + "TokenHasRestrictions": {"untyped int", constant.MakeInt64(int64(q.TokenHasRestrictions))}, + "TokenImpersonationLevel": {"untyped int", constant.MakeInt64(int64(q.TokenImpersonationLevel))}, + "TokenIntegrityLevel": {"untyped int", constant.MakeInt64(int64(q.TokenIntegrityLevel))}, + "TokenLinkedToken": {"untyped int", constant.MakeInt64(int64(q.TokenLinkedToken))}, + "TokenLogonSid": {"untyped int", constant.MakeInt64(int64(q.TokenLogonSid))}, + "TokenMandatoryPolicy": {"untyped int", constant.MakeInt64(int64(q.TokenMandatoryPolicy))}, + "TokenOrigin": {"untyped int", constant.MakeInt64(int64(q.TokenOrigin))}, + "TokenOwner": {"untyped int", constant.MakeInt64(int64(q.TokenOwner))}, + "TokenPrimaryGroup": {"untyped int", constant.MakeInt64(int64(q.TokenPrimaryGroup))}, + "TokenPrivileges": {"untyped int", constant.MakeInt64(int64(q.TokenPrivileges))}, + "TokenRestrictedSids": {"untyped int", constant.MakeInt64(int64(q.TokenRestrictedSids))}, + "TokenSandBoxInert": {"untyped int", constant.MakeInt64(int64(q.TokenSandBoxInert))}, + "TokenSessionId": {"untyped int", constant.MakeInt64(int64(q.TokenSessionId))}, + "TokenSessionReference": {"untyped int", constant.MakeInt64(int64(q.TokenSessionReference))}, + "TokenSource": {"untyped int", constant.MakeInt64(int64(q.TokenSource))}, + "TokenStatistics": {"untyped int", constant.MakeInt64(int64(q.TokenStatistics))}, + "TokenType": {"untyped int", constant.MakeInt64(int64(q.TokenType))}, + "TokenUIAccess": {"untyped int", constant.MakeInt64(int64(q.TokenUIAccess))}, + "TokenUser": {"untyped int", constant.MakeInt64(int64(q.TokenUser))}, + "TokenVirtualizationAllowed": {"untyped int", constant.MakeInt64(int64(q.TokenVirtualizationAllowed))}, + "TokenVirtualizationEnabled": {"untyped int", constant.MakeInt64(int64(q.TokenVirtualizationEnabled))}, + "UNIX_PATH_MAX": {"untyped int", constant.MakeInt64(int64(q.UNIX_PATH_MAX))}, + "USAGE_MATCH_TYPE_AND": {"untyped int", constant.MakeInt64(int64(q.USAGE_MATCH_TYPE_AND))}, + "USAGE_MATCH_TYPE_OR": {"untyped int", constant.MakeInt64(int64(q.USAGE_MATCH_TYPE_OR))}, + "WAIT_ABANDONED": {"untyped int", constant.MakeInt64(int64(q.WAIT_ABANDONED))}, + "WAIT_FAILED": {"untyped int", constant.MakeInt64(int64(q.WAIT_FAILED))}, + "WAIT_OBJECT_0": {"untyped int", constant.MakeInt64(int64(q.WAIT_OBJECT_0))}, + "WAIT_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.WAIT_TIMEOUT))}, + "WSADESCRIPTION_LEN": {"untyped int", constant.MakeInt64(int64(q.WSADESCRIPTION_LEN))}, + "WSAPROTOCOL_LEN": {"untyped int", constant.MakeInt64(int64(q.WSAPROTOCOL_LEN))}, + "WSASYS_STATUS_LEN": {"untyped int", constant.MakeInt64(int64(q.WSASYS_STATUS_LEN))}, + "X509_ASN_ENCODING": {"untyped int", constant.MakeInt64(int64(q.X509_ASN_ENCODING))}, + "XP1_CONNECTIONLESS": {"untyped int", constant.MakeInt64(int64(q.XP1_CONNECTIONLESS))}, + "XP1_CONNECT_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_CONNECT_DATA))}, + "XP1_DISCONNECT_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_DISCONNECT_DATA))}, + "XP1_EXPEDITED_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_EXPEDITED_DATA))}, + "XP1_GRACEFUL_CLOSE": {"untyped int", constant.MakeInt64(int64(q.XP1_GRACEFUL_CLOSE))}, + "XP1_GUARANTEED_DELIVERY": {"untyped int", constant.MakeInt64(int64(q.XP1_GUARANTEED_DELIVERY))}, + "XP1_GUARANTEED_ORDER": {"untyped int", constant.MakeInt64(int64(q.XP1_GUARANTEED_ORDER))}, + "XP1_IFS_HANDLES": {"untyped int", constant.MakeInt64(int64(q.XP1_IFS_HANDLES))}, + "XP1_MESSAGE_ORIENTED": {"untyped int", constant.MakeInt64(int64(q.XP1_MESSAGE_ORIENTED))}, + "XP1_MULTIPOINT_CONTROL_PLANE": {"untyped int", constant.MakeInt64(int64(q.XP1_MULTIPOINT_CONTROL_PLANE))}, + "XP1_MULTIPOINT_DATA_PLANE": {"untyped int", constant.MakeInt64(int64(q.XP1_MULTIPOINT_DATA_PLANE))}, + "XP1_PARTIAL_MESSAGE": {"untyped int", constant.MakeInt64(int64(q.XP1_PARTIAL_MESSAGE))}, + "XP1_PSEUDO_STREAM": {"untyped int", constant.MakeInt64(int64(q.XP1_PSEUDO_STREAM))}, + "XP1_QOS_SUPPORTED": {"untyped int", constant.MakeInt64(int64(q.XP1_QOS_SUPPORTED))}, + "XP1_SAN_SUPPORT_SDP": {"untyped int", constant.MakeInt64(int64(q.XP1_SAN_SUPPORT_SDP))}, + "XP1_SUPPORT_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.XP1_SUPPORT_BROADCAST))}, + "XP1_SUPPORT_MULTIPOINT": {"untyped int", constant.MakeInt64(int64(q.XP1_SUPPORT_MULTIPOINT))}, + "XP1_UNI_RECV": {"untyped int", constant.MakeInt64(int64(q.XP1_UNI_RECV))}, + "XP1_UNI_SEND": {"untyped int", constant.MakeInt64(int64(q.XP1_UNI_SEND))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_windows_amd64.go b/pkg/syscall/go122_export_windows_amd64.go new file mode 100755 index 00000000..c17c4c32 --- /dev/null +++ b/pkg/syscall/go122_export_windows_amd64.go @@ -0,0 +1,1040 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/syscall/windows/sysdll": "sysdll", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unicode/utf16": "utf16", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "AddrinfoW": reflect.TypeOf((*q.AddrinfoW)(nil)).Elem(), + "ByHandleFileInformation": reflect.TypeOf((*q.ByHandleFileInformation)(nil)).Elem(), + "CertChainContext": reflect.TypeOf((*q.CertChainContext)(nil)).Elem(), + "CertChainElement": reflect.TypeOf((*q.CertChainElement)(nil)).Elem(), + "CertChainPara": reflect.TypeOf((*q.CertChainPara)(nil)).Elem(), + "CertChainPolicyPara": reflect.TypeOf((*q.CertChainPolicyPara)(nil)).Elem(), + "CertChainPolicyStatus": reflect.TypeOf((*q.CertChainPolicyStatus)(nil)).Elem(), + "CertContext": reflect.TypeOf((*q.CertContext)(nil)).Elem(), + "CertEnhKeyUsage": reflect.TypeOf((*q.CertEnhKeyUsage)(nil)).Elem(), + "CertInfo": reflect.TypeOf((*q.CertInfo)(nil)).Elem(), + "CertRevocationCrlInfo": reflect.TypeOf((*q.CertRevocationCrlInfo)(nil)).Elem(), + "CertRevocationInfo": reflect.TypeOf((*q.CertRevocationInfo)(nil)).Elem(), + "CertSimpleChain": reflect.TypeOf((*q.CertSimpleChain)(nil)).Elem(), + "CertTrustListInfo": reflect.TypeOf((*q.CertTrustListInfo)(nil)).Elem(), + "CertTrustStatus": reflect.TypeOf((*q.CertTrustStatus)(nil)).Elem(), + "CertUsageMatch": reflect.TypeOf((*q.CertUsageMatch)(nil)).Elem(), + "DLL": reflect.TypeOf((*q.DLL)(nil)).Elem(), + "DLLError": reflect.TypeOf((*q.DLLError)(nil)).Elem(), + "DNSMXData": reflect.TypeOf((*q.DNSMXData)(nil)).Elem(), + "DNSPTRData": reflect.TypeOf((*q.DNSPTRData)(nil)).Elem(), + "DNSRecord": reflect.TypeOf((*q.DNSRecord)(nil)).Elem(), + "DNSSRVData": reflect.TypeOf((*q.DNSSRVData)(nil)).Elem(), + "DNSTXTData": reflect.TypeOf((*q.DNSTXTData)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FileNotifyInformation": reflect.TypeOf((*q.FileNotifyInformation)(nil)).Elem(), + "Filetime": reflect.TypeOf((*q.Filetime)(nil)).Elem(), + "GUID": reflect.TypeOf((*q.GUID)(nil)).Elem(), + "Handle": reflect.TypeOf((*q.Handle)(nil)).Elem(), + "Hostent": reflect.TypeOf((*q.Hostent)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "InterfaceInfo": reflect.TypeOf((*q.InterfaceInfo)(nil)).Elem(), + "IpAdapterInfo": reflect.TypeOf((*q.IpAdapterInfo)(nil)).Elem(), + "IpAddrString": reflect.TypeOf((*q.IpAddrString)(nil)).Elem(), + "IpAddressString": reflect.TypeOf((*q.IpAddressString)(nil)).Elem(), + "IpMaskString": reflect.TypeOf((*q.IpMaskString)(nil)).Elem(), + "LazyDLL": reflect.TypeOf((*q.LazyDLL)(nil)).Elem(), + "LazyProc": reflect.TypeOf((*q.LazyProc)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "MibIfRow": reflect.TypeOf((*q.MibIfRow)(nil)).Elem(), + "Overlapped": reflect.TypeOf((*q.Overlapped)(nil)).Elem(), + "Pointer": reflect.TypeOf((*q.Pointer)(nil)).Elem(), + "Proc": reflect.TypeOf((*q.Proc)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "ProcessEntry32": reflect.TypeOf((*q.ProcessEntry32)(nil)).Elem(), + "ProcessInformation": reflect.TypeOf((*q.ProcessInformation)(nil)).Elem(), + "Protoent": reflect.TypeOf((*q.Protoent)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "SID": reflect.TypeOf((*q.SID)(nil)).Elem(), + "SIDAndAttributes": reflect.TypeOf((*q.SIDAndAttributes)(nil)).Elem(), + "SSLExtraCertChainPolicyPara": reflect.TypeOf((*q.SSLExtraCertChainPolicyPara)(nil)).Elem(), + "SecurityAttributes": reflect.TypeOf((*q.SecurityAttributes)(nil)).Elem(), + "Servent": reflect.TypeOf((*q.Servent)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrGen": reflect.TypeOf((*q.SockaddrGen)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "StartupInfo": reflect.TypeOf((*q.StartupInfo)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Systemtime": reflect.TypeOf((*q.Systemtime)(nil)).Elem(), + "TCPKeepalive": reflect.TypeOf((*q.TCPKeepalive)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timezoneinformation": reflect.TypeOf((*q.Timezoneinformation)(nil)).Elem(), + "Token": reflect.TypeOf((*q.Token)(nil)).Elem(), + "Tokenprimarygroup": reflect.TypeOf((*q.Tokenprimarygroup)(nil)).Elem(), + "Tokenuser": reflect.TypeOf((*q.Tokenuser)(nil)).Elem(), + "TransmitFileBuffers": reflect.TypeOf((*q.TransmitFileBuffers)(nil)).Elem(), + "UserInfo10": reflect.TypeOf((*q.UserInfo10)(nil)).Elem(), + "WSABuf": reflect.TypeOf((*q.WSABuf)(nil)).Elem(), + "WSAData": reflect.TypeOf((*q.WSAData)(nil)).Elem(), + "WSAProtocolChain": reflect.TypeOf((*q.WSAProtocolChain)(nil)).Elem(), + "WSAProtocolInfo": reflect.TypeOf((*q.WSAProtocolInfo)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + "Win32FileAttributeData": reflect.TypeOf((*q.Win32FileAttributeData)(nil)).Elem(), + "Win32finddata": reflect.TypeOf((*q.Win32finddata)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&q.OID_PKIX_KP_SERVER_AUTH), + "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&q.OID_SERVER_GATED_CRYPTO), + "OID_SGC_NETSCAPE": reflect.ValueOf(&q.OID_SGC_NETSCAPE), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + "WSAID_CONNECTEX": reflect.ValueOf(&q.WSAID_CONNECTEX), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "AcceptEx": reflect.ValueOf(q.AcceptEx), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "CancelIo": reflect.ValueOf(q.CancelIo), + "CancelIoEx": reflect.ValueOf(q.CancelIoEx), + "CertAddCertificateContextToStore": reflect.ValueOf(q.CertAddCertificateContextToStore), + "CertCloseStore": reflect.ValueOf(q.CertCloseStore), + "CertCreateCertificateContext": reflect.ValueOf(q.CertCreateCertificateContext), + "CertEnumCertificatesInStore": reflect.ValueOf(q.CertEnumCertificatesInStore), + "CertFreeCertificateChain": reflect.ValueOf(q.CertFreeCertificateChain), + "CertFreeCertificateContext": reflect.ValueOf(q.CertFreeCertificateContext), + "CertGetCertificateChain": reflect.ValueOf(q.CertGetCertificateChain), + "CertOpenStore": reflect.ValueOf(q.CertOpenStore), + "CertOpenSystemStore": reflect.ValueOf(q.CertOpenSystemStore), + "CertVerifyCertificateChainPolicy": reflect.ValueOf(q.CertVerifyCertificateChainPolicy), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseHandle": reflect.ValueOf(q.CloseHandle), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "Closesocket": reflect.ValueOf(q.Closesocket), + "CommandLineToArgv": reflect.ValueOf(q.CommandLineToArgv), + "ComputerName": reflect.ValueOf(q.ComputerName), + "Connect": reflect.ValueOf(q.Connect), + "ConnectEx": reflect.ValueOf(q.ConnectEx), + "ConvertSidToStringSid": reflect.ValueOf(q.ConvertSidToStringSid), + "ConvertStringSidToSid": reflect.ValueOf(q.ConvertStringSidToSid), + "CopySid": reflect.ValueOf(q.CopySid), + "CreateDirectory": reflect.ValueOf(q.CreateDirectory), + "CreateFile": reflect.ValueOf(q.CreateFile), + "CreateFileMapping": reflect.ValueOf(q.CreateFileMapping), + "CreateHardLink": reflect.ValueOf(q.CreateHardLink), + "CreateIoCompletionPort": reflect.ValueOf(q.CreateIoCompletionPort), + "CreatePipe": reflect.ValueOf(q.CreatePipe), + "CreateProcess": reflect.ValueOf(q.CreateProcess), + "CreateProcessAsUser": reflect.ValueOf(q.CreateProcessAsUser), + "CreateSymbolicLink": reflect.ValueOf(q.CreateSymbolicLink), + "CreateToolhelp32Snapshot": reflect.ValueOf(q.CreateToolhelp32Snapshot), + "CryptAcquireContext": reflect.ValueOf(q.CryptAcquireContext), + "CryptGenRandom": reflect.ValueOf(q.CryptGenRandom), + "CryptReleaseContext": reflect.ValueOf(q.CryptReleaseContext), + "DeleteFile": reflect.ValueOf(q.DeleteFile), + "DeviceIoControl": reflect.ValueOf(q.DeviceIoControl), + "DnsNameCompare": reflect.ValueOf(q.DnsNameCompare), + "DnsQuery": reflect.ValueOf(q.DnsQuery), + "DnsRecordListFree": reflect.ValueOf(q.DnsRecordListFree), + "DuplicateHandle": reflect.ValueOf(q.DuplicateHandle), + "Environ": reflect.ValueOf(q.Environ), + "EscapeArg": reflect.ValueOf(q.EscapeArg), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "ExitProcess": reflect.ValueOf(q.ExitProcess), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FindClose": reflect.ValueOf(q.FindClose), + "FindFirstFile": reflect.ValueOf(q.FindFirstFile), + "FindNextFile": reflect.ValueOf(q.FindNextFile), + "FlushFileBuffers": reflect.ValueOf(q.FlushFileBuffers), + "FlushViewOfFile": reflect.ValueOf(q.FlushViewOfFile), + "FormatMessage": reflect.ValueOf(q.FormatMessage), + "FreeAddrInfoW": reflect.ValueOf(q.FreeAddrInfoW), + "FreeEnvironmentStrings": reflect.ValueOf(q.FreeEnvironmentStrings), + "FreeLibrary": reflect.ValueOf(q.FreeLibrary), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "FullPath": reflect.ValueOf(q.FullPath), + "GetAcceptExSockaddrs": reflect.ValueOf(q.GetAcceptExSockaddrs), + "GetAdaptersInfo": reflect.ValueOf(q.GetAdaptersInfo), + "GetAddrInfoW": reflect.ValueOf(q.GetAddrInfoW), + "GetCommandLine": reflect.ValueOf(q.GetCommandLine), + "GetComputerName": reflect.ValueOf(q.GetComputerName), + "GetConsoleMode": reflect.ValueOf(q.GetConsoleMode), + "GetCurrentDirectory": reflect.ValueOf(q.GetCurrentDirectory), + "GetCurrentProcess": reflect.ValueOf(q.GetCurrentProcess), + "GetEnvironmentStrings": reflect.ValueOf(q.GetEnvironmentStrings), + "GetEnvironmentVariable": reflect.ValueOf(q.GetEnvironmentVariable), + "GetExitCodeProcess": reflect.ValueOf(q.GetExitCodeProcess), + "GetFileAttributes": reflect.ValueOf(q.GetFileAttributes), + "GetFileAttributesEx": reflect.ValueOf(q.GetFileAttributesEx), + "GetFileInformationByHandle": reflect.ValueOf(q.GetFileInformationByHandle), + "GetFileType": reflect.ValueOf(q.GetFileType), + "GetFullPathName": reflect.ValueOf(q.GetFullPathName), + "GetHostByName": reflect.ValueOf(q.GetHostByName), + "GetIfEntry": reflect.ValueOf(q.GetIfEntry), + "GetLastError": reflect.ValueOf(q.GetLastError), + "GetLengthSid": reflect.ValueOf(q.GetLengthSid), + "GetLongPathName": reflect.ValueOf(q.GetLongPathName), + "GetProcAddress": reflect.ValueOf(q.GetProcAddress), + "GetProcessTimes": reflect.ValueOf(q.GetProcessTimes), + "GetProtoByName": reflect.ValueOf(q.GetProtoByName), + "GetQueuedCompletionStatus": reflect.ValueOf(q.GetQueuedCompletionStatus), + "GetServByName": reflect.ValueOf(q.GetServByName), + "GetShortPathName": reflect.ValueOf(q.GetShortPathName), + "GetStartupInfo": reflect.ValueOf(q.GetStartupInfo), + "GetStdHandle": reflect.ValueOf(q.GetStdHandle), + "GetSystemTimeAsFileTime": reflect.ValueOf(q.GetSystemTimeAsFileTime), + "GetTempPath": reflect.ValueOf(q.GetTempPath), + "GetTimeZoneInformation": reflect.ValueOf(q.GetTimeZoneInformation), + "GetTokenInformation": reflect.ValueOf(q.GetTokenInformation), + "GetUserNameEx": reflect.ValueOf(q.GetUserNameEx), + "GetUserProfileDirectory": reflect.ValueOf(q.GetUserProfileDirectory), + "GetVersion": reflect.ValueOf(q.GetVersion), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "Getsockopt": reflect.ValueOf(q.Getsockopt), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "LoadCancelIoEx": reflect.ValueOf(q.LoadCancelIoEx), + "LoadConnectEx": reflect.ValueOf(q.LoadConnectEx), + "LoadCreateSymbolicLink": reflect.ValueOf(q.LoadCreateSymbolicLink), + "LoadDLL": reflect.ValueOf(q.LoadDLL), + "LoadGetAddrInfo": reflect.ValueOf(q.LoadGetAddrInfo), + "LoadLibrary": reflect.ValueOf(q.LoadLibrary), + "LoadSetFileCompletionNotificationModes": reflect.ValueOf(q.LoadSetFileCompletionNotificationModes), + "LocalFree": reflect.ValueOf(q.LocalFree), + "LookupAccountName": reflect.ValueOf(q.LookupAccountName), + "LookupAccountSid": reflect.ValueOf(q.LookupAccountSid), + "LookupSID": reflect.ValueOf(q.LookupSID), + "MapViewOfFile": reflect.ValueOf(q.MapViewOfFile), + "Mkdir": reflect.ValueOf(q.Mkdir), + "MoveFile": reflect.ValueOf(q.MoveFile), + "MustLoadDLL": reflect.ValueOf(q.MustLoadDLL), + "NetApiBufferFree": reflect.ValueOf(q.NetApiBufferFree), + "NetGetJoinInformation": reflect.ValueOf(q.NetGetJoinInformation), + "NetUserGetInfo": reflect.ValueOf(q.NetUserGetInfo), + "NewCallback": reflect.ValueOf(q.NewCallback), + "NewCallbackCDecl": reflect.ValueOf(q.NewCallbackCDecl), + "NewLazyDLL": reflect.ValueOf(q.NewLazyDLL), + "NsecToFiletime": reflect.ValueOf(q.NsecToFiletime), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Ntohs": reflect.ValueOf(q.Ntohs), + "Open": reflect.ValueOf(q.Open), + "OpenCurrentProcessToken": reflect.ValueOf(q.OpenCurrentProcessToken), + "OpenProcess": reflect.ValueOf(q.OpenProcess), + "OpenProcessToken": reflect.ValueOf(q.OpenProcessToken), + "Pipe": reflect.ValueOf(q.Pipe), + "PostQueuedCompletionStatus": reflect.ValueOf(q.PostQueuedCompletionStatus), + "Process32First": reflect.ValueOf(q.Process32First), + "Process32Next": reflect.ValueOf(q.Process32Next), + "Read": reflect.ValueOf(q.Read), + "ReadConsole": reflect.ValueOf(q.ReadConsole), + "ReadDirectoryChanges": reflect.ValueOf(q.ReadDirectoryChanges), + "ReadFile": reflect.ValueOf(q.ReadFile), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "RegCloseKey": reflect.ValueOf(q.RegCloseKey), + "RegEnumKeyEx": reflect.ValueOf(q.RegEnumKeyEx), + "RegOpenKeyEx": reflect.ValueOf(q.RegOpenKeyEx), + "RegQueryInfoKey": reflect.ValueOf(q.RegQueryInfoKey), + "RegQueryValueEx": reflect.ValueOf(q.RegQueryValueEx), + "RemoveDirectory": reflect.ValueOf(q.RemoveDirectory), + "Rename": reflect.ValueOf(q.Rename), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Sendto": reflect.ValueOf(q.Sendto), + "SetCurrentDirectory": reflect.ValueOf(q.SetCurrentDirectory), + "SetEndOfFile": reflect.ValueOf(q.SetEndOfFile), + "SetEnvironmentVariable": reflect.ValueOf(q.SetEnvironmentVariable), + "SetFileAttributes": reflect.ValueOf(q.SetFileAttributes), + "SetFileCompletionNotificationModes": reflect.ValueOf(q.SetFileCompletionNotificationModes), + "SetFilePointer": reflect.ValueOf(q.SetFilePointer), + "SetFileTime": reflect.ValueOf(q.SetFileTime), + "SetHandleInformation": reflect.ValueOf(q.SetHandleInformation), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setenv": reflect.ValueOf(q.Setenv), + "Setsockopt": reflect.ValueOf(q.Setsockopt), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Shutdown": reflect.ValueOf(q.Shutdown), + "Socket": reflect.ValueOf(q.Socket), + "StartProcess": reflect.ValueOf(q.StartProcess), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringToSid": reflect.ValueOf(q.StringToSid), + "StringToUTF16": reflect.ValueOf(q.StringToUTF16), + "StringToUTF16Ptr": reflect.ValueOf(q.StringToUTF16Ptr), + "Symlink": reflect.ValueOf(q.Symlink), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall12": reflect.ValueOf(q.Syscall12), + "Syscall15": reflect.ValueOf(q.Syscall15), + "Syscall18": reflect.ValueOf(q.Syscall18), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "SyscallN": reflect.ValueOf(q.SyscallN), + "TerminateProcess": reflect.ValueOf(q.TerminateProcess), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TranslateAccountName": reflect.ValueOf(q.TranslateAccountName), + "TranslateName": reflect.ValueOf(q.TranslateName), + "TransmitFile": reflect.ValueOf(q.TransmitFile), + "UTF16FromString": reflect.ValueOf(q.UTF16FromString), + "UTF16PtrFromString": reflect.ValueOf(q.UTF16PtrFromString), + "UTF16ToString": reflect.ValueOf(q.UTF16ToString), + "Unlink": reflect.ValueOf(q.Unlink), + "UnmapViewOfFile": reflect.ValueOf(q.UnmapViewOfFile), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "VirtualLock": reflect.ValueOf(q.VirtualLock), + "VirtualUnlock": reflect.ValueOf(q.VirtualUnlock), + "WSACleanup": reflect.ValueOf(q.WSACleanup), + "WSAEnumProtocols": reflect.ValueOf(q.WSAEnumProtocols), + "WSAIoctl": reflect.ValueOf(q.WSAIoctl), + "WSARecv": reflect.ValueOf(q.WSARecv), + "WSARecvFrom": reflect.ValueOf(q.WSARecvFrom), + "WSASend": reflect.ValueOf(q.WSASend), + "WSASendTo": reflect.ValueOf(q.WSASendTo), + "WSASendto": reflect.ValueOf(q.WSASendto), + "WSAStartup": reflect.ValueOf(q.WSAStartup), + "WaitForSingleObject": reflect.ValueOf(q.WaitForSingleObject), + "Write": reflect.ValueOf(q.Write), + "WriteConsole": reflect.ValueOf(q.WriteConsole), + "WriteFile": reflect.ValueOf(q.WriteFile), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERROR_ACCESS_DENIED": {reflect.TypeOf(q.ERROR_ACCESS_DENIED), constant.MakeInt64(int64(q.ERROR_ACCESS_DENIED))}, + "ERROR_ALREADY_EXISTS": {reflect.TypeOf(q.ERROR_ALREADY_EXISTS), constant.MakeInt64(int64(q.ERROR_ALREADY_EXISTS))}, + "ERROR_BROKEN_PIPE": {reflect.TypeOf(q.ERROR_BROKEN_PIPE), constant.MakeInt64(int64(q.ERROR_BROKEN_PIPE))}, + "ERROR_BUFFER_OVERFLOW": {reflect.TypeOf(q.ERROR_BUFFER_OVERFLOW), constant.MakeInt64(int64(q.ERROR_BUFFER_OVERFLOW))}, + "ERROR_DIR_NOT_EMPTY": {reflect.TypeOf(q.ERROR_DIR_NOT_EMPTY), constant.MakeInt64(int64(q.ERROR_DIR_NOT_EMPTY))}, + "ERROR_ENVVAR_NOT_FOUND": {reflect.TypeOf(q.ERROR_ENVVAR_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_ENVVAR_NOT_FOUND))}, + "ERROR_FILE_EXISTS": {reflect.TypeOf(q.ERROR_FILE_EXISTS), constant.MakeInt64(int64(q.ERROR_FILE_EXISTS))}, + "ERROR_FILE_NOT_FOUND": {reflect.TypeOf(q.ERROR_FILE_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_FILE_NOT_FOUND))}, + "ERROR_HANDLE_EOF": {reflect.TypeOf(q.ERROR_HANDLE_EOF), constant.MakeInt64(int64(q.ERROR_HANDLE_EOF))}, + "ERROR_INSUFFICIENT_BUFFER": {reflect.TypeOf(q.ERROR_INSUFFICIENT_BUFFER), constant.MakeInt64(int64(q.ERROR_INSUFFICIENT_BUFFER))}, + "ERROR_IO_PENDING": {reflect.TypeOf(q.ERROR_IO_PENDING), constant.MakeInt64(int64(q.ERROR_IO_PENDING))}, + "ERROR_MOD_NOT_FOUND": {reflect.TypeOf(q.ERROR_MOD_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_MOD_NOT_FOUND))}, + "ERROR_MORE_DATA": {reflect.TypeOf(q.ERROR_MORE_DATA), constant.MakeInt64(int64(q.ERROR_MORE_DATA))}, + "ERROR_NETNAME_DELETED": {reflect.TypeOf(q.ERROR_NETNAME_DELETED), constant.MakeInt64(int64(q.ERROR_NETNAME_DELETED))}, + "ERROR_NOT_FOUND": {reflect.TypeOf(q.ERROR_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_NOT_FOUND))}, + "ERROR_NO_MORE_FILES": {reflect.TypeOf(q.ERROR_NO_MORE_FILES), constant.MakeInt64(int64(q.ERROR_NO_MORE_FILES))}, + "ERROR_OPERATION_ABORTED": {reflect.TypeOf(q.ERROR_OPERATION_ABORTED), constant.MakeInt64(int64(q.ERROR_OPERATION_ABORTED))}, + "ERROR_PATH_NOT_FOUND": {reflect.TypeOf(q.ERROR_PATH_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_PATH_NOT_FOUND))}, + "ERROR_PRIVILEGE_NOT_HELD": {reflect.TypeOf(q.ERROR_PRIVILEGE_NOT_HELD), constant.MakeInt64(int64(q.ERROR_PRIVILEGE_NOT_HELD))}, + "ERROR_PROC_NOT_FOUND": {reflect.TypeOf(q.ERROR_PROC_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_PROC_NOT_FOUND))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWINDOWS": {reflect.TypeOf(q.EWINDOWS), constant.MakeInt64(int64(q.EWINDOWS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "InvalidHandle": {reflect.TypeOf(q.InvalidHandle), constant.MakeUint64(uint64(q.InvalidHandle))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "WSAEACCES": {reflect.TypeOf(q.WSAEACCES), constant.MakeInt64(int64(q.WSAEACCES))}, + "WSAECONNABORTED": {reflect.TypeOf(q.WSAECONNABORTED), constant.MakeInt64(int64(q.WSAECONNABORTED))}, + "WSAECONNRESET": {reflect.TypeOf(q.WSAECONNRESET), constant.MakeInt64(int64(q.WSAECONNRESET))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AI_CANONNAME": {"untyped int", constant.MakeInt64(int64(q.AI_CANONNAME))}, + "AI_NUMERICHOST": {"untyped int", constant.MakeInt64(int64(q.AI_NUMERICHOST))}, + "AI_PASSIVE": {"untyped int", constant.MakeInt64(int64(q.AI_PASSIVE))}, + "APPLICATION_ERROR": {"untyped int", constant.MakeInt64(int64(q.APPLICATION_ERROR))}, + "AUTHTYPE_CLIENT": {"untyped int", constant.MakeInt64(int64(q.AUTHTYPE_CLIENT))}, + "AUTHTYPE_SERVER": {"untyped int", constant.MakeInt64(int64(q.AUTHTYPE_SERVER))}, + "BASE_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.BASE_PROTOCOL))}, + "CERT_CHAIN_POLICY_AUTHENTICODE": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_AUTHENTICODE))}, + "CERT_CHAIN_POLICY_AUTHENTICODE_TS": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_AUTHENTICODE_TS))}, + "CERT_CHAIN_POLICY_BASE": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_BASE))}, + "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_BASIC_CONSTRAINTS))}, + "CERT_CHAIN_POLICY_EV": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_EV))}, + "CERT_CHAIN_POLICY_MICROSOFT_ROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_MICROSOFT_ROOT))}, + "CERT_CHAIN_POLICY_NT_AUTH": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_NT_AUTH))}, + "CERT_CHAIN_POLICY_SSL": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_SSL))}, + "CERT_E_CN_NO_MATCH": {"untyped int", constant.MakeInt64(int64(q.CERT_E_CN_NO_MATCH))}, + "CERT_E_EXPIRED": {"untyped int", constant.MakeInt64(int64(q.CERT_E_EXPIRED))}, + "CERT_E_PURPOSE": {"untyped int", constant.MakeInt64(int64(q.CERT_E_PURPOSE))}, + "CERT_E_ROLE": {"untyped int", constant.MakeInt64(int64(q.CERT_E_ROLE))}, + "CERT_E_UNTRUSTEDROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_E_UNTRUSTEDROOT))}, + "CERT_STORE_ADD_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_ADD_ALWAYS))}, + "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG))}, + "CERT_STORE_PROV_MEMORY": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_PROV_MEMORY))}, + "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT))}, + "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT))}, + "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_BASIC_CONSTRAINTS))}, + "CERT_TRUST_INVALID_EXTENSION": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_EXTENSION))}, + "CERT_TRUST_INVALID_NAME_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_NAME_CONSTRAINTS))}, + "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_POLICY_CONSTRAINTS))}, + "CERT_TRUST_IS_CYCLIC": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_CYCLIC))}, + "CERT_TRUST_IS_EXPLICIT_DISTRUST": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_EXPLICIT_DISTRUST))}, + "CERT_TRUST_IS_NOT_SIGNATURE_VALID": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_SIGNATURE_VALID))}, + "CERT_TRUST_IS_NOT_TIME_VALID": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_TIME_VALID))}, + "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_VALID_FOR_USAGE))}, + "CERT_TRUST_IS_OFFLINE_REVOCATION": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_OFFLINE_REVOCATION))}, + "CERT_TRUST_IS_REVOKED": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_REVOKED))}, + "CERT_TRUST_IS_UNTRUSTED_ROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_UNTRUSTED_ROOT))}, + "CERT_TRUST_NO_ERROR": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_NO_ERROR))}, + "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY))}, + "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_REVOCATION_STATUS_UNKNOWN))}, + "CREATE_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.CREATE_ALWAYS))}, + "CREATE_NEW": {"untyped int", constant.MakeInt64(int64(q.CREATE_NEW))}, + "CREATE_NEW_PROCESS_GROUP": {"untyped int", constant.MakeInt64(int64(q.CREATE_NEW_PROCESS_GROUP))}, + "CREATE_UNICODE_ENVIRONMENT": {"untyped int", constant.MakeInt64(int64(q.CREATE_UNICODE_ENVIRONMENT))}, + "CRYPT_DEFAULT_CONTAINER_OPTIONAL": {"untyped int", constant.MakeInt64(int64(q.CRYPT_DEFAULT_CONTAINER_OPTIONAL))}, + "CRYPT_DELETEKEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_DELETEKEYSET))}, + "CRYPT_MACHINE_KEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_MACHINE_KEYSET))}, + "CRYPT_NEWKEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_NEWKEYSET))}, + "CRYPT_SILENT": {"untyped int", constant.MakeInt64(int64(q.CRYPT_SILENT))}, + "CRYPT_VERIFYCONTEXT": {"untyped int", constant.MakeInt64(int64(q.CRYPT_VERIFYCONTEXT))}, + "CTRL_BREAK_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_BREAK_EVENT))}, + "CTRL_CLOSE_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_CLOSE_EVENT))}, + "CTRL_C_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_C_EVENT))}, + "CTRL_LOGOFF_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_LOGOFF_EVENT))}, + "CTRL_SHUTDOWN_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_SHUTDOWN_EVENT))}, + "DNS_INFO_NO_RECORDS": {"untyped int", constant.MakeInt64(int64(q.DNS_INFO_NO_RECORDS))}, + "DNS_TYPE_A": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_A))}, + "DNS_TYPE_A6": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_A6))}, + "DNS_TYPE_AAAA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AAAA))}, + "DNS_TYPE_ADDRS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ADDRS))}, + "DNS_TYPE_AFSDB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AFSDB))}, + "DNS_TYPE_ALL": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ALL))}, + "DNS_TYPE_ANY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ANY))}, + "DNS_TYPE_ATMA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ATMA))}, + "DNS_TYPE_AXFR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AXFR))}, + "DNS_TYPE_CERT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_CERT))}, + "DNS_TYPE_CNAME": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_CNAME))}, + "DNS_TYPE_DHCID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DHCID))}, + "DNS_TYPE_DNAME": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DNAME))}, + "DNS_TYPE_DNSKEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DNSKEY))}, + "DNS_TYPE_DS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DS))}, + "DNS_TYPE_EID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_EID))}, + "DNS_TYPE_GID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_GID))}, + "DNS_TYPE_GPOS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_GPOS))}, + "DNS_TYPE_HINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_HINFO))}, + "DNS_TYPE_ISDN": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ISDN))}, + "DNS_TYPE_IXFR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_IXFR))}, + "DNS_TYPE_KEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_KEY))}, + "DNS_TYPE_KX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_KX))}, + "DNS_TYPE_LOC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_LOC))}, + "DNS_TYPE_MAILA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MAILA))}, + "DNS_TYPE_MAILB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MAILB))}, + "DNS_TYPE_MB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MB))}, + "DNS_TYPE_MD": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MD))}, + "DNS_TYPE_MF": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MF))}, + "DNS_TYPE_MG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MG))}, + "DNS_TYPE_MINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MINFO))}, + "DNS_TYPE_MR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MR))}, + "DNS_TYPE_MX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MX))}, + "DNS_TYPE_NAPTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NAPTR))}, + "DNS_TYPE_NBSTAT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NBSTAT))}, + "DNS_TYPE_NIMLOC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NIMLOC))}, + "DNS_TYPE_NS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NS))}, + "DNS_TYPE_NSAP": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSAP))}, + "DNS_TYPE_NSAPPTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSAPPTR))}, + "DNS_TYPE_NSEC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSEC))}, + "DNS_TYPE_NULL": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NULL))}, + "DNS_TYPE_NXT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NXT))}, + "DNS_TYPE_OPT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_OPT))}, + "DNS_TYPE_PTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_PTR))}, + "DNS_TYPE_PX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_PX))}, + "DNS_TYPE_RP": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RP))}, + "DNS_TYPE_RRSIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RRSIG))}, + "DNS_TYPE_RT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RT))}, + "DNS_TYPE_SIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SIG))}, + "DNS_TYPE_SINK": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SINK))}, + "DNS_TYPE_SOA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SOA))}, + "DNS_TYPE_SRV": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SRV))}, + "DNS_TYPE_TEXT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TEXT))}, + "DNS_TYPE_TKEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TKEY))}, + "DNS_TYPE_TSIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TSIG))}, + "DNS_TYPE_UID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UID))}, + "DNS_TYPE_UINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UINFO))}, + "DNS_TYPE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UNSPEC))}, + "DNS_TYPE_WINS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WINS))}, + "DNS_TYPE_WINSR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WINSR))}, + "DNS_TYPE_WKS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WKS))}, + "DNS_TYPE_X25": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_X25))}, + "DUPLICATE_CLOSE_SOURCE": {"untyped int", constant.MakeInt64(int64(q.DUPLICATE_CLOSE_SOURCE))}, + "DUPLICATE_SAME_ACCESS": {"untyped int", constant.MakeInt64(int64(q.DUPLICATE_SAME_ACCESS))}, + "DnsSectionAdditional": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAdditional))}, + "DnsSectionAnswer": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAnswer))}, + "DnsSectionAuthority": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAuthority))}, + "DnsSectionQuestion": {"untyped int", constant.MakeInt64(int64(q.DnsSectionQuestion))}, + "FILE_ACTION_ADDED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_ADDED))}, + "FILE_ACTION_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_MODIFIED))}, + "FILE_ACTION_REMOVED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_REMOVED))}, + "FILE_ACTION_RENAMED_NEW_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_RENAMED_NEW_NAME))}, + "FILE_ACTION_RENAMED_OLD_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_RENAMED_OLD_NAME))}, + "FILE_APPEND_DATA": {"untyped int", constant.MakeInt64(int64(q.FILE_APPEND_DATA))}, + "FILE_ATTRIBUTE_ARCHIVE": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_ARCHIVE))}, + "FILE_ATTRIBUTE_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_DIRECTORY))}, + "FILE_ATTRIBUTE_HIDDEN": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_HIDDEN))}, + "FILE_ATTRIBUTE_NORMAL": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_NORMAL))}, + "FILE_ATTRIBUTE_READONLY": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_READONLY))}, + "FILE_ATTRIBUTE_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_REPARSE_POINT))}, + "FILE_ATTRIBUTE_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_SYSTEM))}, + "FILE_BEGIN": {"untyped int", constant.MakeInt64(int64(q.FILE_BEGIN))}, + "FILE_CURRENT": {"untyped int", constant.MakeInt64(int64(q.FILE_CURRENT))}, + "FILE_END": {"untyped int", constant.MakeInt64(int64(q.FILE_END))}, + "FILE_FLAG_BACKUP_SEMANTICS": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_BACKUP_SEMANTICS))}, + "FILE_FLAG_OPEN_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_OPEN_REPARSE_POINT))}, + "FILE_FLAG_OVERLAPPED": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_OVERLAPPED))}, + "FILE_LIST_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.FILE_LIST_DIRECTORY))}, + "FILE_MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_COPY))}, + "FILE_MAP_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_EXECUTE))}, + "FILE_MAP_READ": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_READ))}, + "FILE_MAP_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_WRITE))}, + "FILE_NOTIFY_CHANGE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_ATTRIBUTES))}, + "FILE_NOTIFY_CHANGE_CREATION": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_CREATION))}, + "FILE_NOTIFY_CHANGE_DIR_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_DIR_NAME))}, + "FILE_NOTIFY_CHANGE_FILE_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_FILE_NAME))}, + "FILE_NOTIFY_CHANGE_LAST_ACCESS": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_LAST_ACCESS))}, + "FILE_NOTIFY_CHANGE_LAST_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_LAST_WRITE))}, + "FILE_NOTIFY_CHANGE_SIZE": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_SIZE))}, + "FILE_SHARE_DELETE": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_DELETE))}, + "FILE_SHARE_READ": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_READ))}, + "FILE_SHARE_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_WRITE))}, + "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": {"untyped int", constant.MakeInt64(int64(q.FILE_SKIP_COMPLETION_PORT_ON_SUCCESS))}, + "FILE_SKIP_SET_EVENT_ON_HANDLE": {"untyped int", constant.MakeInt64(int64(q.FILE_SKIP_SET_EVENT_ON_HANDLE))}, + "FILE_TYPE_CHAR": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_CHAR))}, + "FILE_TYPE_DISK": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_DISK))}, + "FILE_TYPE_PIPE": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_PIPE))}, + "FILE_TYPE_REMOTE": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_REMOTE))}, + "FILE_TYPE_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_UNKNOWN))}, + "FILE_WRITE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.FILE_WRITE_ATTRIBUTES))}, + "FORMAT_MESSAGE_ALLOCATE_BUFFER": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_ALLOCATE_BUFFER))}, + "FORMAT_MESSAGE_ARGUMENT_ARRAY": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_ARGUMENT_ARRAY))}, + "FORMAT_MESSAGE_FROM_HMODULE": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_HMODULE))}, + "FORMAT_MESSAGE_FROM_STRING": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_STRING))}, + "FORMAT_MESSAGE_FROM_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_SYSTEM))}, + "FORMAT_MESSAGE_IGNORE_INSERTS": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_IGNORE_INSERTS))}, + "FORMAT_MESSAGE_MAX_WIDTH_MASK": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_MAX_WIDTH_MASK))}, + "FSCTL_GET_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FSCTL_GET_REPARSE_POINT))}, + "GENERIC_ALL": {"untyped int", constant.MakeInt64(int64(q.GENERIC_ALL))}, + "GENERIC_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.GENERIC_EXECUTE))}, + "GENERIC_READ": {"untyped int", constant.MakeInt64(int64(q.GENERIC_READ))}, + "GENERIC_WRITE": {"untyped int", constant.MakeInt64(int64(q.GENERIC_WRITE))}, + "GetFileExInfoStandard": {"untyped int", constant.MakeInt64(int64(q.GetFileExInfoStandard))}, + "GetFileExMaxInfoLevel": {"untyped int", constant.MakeInt64(int64(q.GetFileExMaxInfoLevel))}, + "HANDLE_FLAG_INHERIT": {"untyped int", constant.MakeInt64(int64(q.HANDLE_FLAG_INHERIT))}, + "HKEY_CLASSES_ROOT": {"untyped int", constant.MakeInt64(int64(q.HKEY_CLASSES_ROOT))}, + "HKEY_CURRENT_CONFIG": {"untyped int", constant.MakeInt64(int64(q.HKEY_CURRENT_CONFIG))}, + "HKEY_CURRENT_USER": {"untyped int", constant.MakeInt64(int64(q.HKEY_CURRENT_USER))}, + "HKEY_DYN_DATA": {"untyped int", constant.MakeInt64(int64(q.HKEY_DYN_DATA))}, + "HKEY_LOCAL_MACHINE": {"untyped int", constant.MakeInt64(int64(q.HKEY_LOCAL_MACHINE))}, + "HKEY_PERFORMANCE_DATA": {"untyped int", constant.MakeInt64(int64(q.HKEY_PERFORMANCE_DATA))}, + "HKEY_USERS": {"untyped int", constant.MakeInt64(int64(q.HKEY_USERS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_POINTTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTTOPOINT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IGNORE": {"untyped int", constant.MakeInt64(int64(q.IGNORE))}, + "INFINITE": {"untyped int", constant.MakeInt64(int64(q.INFINITE))}, + "INVALID_FILE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.INVALID_FILE_ATTRIBUTES))}, + "IOC_IN": {"untyped int", constant.MakeInt64(int64(q.IOC_IN))}, + "IOC_INOUT": {"untyped int", constant.MakeInt64(int64(q.IOC_INOUT))}, + "IOC_OUT": {"untyped int", constant.MakeInt64(int64(q.IOC_OUT))}, + "IOC_VENDOR": {"untyped int", constant.MakeInt64(int64(q.IOC_VENDOR))}, + "IOC_WS2": {"untyped int", constant.MakeInt64(int64(q.IOC_WS2))}, + "IO_REPARSE_TAG_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.IO_REPARSE_TAG_SYMLINK))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "KEY_ALL_ACCESS": {"untyped int", constant.MakeInt64(int64(q.KEY_ALL_ACCESS))}, + "KEY_CREATE_LINK": {"untyped int", constant.MakeInt64(int64(q.KEY_CREATE_LINK))}, + "KEY_CREATE_SUB_KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_CREATE_SUB_KEY))}, + "KEY_ENUMERATE_SUB_KEYS": {"untyped int", constant.MakeInt64(int64(q.KEY_ENUMERATE_SUB_KEYS))}, + "KEY_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.KEY_EXECUTE))}, + "KEY_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.KEY_NOTIFY))}, + "KEY_QUERY_VALUE": {"untyped int", constant.MakeInt64(int64(q.KEY_QUERY_VALUE))}, + "KEY_READ": {"untyped int", constant.MakeInt64(int64(q.KEY_READ))}, + "KEY_SET_VALUE": {"untyped int", constant.MakeInt64(int64(q.KEY_SET_VALUE))}, + "KEY_WOW64_32KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_WOW64_32KEY))}, + "KEY_WOW64_64KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_WOW64_64KEY))}, + "KEY_WRITE": {"untyped int", constant.MakeInt64(int64(q.KEY_WRITE))}, + "LANG_ENGLISH": {"untyped int", constant.MakeInt64(int64(q.LANG_ENGLISH))}, + "LAYERED_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.LAYERED_PROTOCOL))}, + "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": {"untyped int", constant.MakeInt64(int64(q.MAXIMUM_REPARSE_DATA_BUFFER_SIZE))}, + "MAXLEN_IFDESCR": {"untyped int", constant.MakeInt64(int64(q.MAXLEN_IFDESCR))}, + "MAXLEN_PHYSADDR": {"untyped int", constant.MakeInt64(int64(q.MAXLEN_PHYSADDR))}, + "MAX_ADAPTER_ADDRESS_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_ADDRESS_LENGTH))}, + "MAX_ADAPTER_DESCRIPTION_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_DESCRIPTION_LENGTH))}, + "MAX_ADAPTER_NAME_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_NAME_LENGTH))}, + "MAX_COMPUTERNAME_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_COMPUTERNAME_LENGTH))}, + "MAX_INTERFACE_NAME_LEN": {"untyped int", constant.MakeInt64(int64(q.MAX_INTERFACE_NAME_LEN))}, + "MAX_LONG_PATH": {"untyped int", constant.MakeInt64(int64(q.MAX_LONG_PATH))}, + "MAX_PATH": {"untyped int", constant.MakeInt64(int64(q.MAX_PATH))}, + "MAX_PROTOCOL_CHAIN": {"untyped int", constant.MakeInt64(int64(q.MAX_PROTOCOL_CHAIN))}, + "MaxTokenInfoClass": {"untyped int", constant.MakeInt64(int64(q.MaxTokenInfoClass))}, + "NameCanonical": {"untyped int", constant.MakeInt64(int64(q.NameCanonical))}, + "NameCanonicalEx": {"untyped int", constant.MakeInt64(int64(q.NameCanonicalEx))}, + "NameDisplay": {"untyped int", constant.MakeInt64(int64(q.NameDisplay))}, + "NameDnsDomain": {"untyped int", constant.MakeInt64(int64(q.NameDnsDomain))}, + "NameFullyQualifiedDN": {"untyped int", constant.MakeInt64(int64(q.NameFullyQualifiedDN))}, + "NameSamCompatible": {"untyped int", constant.MakeInt64(int64(q.NameSamCompatible))}, + "NameServicePrincipal": {"untyped int", constant.MakeInt64(int64(q.NameServicePrincipal))}, + "NameUniqueId": {"untyped int", constant.MakeInt64(int64(q.NameUniqueId))}, + "NameUnknown": {"untyped int", constant.MakeInt64(int64(q.NameUnknown))}, + "NameUserPrincipal": {"untyped int", constant.MakeInt64(int64(q.NameUserPrincipal))}, + "NetSetupDomainName": {"untyped int", constant.MakeInt64(int64(q.NetSetupDomainName))}, + "NetSetupUnjoined": {"untyped int", constant.MakeInt64(int64(q.NetSetupUnjoined))}, + "NetSetupUnknownStatus": {"untyped int", constant.MakeInt64(int64(q.NetSetupUnknownStatus))}, + "NetSetupWorkgroupName": {"untyped int", constant.MakeInt64(int64(q.NetSetupWorkgroupName))}, + "OPEN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.OPEN_ALWAYS))}, + "OPEN_EXISTING": {"untyped int", constant.MakeInt64(int64(q.OPEN_EXISTING))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PAGE_EXECUTE_READ": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_READ))}, + "PAGE_EXECUTE_READWRITE": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_READWRITE))}, + "PAGE_EXECUTE_WRITECOPY": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_WRITECOPY))}, + "PAGE_READONLY": {"untyped int", constant.MakeInt64(int64(q.PAGE_READONLY))}, + "PAGE_READWRITE": {"untyped int", constant.MakeInt64(int64(q.PAGE_READWRITE))}, + "PAGE_WRITECOPY": {"untyped int", constant.MakeInt64(int64(q.PAGE_WRITECOPY))}, + "PFL_HIDDEN": {"untyped int", constant.MakeInt64(int64(q.PFL_HIDDEN))}, + "PFL_MATCHES_PROTOCOL_ZERO": {"untyped int", constant.MakeInt64(int64(q.PFL_MATCHES_PROTOCOL_ZERO))}, + "PFL_MULTIPLE_PROTO_ENTRIES": {"untyped int", constant.MakeInt64(int64(q.PFL_MULTIPLE_PROTO_ENTRIES))}, + "PFL_NETWORKDIRECT_PROVIDER": {"untyped int", constant.MakeInt64(int64(q.PFL_NETWORKDIRECT_PROVIDER))}, + "PFL_RECOMMENDED_PROTO_ENTRY": {"untyped int", constant.MakeInt64(int64(q.PFL_RECOMMENDED_PROTO_ENTRY))}, + "PKCS_7_ASN_ENCODING": {"untyped int", constant.MakeInt64(int64(q.PKCS_7_ASN_ENCODING))}, + "PROCESS_QUERY_INFORMATION": {"untyped int", constant.MakeInt64(int64(q.PROCESS_QUERY_INFORMATION))}, + "PROCESS_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.PROCESS_TERMINATE))}, + "PROV_DH_SCHANNEL": {"untyped int", constant.MakeInt64(int64(q.PROV_DH_SCHANNEL))}, + "PROV_DSS": {"untyped int", constant.MakeInt64(int64(q.PROV_DSS))}, + "PROV_DSS_DH": {"untyped int", constant.MakeInt64(int64(q.PROV_DSS_DH))}, + "PROV_EC_ECDSA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECDSA_FULL))}, + "PROV_EC_ECDSA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECDSA_SIG))}, + "PROV_EC_ECNRA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECNRA_FULL))}, + "PROV_EC_ECNRA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECNRA_SIG))}, + "PROV_FORTEZZA": {"untyped int", constant.MakeInt64(int64(q.PROV_FORTEZZA))}, + "PROV_INTEL_SEC": {"untyped int", constant.MakeInt64(int64(q.PROV_INTEL_SEC))}, + "PROV_MS_EXCHANGE": {"untyped int", constant.MakeInt64(int64(q.PROV_MS_EXCHANGE))}, + "PROV_REPLACE_OWF": {"untyped int", constant.MakeInt64(int64(q.PROV_REPLACE_OWF))}, + "PROV_RNG": {"untyped int", constant.MakeInt64(int64(q.PROV_RNG))}, + "PROV_RSA_AES": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_AES))}, + "PROV_RSA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_FULL))}, + "PROV_RSA_SCHANNEL": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_SCHANNEL))}, + "PROV_RSA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_SIG))}, + "PROV_SPYRUS_LYNKS": {"untyped int", constant.MakeInt64(int64(q.PROV_SPYRUS_LYNKS))}, + "PROV_SSL": {"untyped int", constant.MakeInt64(int64(q.PROV_SSL))}, + "REG_BINARY": {"untyped int", constant.MakeInt64(int64(q.REG_BINARY))}, + "REG_DWORD": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD))}, + "REG_DWORD_BIG_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD_BIG_ENDIAN))}, + "REG_DWORD_LITTLE_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD_LITTLE_ENDIAN))}, + "REG_EXPAND_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_EXPAND_SZ))}, + "REG_FULL_RESOURCE_DESCRIPTOR": {"untyped int", constant.MakeInt64(int64(q.REG_FULL_RESOURCE_DESCRIPTOR))}, + "REG_LINK": {"untyped int", constant.MakeInt64(int64(q.REG_LINK))}, + "REG_MULTI_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_MULTI_SZ))}, + "REG_NONE": {"untyped int", constant.MakeInt64(int64(q.REG_NONE))}, + "REG_QWORD": {"untyped int", constant.MakeInt64(int64(q.REG_QWORD))}, + "REG_QWORD_LITTLE_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_QWORD_LITTLE_ENDIAN))}, + "REG_RESOURCE_LIST": {"untyped int", constant.MakeInt64(int64(q.REG_RESOURCE_LIST))}, + "REG_RESOURCE_REQUIREMENTS_LIST": {"untyped int", constant.MakeInt64(int64(q.REG_RESOURCE_REQUIREMENTS_LIST))}, + "REG_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_SZ))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIO_GET_EXTENSION_FUNCTION_POINTER": {"untyped int", constant.MakeInt64(int64(q.SIO_GET_EXTENSION_FUNCTION_POINTER))}, + "SIO_GET_INTERFACE_LIST": {"untyped int", constant.MakeInt64(int64(q.SIO_GET_INTERFACE_LIST))}, + "SIO_KEEPALIVE_VALS": {"untyped int", constant.MakeInt64(int64(q.SIO_KEEPALIVE_VALS))}, + "SIO_UDP_CONNRESET": {"untyped int", constant.MakeInt64(int64(q.SIO_UDP_CONNRESET))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_UPDATE_ACCEPT_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.SO_UPDATE_ACCEPT_CONTEXT))}, + "SO_UPDATE_CONNECT_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.SO_UPDATE_CONNECT_CONTEXT))}, + "STANDARD_RIGHTS_ALL": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_ALL))}, + "STANDARD_RIGHTS_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_EXECUTE))}, + "STANDARD_RIGHTS_READ": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_READ))}, + "STANDARD_RIGHTS_REQUIRED": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_REQUIRED))}, + "STANDARD_RIGHTS_WRITE": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_WRITE))}, + "STARTF_USESHOWWINDOW": {"untyped int", constant.MakeInt64(int64(q.STARTF_USESHOWWINDOW))}, + "STARTF_USESTDHANDLES": {"untyped int", constant.MakeInt64(int64(q.STARTF_USESTDHANDLES))}, + "STD_ERROR_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_ERROR_HANDLE))}, + "STD_INPUT_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_INPUT_HANDLE))}, + "STD_OUTPUT_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_OUTPUT_HANDLE))}, + "SUBLANG_ENGLISH_US": {"untyped int", constant.MakeInt64(int64(q.SUBLANG_ENGLISH_US))}, + "SW_FORCEMINIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_FORCEMINIMIZE))}, + "SW_HIDE": {"untyped int", constant.MakeInt64(int64(q.SW_HIDE))}, + "SW_MAXIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_MAXIMIZE))}, + "SW_MINIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_MINIMIZE))}, + "SW_NORMAL": {"untyped int", constant.MakeInt64(int64(q.SW_NORMAL))}, + "SW_RESTORE": {"untyped int", constant.MakeInt64(int64(q.SW_RESTORE))}, + "SW_SHOW": {"untyped int", constant.MakeInt64(int64(q.SW_SHOW))}, + "SW_SHOWDEFAULT": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWDEFAULT))}, + "SW_SHOWMAXIMIZED": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMAXIMIZED))}, + "SW_SHOWMINIMIZED": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMINIMIZED))}, + "SW_SHOWMINNOACTIVE": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMINNOACTIVE))}, + "SW_SHOWNA": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNA))}, + "SW_SHOWNOACTIVATE": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNOACTIVATE))}, + "SW_SHOWNORMAL": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNORMAL))}, + "SYMBOLIC_LINK_FLAG_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.SYMBOLIC_LINK_FLAG_DIRECTORY))}, + "SYNCHRONIZE": {"untyped int", constant.MakeInt64(int64(q.SYNCHRONIZE))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SidTypeAlias": {"untyped int", constant.MakeInt64(int64(q.SidTypeAlias))}, + "SidTypeComputer": {"untyped int", constant.MakeInt64(int64(q.SidTypeComputer))}, + "SidTypeDeletedAccount": {"untyped int", constant.MakeInt64(int64(q.SidTypeDeletedAccount))}, + "SidTypeDomain": {"untyped int", constant.MakeInt64(int64(q.SidTypeDomain))}, + "SidTypeGroup": {"untyped int", constant.MakeInt64(int64(q.SidTypeGroup))}, + "SidTypeInvalid": {"untyped int", constant.MakeInt64(int64(q.SidTypeInvalid))}, + "SidTypeLabel": {"untyped int", constant.MakeInt64(int64(q.SidTypeLabel))}, + "SidTypeUnknown": {"untyped int", constant.MakeInt64(int64(q.SidTypeUnknown))}, + "SidTypeUser": {"untyped int", constant.MakeInt64(int64(q.SidTypeUser))}, + "SidTypeWellKnownGroup": {"untyped int", constant.MakeInt64(int64(q.SidTypeWellKnownGroup))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TF_DISCONNECT": {"untyped int", constant.MakeInt64(int64(q.TF_DISCONNECT))}, + "TF_REUSE_SOCKET": {"untyped int", constant.MakeInt64(int64(q.TF_REUSE_SOCKET))}, + "TF_USE_DEFAULT_WORKER": {"untyped int", constant.MakeInt64(int64(q.TF_USE_DEFAULT_WORKER))}, + "TF_USE_KERNEL_APC": {"untyped int", constant.MakeInt64(int64(q.TF_USE_KERNEL_APC))}, + "TF_USE_SYSTEM_THREAD": {"untyped int", constant.MakeInt64(int64(q.TF_USE_SYSTEM_THREAD))}, + "TF_WRITE_BEHIND": {"untyped int", constant.MakeInt64(int64(q.TF_WRITE_BEHIND))}, + "TH32CS_INHERIT": {"untyped int", constant.MakeInt64(int64(q.TH32CS_INHERIT))}, + "TH32CS_SNAPALL": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPALL))}, + "TH32CS_SNAPHEAPLIST": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPHEAPLIST))}, + "TH32CS_SNAPMODULE": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPMODULE))}, + "TH32CS_SNAPMODULE32": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPMODULE32))}, + "TH32CS_SNAPPROCESS": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPPROCESS))}, + "TH32CS_SNAPTHREAD": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPTHREAD))}, + "TIME_ZONE_ID_DAYLIGHT": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_DAYLIGHT))}, + "TIME_ZONE_ID_STANDARD": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_STANDARD))}, + "TIME_ZONE_ID_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_UNKNOWN))}, + "TOKEN_ADJUST_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_DEFAULT))}, + "TOKEN_ADJUST_GROUPS": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_GROUPS))}, + "TOKEN_ADJUST_PRIVILEGES": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_PRIVILEGES))}, + "TOKEN_ADJUST_SESSIONID": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_SESSIONID))}, + "TOKEN_ALL_ACCESS": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ALL_ACCESS))}, + "TOKEN_ASSIGN_PRIMARY": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ASSIGN_PRIMARY))}, + "TOKEN_DUPLICATE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_DUPLICATE))}, + "TOKEN_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_EXECUTE))}, + "TOKEN_IMPERSONATE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_IMPERSONATE))}, + "TOKEN_QUERY": {"untyped int", constant.MakeInt64(int64(q.TOKEN_QUERY))}, + "TOKEN_QUERY_SOURCE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_QUERY_SOURCE))}, + "TOKEN_READ": {"untyped int", constant.MakeInt64(int64(q.TOKEN_READ))}, + "TOKEN_WRITE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_WRITE))}, + "TRUNCATE_EXISTING": {"untyped int", constant.MakeInt64(int64(q.TRUNCATE_EXISTING))}, + "TokenAccessInformation": {"untyped int", constant.MakeInt64(int64(q.TokenAccessInformation))}, + "TokenAuditPolicy": {"untyped int", constant.MakeInt64(int64(q.TokenAuditPolicy))}, + "TokenDefaultDacl": {"untyped int", constant.MakeInt64(int64(q.TokenDefaultDacl))}, + "TokenElevation": {"untyped int", constant.MakeInt64(int64(q.TokenElevation))}, + "TokenElevationType": {"untyped int", constant.MakeInt64(int64(q.TokenElevationType))}, + "TokenGroups": {"untyped int", constant.MakeInt64(int64(q.TokenGroups))}, + "TokenGroupsAndPrivileges": {"untyped int", constant.MakeInt64(int64(q.TokenGroupsAndPrivileges))}, + "TokenHasRestrictions": {"untyped int", constant.MakeInt64(int64(q.TokenHasRestrictions))}, + "TokenImpersonationLevel": {"untyped int", constant.MakeInt64(int64(q.TokenImpersonationLevel))}, + "TokenIntegrityLevel": {"untyped int", constant.MakeInt64(int64(q.TokenIntegrityLevel))}, + "TokenLinkedToken": {"untyped int", constant.MakeInt64(int64(q.TokenLinkedToken))}, + "TokenLogonSid": {"untyped int", constant.MakeInt64(int64(q.TokenLogonSid))}, + "TokenMandatoryPolicy": {"untyped int", constant.MakeInt64(int64(q.TokenMandatoryPolicy))}, + "TokenOrigin": {"untyped int", constant.MakeInt64(int64(q.TokenOrigin))}, + "TokenOwner": {"untyped int", constant.MakeInt64(int64(q.TokenOwner))}, + "TokenPrimaryGroup": {"untyped int", constant.MakeInt64(int64(q.TokenPrimaryGroup))}, + "TokenPrivileges": {"untyped int", constant.MakeInt64(int64(q.TokenPrivileges))}, + "TokenRestrictedSids": {"untyped int", constant.MakeInt64(int64(q.TokenRestrictedSids))}, + "TokenSandBoxInert": {"untyped int", constant.MakeInt64(int64(q.TokenSandBoxInert))}, + "TokenSessionId": {"untyped int", constant.MakeInt64(int64(q.TokenSessionId))}, + "TokenSessionReference": {"untyped int", constant.MakeInt64(int64(q.TokenSessionReference))}, + "TokenSource": {"untyped int", constant.MakeInt64(int64(q.TokenSource))}, + "TokenStatistics": {"untyped int", constant.MakeInt64(int64(q.TokenStatistics))}, + "TokenType": {"untyped int", constant.MakeInt64(int64(q.TokenType))}, + "TokenUIAccess": {"untyped int", constant.MakeInt64(int64(q.TokenUIAccess))}, + "TokenUser": {"untyped int", constant.MakeInt64(int64(q.TokenUser))}, + "TokenVirtualizationAllowed": {"untyped int", constant.MakeInt64(int64(q.TokenVirtualizationAllowed))}, + "TokenVirtualizationEnabled": {"untyped int", constant.MakeInt64(int64(q.TokenVirtualizationEnabled))}, + "UNIX_PATH_MAX": {"untyped int", constant.MakeInt64(int64(q.UNIX_PATH_MAX))}, + "USAGE_MATCH_TYPE_AND": {"untyped int", constant.MakeInt64(int64(q.USAGE_MATCH_TYPE_AND))}, + "USAGE_MATCH_TYPE_OR": {"untyped int", constant.MakeInt64(int64(q.USAGE_MATCH_TYPE_OR))}, + "WAIT_ABANDONED": {"untyped int", constant.MakeInt64(int64(q.WAIT_ABANDONED))}, + "WAIT_FAILED": {"untyped int", constant.MakeInt64(int64(q.WAIT_FAILED))}, + "WAIT_OBJECT_0": {"untyped int", constant.MakeInt64(int64(q.WAIT_OBJECT_0))}, + "WAIT_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.WAIT_TIMEOUT))}, + "WSADESCRIPTION_LEN": {"untyped int", constant.MakeInt64(int64(q.WSADESCRIPTION_LEN))}, + "WSAPROTOCOL_LEN": {"untyped int", constant.MakeInt64(int64(q.WSAPROTOCOL_LEN))}, + "WSASYS_STATUS_LEN": {"untyped int", constant.MakeInt64(int64(q.WSASYS_STATUS_LEN))}, + "X509_ASN_ENCODING": {"untyped int", constant.MakeInt64(int64(q.X509_ASN_ENCODING))}, + "XP1_CONNECTIONLESS": {"untyped int", constant.MakeInt64(int64(q.XP1_CONNECTIONLESS))}, + "XP1_CONNECT_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_CONNECT_DATA))}, + "XP1_DISCONNECT_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_DISCONNECT_DATA))}, + "XP1_EXPEDITED_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_EXPEDITED_DATA))}, + "XP1_GRACEFUL_CLOSE": {"untyped int", constant.MakeInt64(int64(q.XP1_GRACEFUL_CLOSE))}, + "XP1_GUARANTEED_DELIVERY": {"untyped int", constant.MakeInt64(int64(q.XP1_GUARANTEED_DELIVERY))}, + "XP1_GUARANTEED_ORDER": {"untyped int", constant.MakeInt64(int64(q.XP1_GUARANTEED_ORDER))}, + "XP1_IFS_HANDLES": {"untyped int", constant.MakeInt64(int64(q.XP1_IFS_HANDLES))}, + "XP1_MESSAGE_ORIENTED": {"untyped int", constant.MakeInt64(int64(q.XP1_MESSAGE_ORIENTED))}, + "XP1_MULTIPOINT_CONTROL_PLANE": {"untyped int", constant.MakeInt64(int64(q.XP1_MULTIPOINT_CONTROL_PLANE))}, + "XP1_MULTIPOINT_DATA_PLANE": {"untyped int", constant.MakeInt64(int64(q.XP1_MULTIPOINT_DATA_PLANE))}, + "XP1_PARTIAL_MESSAGE": {"untyped int", constant.MakeInt64(int64(q.XP1_PARTIAL_MESSAGE))}, + "XP1_PSEUDO_STREAM": {"untyped int", constant.MakeInt64(int64(q.XP1_PSEUDO_STREAM))}, + "XP1_QOS_SUPPORTED": {"untyped int", constant.MakeInt64(int64(q.XP1_QOS_SUPPORTED))}, + "XP1_SAN_SUPPORT_SDP": {"untyped int", constant.MakeInt64(int64(q.XP1_SAN_SUPPORT_SDP))}, + "XP1_SUPPORT_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.XP1_SUPPORT_BROADCAST))}, + "XP1_SUPPORT_MULTIPOINT": {"untyped int", constant.MakeInt64(int64(q.XP1_SUPPORT_MULTIPOINT))}, + "XP1_UNI_RECV": {"untyped int", constant.MakeInt64(int64(q.XP1_UNI_RECV))}, + "XP1_UNI_SEND": {"untyped int", constant.MakeInt64(int64(q.XP1_UNI_SEND))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_windows_arm.go b/pkg/syscall/go122_export_windows_arm.go new file mode 100755 index 00000000..c17c4c32 --- /dev/null +++ b/pkg/syscall/go122_export_windows_arm.go @@ -0,0 +1,1040 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/syscall/windows/sysdll": "sysdll", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unicode/utf16": "utf16", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "AddrinfoW": reflect.TypeOf((*q.AddrinfoW)(nil)).Elem(), + "ByHandleFileInformation": reflect.TypeOf((*q.ByHandleFileInformation)(nil)).Elem(), + "CertChainContext": reflect.TypeOf((*q.CertChainContext)(nil)).Elem(), + "CertChainElement": reflect.TypeOf((*q.CertChainElement)(nil)).Elem(), + "CertChainPara": reflect.TypeOf((*q.CertChainPara)(nil)).Elem(), + "CertChainPolicyPara": reflect.TypeOf((*q.CertChainPolicyPara)(nil)).Elem(), + "CertChainPolicyStatus": reflect.TypeOf((*q.CertChainPolicyStatus)(nil)).Elem(), + "CertContext": reflect.TypeOf((*q.CertContext)(nil)).Elem(), + "CertEnhKeyUsage": reflect.TypeOf((*q.CertEnhKeyUsage)(nil)).Elem(), + "CertInfo": reflect.TypeOf((*q.CertInfo)(nil)).Elem(), + "CertRevocationCrlInfo": reflect.TypeOf((*q.CertRevocationCrlInfo)(nil)).Elem(), + "CertRevocationInfo": reflect.TypeOf((*q.CertRevocationInfo)(nil)).Elem(), + "CertSimpleChain": reflect.TypeOf((*q.CertSimpleChain)(nil)).Elem(), + "CertTrustListInfo": reflect.TypeOf((*q.CertTrustListInfo)(nil)).Elem(), + "CertTrustStatus": reflect.TypeOf((*q.CertTrustStatus)(nil)).Elem(), + "CertUsageMatch": reflect.TypeOf((*q.CertUsageMatch)(nil)).Elem(), + "DLL": reflect.TypeOf((*q.DLL)(nil)).Elem(), + "DLLError": reflect.TypeOf((*q.DLLError)(nil)).Elem(), + "DNSMXData": reflect.TypeOf((*q.DNSMXData)(nil)).Elem(), + "DNSPTRData": reflect.TypeOf((*q.DNSPTRData)(nil)).Elem(), + "DNSRecord": reflect.TypeOf((*q.DNSRecord)(nil)).Elem(), + "DNSSRVData": reflect.TypeOf((*q.DNSSRVData)(nil)).Elem(), + "DNSTXTData": reflect.TypeOf((*q.DNSTXTData)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FileNotifyInformation": reflect.TypeOf((*q.FileNotifyInformation)(nil)).Elem(), + "Filetime": reflect.TypeOf((*q.Filetime)(nil)).Elem(), + "GUID": reflect.TypeOf((*q.GUID)(nil)).Elem(), + "Handle": reflect.TypeOf((*q.Handle)(nil)).Elem(), + "Hostent": reflect.TypeOf((*q.Hostent)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "InterfaceInfo": reflect.TypeOf((*q.InterfaceInfo)(nil)).Elem(), + "IpAdapterInfo": reflect.TypeOf((*q.IpAdapterInfo)(nil)).Elem(), + "IpAddrString": reflect.TypeOf((*q.IpAddrString)(nil)).Elem(), + "IpAddressString": reflect.TypeOf((*q.IpAddressString)(nil)).Elem(), + "IpMaskString": reflect.TypeOf((*q.IpMaskString)(nil)).Elem(), + "LazyDLL": reflect.TypeOf((*q.LazyDLL)(nil)).Elem(), + "LazyProc": reflect.TypeOf((*q.LazyProc)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "MibIfRow": reflect.TypeOf((*q.MibIfRow)(nil)).Elem(), + "Overlapped": reflect.TypeOf((*q.Overlapped)(nil)).Elem(), + "Pointer": reflect.TypeOf((*q.Pointer)(nil)).Elem(), + "Proc": reflect.TypeOf((*q.Proc)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "ProcessEntry32": reflect.TypeOf((*q.ProcessEntry32)(nil)).Elem(), + "ProcessInformation": reflect.TypeOf((*q.ProcessInformation)(nil)).Elem(), + "Protoent": reflect.TypeOf((*q.Protoent)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "SID": reflect.TypeOf((*q.SID)(nil)).Elem(), + "SIDAndAttributes": reflect.TypeOf((*q.SIDAndAttributes)(nil)).Elem(), + "SSLExtraCertChainPolicyPara": reflect.TypeOf((*q.SSLExtraCertChainPolicyPara)(nil)).Elem(), + "SecurityAttributes": reflect.TypeOf((*q.SecurityAttributes)(nil)).Elem(), + "Servent": reflect.TypeOf((*q.Servent)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrGen": reflect.TypeOf((*q.SockaddrGen)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "StartupInfo": reflect.TypeOf((*q.StartupInfo)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Systemtime": reflect.TypeOf((*q.Systemtime)(nil)).Elem(), + "TCPKeepalive": reflect.TypeOf((*q.TCPKeepalive)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timezoneinformation": reflect.TypeOf((*q.Timezoneinformation)(nil)).Elem(), + "Token": reflect.TypeOf((*q.Token)(nil)).Elem(), + "Tokenprimarygroup": reflect.TypeOf((*q.Tokenprimarygroup)(nil)).Elem(), + "Tokenuser": reflect.TypeOf((*q.Tokenuser)(nil)).Elem(), + "TransmitFileBuffers": reflect.TypeOf((*q.TransmitFileBuffers)(nil)).Elem(), + "UserInfo10": reflect.TypeOf((*q.UserInfo10)(nil)).Elem(), + "WSABuf": reflect.TypeOf((*q.WSABuf)(nil)).Elem(), + "WSAData": reflect.TypeOf((*q.WSAData)(nil)).Elem(), + "WSAProtocolChain": reflect.TypeOf((*q.WSAProtocolChain)(nil)).Elem(), + "WSAProtocolInfo": reflect.TypeOf((*q.WSAProtocolInfo)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + "Win32FileAttributeData": reflect.TypeOf((*q.Win32FileAttributeData)(nil)).Elem(), + "Win32finddata": reflect.TypeOf((*q.Win32finddata)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&q.OID_PKIX_KP_SERVER_AUTH), + "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&q.OID_SERVER_GATED_CRYPTO), + "OID_SGC_NETSCAPE": reflect.ValueOf(&q.OID_SGC_NETSCAPE), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + "WSAID_CONNECTEX": reflect.ValueOf(&q.WSAID_CONNECTEX), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "AcceptEx": reflect.ValueOf(q.AcceptEx), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "CancelIo": reflect.ValueOf(q.CancelIo), + "CancelIoEx": reflect.ValueOf(q.CancelIoEx), + "CertAddCertificateContextToStore": reflect.ValueOf(q.CertAddCertificateContextToStore), + "CertCloseStore": reflect.ValueOf(q.CertCloseStore), + "CertCreateCertificateContext": reflect.ValueOf(q.CertCreateCertificateContext), + "CertEnumCertificatesInStore": reflect.ValueOf(q.CertEnumCertificatesInStore), + "CertFreeCertificateChain": reflect.ValueOf(q.CertFreeCertificateChain), + "CertFreeCertificateContext": reflect.ValueOf(q.CertFreeCertificateContext), + "CertGetCertificateChain": reflect.ValueOf(q.CertGetCertificateChain), + "CertOpenStore": reflect.ValueOf(q.CertOpenStore), + "CertOpenSystemStore": reflect.ValueOf(q.CertOpenSystemStore), + "CertVerifyCertificateChainPolicy": reflect.ValueOf(q.CertVerifyCertificateChainPolicy), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseHandle": reflect.ValueOf(q.CloseHandle), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "Closesocket": reflect.ValueOf(q.Closesocket), + "CommandLineToArgv": reflect.ValueOf(q.CommandLineToArgv), + "ComputerName": reflect.ValueOf(q.ComputerName), + "Connect": reflect.ValueOf(q.Connect), + "ConnectEx": reflect.ValueOf(q.ConnectEx), + "ConvertSidToStringSid": reflect.ValueOf(q.ConvertSidToStringSid), + "ConvertStringSidToSid": reflect.ValueOf(q.ConvertStringSidToSid), + "CopySid": reflect.ValueOf(q.CopySid), + "CreateDirectory": reflect.ValueOf(q.CreateDirectory), + "CreateFile": reflect.ValueOf(q.CreateFile), + "CreateFileMapping": reflect.ValueOf(q.CreateFileMapping), + "CreateHardLink": reflect.ValueOf(q.CreateHardLink), + "CreateIoCompletionPort": reflect.ValueOf(q.CreateIoCompletionPort), + "CreatePipe": reflect.ValueOf(q.CreatePipe), + "CreateProcess": reflect.ValueOf(q.CreateProcess), + "CreateProcessAsUser": reflect.ValueOf(q.CreateProcessAsUser), + "CreateSymbolicLink": reflect.ValueOf(q.CreateSymbolicLink), + "CreateToolhelp32Snapshot": reflect.ValueOf(q.CreateToolhelp32Snapshot), + "CryptAcquireContext": reflect.ValueOf(q.CryptAcquireContext), + "CryptGenRandom": reflect.ValueOf(q.CryptGenRandom), + "CryptReleaseContext": reflect.ValueOf(q.CryptReleaseContext), + "DeleteFile": reflect.ValueOf(q.DeleteFile), + "DeviceIoControl": reflect.ValueOf(q.DeviceIoControl), + "DnsNameCompare": reflect.ValueOf(q.DnsNameCompare), + "DnsQuery": reflect.ValueOf(q.DnsQuery), + "DnsRecordListFree": reflect.ValueOf(q.DnsRecordListFree), + "DuplicateHandle": reflect.ValueOf(q.DuplicateHandle), + "Environ": reflect.ValueOf(q.Environ), + "EscapeArg": reflect.ValueOf(q.EscapeArg), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "ExitProcess": reflect.ValueOf(q.ExitProcess), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FindClose": reflect.ValueOf(q.FindClose), + "FindFirstFile": reflect.ValueOf(q.FindFirstFile), + "FindNextFile": reflect.ValueOf(q.FindNextFile), + "FlushFileBuffers": reflect.ValueOf(q.FlushFileBuffers), + "FlushViewOfFile": reflect.ValueOf(q.FlushViewOfFile), + "FormatMessage": reflect.ValueOf(q.FormatMessage), + "FreeAddrInfoW": reflect.ValueOf(q.FreeAddrInfoW), + "FreeEnvironmentStrings": reflect.ValueOf(q.FreeEnvironmentStrings), + "FreeLibrary": reflect.ValueOf(q.FreeLibrary), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "FullPath": reflect.ValueOf(q.FullPath), + "GetAcceptExSockaddrs": reflect.ValueOf(q.GetAcceptExSockaddrs), + "GetAdaptersInfo": reflect.ValueOf(q.GetAdaptersInfo), + "GetAddrInfoW": reflect.ValueOf(q.GetAddrInfoW), + "GetCommandLine": reflect.ValueOf(q.GetCommandLine), + "GetComputerName": reflect.ValueOf(q.GetComputerName), + "GetConsoleMode": reflect.ValueOf(q.GetConsoleMode), + "GetCurrentDirectory": reflect.ValueOf(q.GetCurrentDirectory), + "GetCurrentProcess": reflect.ValueOf(q.GetCurrentProcess), + "GetEnvironmentStrings": reflect.ValueOf(q.GetEnvironmentStrings), + "GetEnvironmentVariable": reflect.ValueOf(q.GetEnvironmentVariable), + "GetExitCodeProcess": reflect.ValueOf(q.GetExitCodeProcess), + "GetFileAttributes": reflect.ValueOf(q.GetFileAttributes), + "GetFileAttributesEx": reflect.ValueOf(q.GetFileAttributesEx), + "GetFileInformationByHandle": reflect.ValueOf(q.GetFileInformationByHandle), + "GetFileType": reflect.ValueOf(q.GetFileType), + "GetFullPathName": reflect.ValueOf(q.GetFullPathName), + "GetHostByName": reflect.ValueOf(q.GetHostByName), + "GetIfEntry": reflect.ValueOf(q.GetIfEntry), + "GetLastError": reflect.ValueOf(q.GetLastError), + "GetLengthSid": reflect.ValueOf(q.GetLengthSid), + "GetLongPathName": reflect.ValueOf(q.GetLongPathName), + "GetProcAddress": reflect.ValueOf(q.GetProcAddress), + "GetProcessTimes": reflect.ValueOf(q.GetProcessTimes), + "GetProtoByName": reflect.ValueOf(q.GetProtoByName), + "GetQueuedCompletionStatus": reflect.ValueOf(q.GetQueuedCompletionStatus), + "GetServByName": reflect.ValueOf(q.GetServByName), + "GetShortPathName": reflect.ValueOf(q.GetShortPathName), + "GetStartupInfo": reflect.ValueOf(q.GetStartupInfo), + "GetStdHandle": reflect.ValueOf(q.GetStdHandle), + "GetSystemTimeAsFileTime": reflect.ValueOf(q.GetSystemTimeAsFileTime), + "GetTempPath": reflect.ValueOf(q.GetTempPath), + "GetTimeZoneInformation": reflect.ValueOf(q.GetTimeZoneInformation), + "GetTokenInformation": reflect.ValueOf(q.GetTokenInformation), + "GetUserNameEx": reflect.ValueOf(q.GetUserNameEx), + "GetUserProfileDirectory": reflect.ValueOf(q.GetUserProfileDirectory), + "GetVersion": reflect.ValueOf(q.GetVersion), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "Getsockopt": reflect.ValueOf(q.Getsockopt), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "LoadCancelIoEx": reflect.ValueOf(q.LoadCancelIoEx), + "LoadConnectEx": reflect.ValueOf(q.LoadConnectEx), + "LoadCreateSymbolicLink": reflect.ValueOf(q.LoadCreateSymbolicLink), + "LoadDLL": reflect.ValueOf(q.LoadDLL), + "LoadGetAddrInfo": reflect.ValueOf(q.LoadGetAddrInfo), + "LoadLibrary": reflect.ValueOf(q.LoadLibrary), + "LoadSetFileCompletionNotificationModes": reflect.ValueOf(q.LoadSetFileCompletionNotificationModes), + "LocalFree": reflect.ValueOf(q.LocalFree), + "LookupAccountName": reflect.ValueOf(q.LookupAccountName), + "LookupAccountSid": reflect.ValueOf(q.LookupAccountSid), + "LookupSID": reflect.ValueOf(q.LookupSID), + "MapViewOfFile": reflect.ValueOf(q.MapViewOfFile), + "Mkdir": reflect.ValueOf(q.Mkdir), + "MoveFile": reflect.ValueOf(q.MoveFile), + "MustLoadDLL": reflect.ValueOf(q.MustLoadDLL), + "NetApiBufferFree": reflect.ValueOf(q.NetApiBufferFree), + "NetGetJoinInformation": reflect.ValueOf(q.NetGetJoinInformation), + "NetUserGetInfo": reflect.ValueOf(q.NetUserGetInfo), + "NewCallback": reflect.ValueOf(q.NewCallback), + "NewCallbackCDecl": reflect.ValueOf(q.NewCallbackCDecl), + "NewLazyDLL": reflect.ValueOf(q.NewLazyDLL), + "NsecToFiletime": reflect.ValueOf(q.NsecToFiletime), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Ntohs": reflect.ValueOf(q.Ntohs), + "Open": reflect.ValueOf(q.Open), + "OpenCurrentProcessToken": reflect.ValueOf(q.OpenCurrentProcessToken), + "OpenProcess": reflect.ValueOf(q.OpenProcess), + "OpenProcessToken": reflect.ValueOf(q.OpenProcessToken), + "Pipe": reflect.ValueOf(q.Pipe), + "PostQueuedCompletionStatus": reflect.ValueOf(q.PostQueuedCompletionStatus), + "Process32First": reflect.ValueOf(q.Process32First), + "Process32Next": reflect.ValueOf(q.Process32Next), + "Read": reflect.ValueOf(q.Read), + "ReadConsole": reflect.ValueOf(q.ReadConsole), + "ReadDirectoryChanges": reflect.ValueOf(q.ReadDirectoryChanges), + "ReadFile": reflect.ValueOf(q.ReadFile), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "RegCloseKey": reflect.ValueOf(q.RegCloseKey), + "RegEnumKeyEx": reflect.ValueOf(q.RegEnumKeyEx), + "RegOpenKeyEx": reflect.ValueOf(q.RegOpenKeyEx), + "RegQueryInfoKey": reflect.ValueOf(q.RegQueryInfoKey), + "RegQueryValueEx": reflect.ValueOf(q.RegQueryValueEx), + "RemoveDirectory": reflect.ValueOf(q.RemoveDirectory), + "Rename": reflect.ValueOf(q.Rename), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Sendto": reflect.ValueOf(q.Sendto), + "SetCurrentDirectory": reflect.ValueOf(q.SetCurrentDirectory), + "SetEndOfFile": reflect.ValueOf(q.SetEndOfFile), + "SetEnvironmentVariable": reflect.ValueOf(q.SetEnvironmentVariable), + "SetFileAttributes": reflect.ValueOf(q.SetFileAttributes), + "SetFileCompletionNotificationModes": reflect.ValueOf(q.SetFileCompletionNotificationModes), + "SetFilePointer": reflect.ValueOf(q.SetFilePointer), + "SetFileTime": reflect.ValueOf(q.SetFileTime), + "SetHandleInformation": reflect.ValueOf(q.SetHandleInformation), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setenv": reflect.ValueOf(q.Setenv), + "Setsockopt": reflect.ValueOf(q.Setsockopt), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Shutdown": reflect.ValueOf(q.Shutdown), + "Socket": reflect.ValueOf(q.Socket), + "StartProcess": reflect.ValueOf(q.StartProcess), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringToSid": reflect.ValueOf(q.StringToSid), + "StringToUTF16": reflect.ValueOf(q.StringToUTF16), + "StringToUTF16Ptr": reflect.ValueOf(q.StringToUTF16Ptr), + "Symlink": reflect.ValueOf(q.Symlink), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall12": reflect.ValueOf(q.Syscall12), + "Syscall15": reflect.ValueOf(q.Syscall15), + "Syscall18": reflect.ValueOf(q.Syscall18), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "SyscallN": reflect.ValueOf(q.SyscallN), + "TerminateProcess": reflect.ValueOf(q.TerminateProcess), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TranslateAccountName": reflect.ValueOf(q.TranslateAccountName), + "TranslateName": reflect.ValueOf(q.TranslateName), + "TransmitFile": reflect.ValueOf(q.TransmitFile), + "UTF16FromString": reflect.ValueOf(q.UTF16FromString), + "UTF16PtrFromString": reflect.ValueOf(q.UTF16PtrFromString), + "UTF16ToString": reflect.ValueOf(q.UTF16ToString), + "Unlink": reflect.ValueOf(q.Unlink), + "UnmapViewOfFile": reflect.ValueOf(q.UnmapViewOfFile), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "VirtualLock": reflect.ValueOf(q.VirtualLock), + "VirtualUnlock": reflect.ValueOf(q.VirtualUnlock), + "WSACleanup": reflect.ValueOf(q.WSACleanup), + "WSAEnumProtocols": reflect.ValueOf(q.WSAEnumProtocols), + "WSAIoctl": reflect.ValueOf(q.WSAIoctl), + "WSARecv": reflect.ValueOf(q.WSARecv), + "WSARecvFrom": reflect.ValueOf(q.WSARecvFrom), + "WSASend": reflect.ValueOf(q.WSASend), + "WSASendTo": reflect.ValueOf(q.WSASendTo), + "WSASendto": reflect.ValueOf(q.WSASendto), + "WSAStartup": reflect.ValueOf(q.WSAStartup), + "WaitForSingleObject": reflect.ValueOf(q.WaitForSingleObject), + "Write": reflect.ValueOf(q.Write), + "WriteConsole": reflect.ValueOf(q.WriteConsole), + "WriteFile": reflect.ValueOf(q.WriteFile), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERROR_ACCESS_DENIED": {reflect.TypeOf(q.ERROR_ACCESS_DENIED), constant.MakeInt64(int64(q.ERROR_ACCESS_DENIED))}, + "ERROR_ALREADY_EXISTS": {reflect.TypeOf(q.ERROR_ALREADY_EXISTS), constant.MakeInt64(int64(q.ERROR_ALREADY_EXISTS))}, + "ERROR_BROKEN_PIPE": {reflect.TypeOf(q.ERROR_BROKEN_PIPE), constant.MakeInt64(int64(q.ERROR_BROKEN_PIPE))}, + "ERROR_BUFFER_OVERFLOW": {reflect.TypeOf(q.ERROR_BUFFER_OVERFLOW), constant.MakeInt64(int64(q.ERROR_BUFFER_OVERFLOW))}, + "ERROR_DIR_NOT_EMPTY": {reflect.TypeOf(q.ERROR_DIR_NOT_EMPTY), constant.MakeInt64(int64(q.ERROR_DIR_NOT_EMPTY))}, + "ERROR_ENVVAR_NOT_FOUND": {reflect.TypeOf(q.ERROR_ENVVAR_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_ENVVAR_NOT_FOUND))}, + "ERROR_FILE_EXISTS": {reflect.TypeOf(q.ERROR_FILE_EXISTS), constant.MakeInt64(int64(q.ERROR_FILE_EXISTS))}, + "ERROR_FILE_NOT_FOUND": {reflect.TypeOf(q.ERROR_FILE_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_FILE_NOT_FOUND))}, + "ERROR_HANDLE_EOF": {reflect.TypeOf(q.ERROR_HANDLE_EOF), constant.MakeInt64(int64(q.ERROR_HANDLE_EOF))}, + "ERROR_INSUFFICIENT_BUFFER": {reflect.TypeOf(q.ERROR_INSUFFICIENT_BUFFER), constant.MakeInt64(int64(q.ERROR_INSUFFICIENT_BUFFER))}, + "ERROR_IO_PENDING": {reflect.TypeOf(q.ERROR_IO_PENDING), constant.MakeInt64(int64(q.ERROR_IO_PENDING))}, + "ERROR_MOD_NOT_FOUND": {reflect.TypeOf(q.ERROR_MOD_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_MOD_NOT_FOUND))}, + "ERROR_MORE_DATA": {reflect.TypeOf(q.ERROR_MORE_DATA), constant.MakeInt64(int64(q.ERROR_MORE_DATA))}, + "ERROR_NETNAME_DELETED": {reflect.TypeOf(q.ERROR_NETNAME_DELETED), constant.MakeInt64(int64(q.ERROR_NETNAME_DELETED))}, + "ERROR_NOT_FOUND": {reflect.TypeOf(q.ERROR_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_NOT_FOUND))}, + "ERROR_NO_MORE_FILES": {reflect.TypeOf(q.ERROR_NO_MORE_FILES), constant.MakeInt64(int64(q.ERROR_NO_MORE_FILES))}, + "ERROR_OPERATION_ABORTED": {reflect.TypeOf(q.ERROR_OPERATION_ABORTED), constant.MakeInt64(int64(q.ERROR_OPERATION_ABORTED))}, + "ERROR_PATH_NOT_FOUND": {reflect.TypeOf(q.ERROR_PATH_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_PATH_NOT_FOUND))}, + "ERROR_PRIVILEGE_NOT_HELD": {reflect.TypeOf(q.ERROR_PRIVILEGE_NOT_HELD), constant.MakeInt64(int64(q.ERROR_PRIVILEGE_NOT_HELD))}, + "ERROR_PROC_NOT_FOUND": {reflect.TypeOf(q.ERROR_PROC_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_PROC_NOT_FOUND))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWINDOWS": {reflect.TypeOf(q.EWINDOWS), constant.MakeInt64(int64(q.EWINDOWS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "InvalidHandle": {reflect.TypeOf(q.InvalidHandle), constant.MakeUint64(uint64(q.InvalidHandle))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "WSAEACCES": {reflect.TypeOf(q.WSAEACCES), constant.MakeInt64(int64(q.WSAEACCES))}, + "WSAECONNABORTED": {reflect.TypeOf(q.WSAECONNABORTED), constant.MakeInt64(int64(q.WSAECONNABORTED))}, + "WSAECONNRESET": {reflect.TypeOf(q.WSAECONNRESET), constant.MakeInt64(int64(q.WSAECONNRESET))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AI_CANONNAME": {"untyped int", constant.MakeInt64(int64(q.AI_CANONNAME))}, + "AI_NUMERICHOST": {"untyped int", constant.MakeInt64(int64(q.AI_NUMERICHOST))}, + "AI_PASSIVE": {"untyped int", constant.MakeInt64(int64(q.AI_PASSIVE))}, + "APPLICATION_ERROR": {"untyped int", constant.MakeInt64(int64(q.APPLICATION_ERROR))}, + "AUTHTYPE_CLIENT": {"untyped int", constant.MakeInt64(int64(q.AUTHTYPE_CLIENT))}, + "AUTHTYPE_SERVER": {"untyped int", constant.MakeInt64(int64(q.AUTHTYPE_SERVER))}, + "BASE_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.BASE_PROTOCOL))}, + "CERT_CHAIN_POLICY_AUTHENTICODE": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_AUTHENTICODE))}, + "CERT_CHAIN_POLICY_AUTHENTICODE_TS": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_AUTHENTICODE_TS))}, + "CERT_CHAIN_POLICY_BASE": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_BASE))}, + "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_BASIC_CONSTRAINTS))}, + "CERT_CHAIN_POLICY_EV": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_EV))}, + "CERT_CHAIN_POLICY_MICROSOFT_ROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_MICROSOFT_ROOT))}, + "CERT_CHAIN_POLICY_NT_AUTH": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_NT_AUTH))}, + "CERT_CHAIN_POLICY_SSL": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_SSL))}, + "CERT_E_CN_NO_MATCH": {"untyped int", constant.MakeInt64(int64(q.CERT_E_CN_NO_MATCH))}, + "CERT_E_EXPIRED": {"untyped int", constant.MakeInt64(int64(q.CERT_E_EXPIRED))}, + "CERT_E_PURPOSE": {"untyped int", constant.MakeInt64(int64(q.CERT_E_PURPOSE))}, + "CERT_E_ROLE": {"untyped int", constant.MakeInt64(int64(q.CERT_E_ROLE))}, + "CERT_E_UNTRUSTEDROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_E_UNTRUSTEDROOT))}, + "CERT_STORE_ADD_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_ADD_ALWAYS))}, + "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG))}, + "CERT_STORE_PROV_MEMORY": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_PROV_MEMORY))}, + "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT))}, + "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT))}, + "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_BASIC_CONSTRAINTS))}, + "CERT_TRUST_INVALID_EXTENSION": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_EXTENSION))}, + "CERT_TRUST_INVALID_NAME_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_NAME_CONSTRAINTS))}, + "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_POLICY_CONSTRAINTS))}, + "CERT_TRUST_IS_CYCLIC": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_CYCLIC))}, + "CERT_TRUST_IS_EXPLICIT_DISTRUST": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_EXPLICIT_DISTRUST))}, + "CERT_TRUST_IS_NOT_SIGNATURE_VALID": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_SIGNATURE_VALID))}, + "CERT_TRUST_IS_NOT_TIME_VALID": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_TIME_VALID))}, + "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_VALID_FOR_USAGE))}, + "CERT_TRUST_IS_OFFLINE_REVOCATION": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_OFFLINE_REVOCATION))}, + "CERT_TRUST_IS_REVOKED": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_REVOKED))}, + "CERT_TRUST_IS_UNTRUSTED_ROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_UNTRUSTED_ROOT))}, + "CERT_TRUST_NO_ERROR": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_NO_ERROR))}, + "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY))}, + "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_REVOCATION_STATUS_UNKNOWN))}, + "CREATE_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.CREATE_ALWAYS))}, + "CREATE_NEW": {"untyped int", constant.MakeInt64(int64(q.CREATE_NEW))}, + "CREATE_NEW_PROCESS_GROUP": {"untyped int", constant.MakeInt64(int64(q.CREATE_NEW_PROCESS_GROUP))}, + "CREATE_UNICODE_ENVIRONMENT": {"untyped int", constant.MakeInt64(int64(q.CREATE_UNICODE_ENVIRONMENT))}, + "CRYPT_DEFAULT_CONTAINER_OPTIONAL": {"untyped int", constant.MakeInt64(int64(q.CRYPT_DEFAULT_CONTAINER_OPTIONAL))}, + "CRYPT_DELETEKEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_DELETEKEYSET))}, + "CRYPT_MACHINE_KEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_MACHINE_KEYSET))}, + "CRYPT_NEWKEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_NEWKEYSET))}, + "CRYPT_SILENT": {"untyped int", constant.MakeInt64(int64(q.CRYPT_SILENT))}, + "CRYPT_VERIFYCONTEXT": {"untyped int", constant.MakeInt64(int64(q.CRYPT_VERIFYCONTEXT))}, + "CTRL_BREAK_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_BREAK_EVENT))}, + "CTRL_CLOSE_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_CLOSE_EVENT))}, + "CTRL_C_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_C_EVENT))}, + "CTRL_LOGOFF_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_LOGOFF_EVENT))}, + "CTRL_SHUTDOWN_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_SHUTDOWN_EVENT))}, + "DNS_INFO_NO_RECORDS": {"untyped int", constant.MakeInt64(int64(q.DNS_INFO_NO_RECORDS))}, + "DNS_TYPE_A": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_A))}, + "DNS_TYPE_A6": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_A6))}, + "DNS_TYPE_AAAA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AAAA))}, + "DNS_TYPE_ADDRS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ADDRS))}, + "DNS_TYPE_AFSDB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AFSDB))}, + "DNS_TYPE_ALL": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ALL))}, + "DNS_TYPE_ANY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ANY))}, + "DNS_TYPE_ATMA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ATMA))}, + "DNS_TYPE_AXFR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AXFR))}, + "DNS_TYPE_CERT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_CERT))}, + "DNS_TYPE_CNAME": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_CNAME))}, + "DNS_TYPE_DHCID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DHCID))}, + "DNS_TYPE_DNAME": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DNAME))}, + "DNS_TYPE_DNSKEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DNSKEY))}, + "DNS_TYPE_DS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DS))}, + "DNS_TYPE_EID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_EID))}, + "DNS_TYPE_GID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_GID))}, + "DNS_TYPE_GPOS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_GPOS))}, + "DNS_TYPE_HINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_HINFO))}, + "DNS_TYPE_ISDN": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ISDN))}, + "DNS_TYPE_IXFR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_IXFR))}, + "DNS_TYPE_KEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_KEY))}, + "DNS_TYPE_KX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_KX))}, + "DNS_TYPE_LOC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_LOC))}, + "DNS_TYPE_MAILA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MAILA))}, + "DNS_TYPE_MAILB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MAILB))}, + "DNS_TYPE_MB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MB))}, + "DNS_TYPE_MD": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MD))}, + "DNS_TYPE_MF": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MF))}, + "DNS_TYPE_MG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MG))}, + "DNS_TYPE_MINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MINFO))}, + "DNS_TYPE_MR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MR))}, + "DNS_TYPE_MX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MX))}, + "DNS_TYPE_NAPTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NAPTR))}, + "DNS_TYPE_NBSTAT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NBSTAT))}, + "DNS_TYPE_NIMLOC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NIMLOC))}, + "DNS_TYPE_NS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NS))}, + "DNS_TYPE_NSAP": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSAP))}, + "DNS_TYPE_NSAPPTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSAPPTR))}, + "DNS_TYPE_NSEC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSEC))}, + "DNS_TYPE_NULL": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NULL))}, + "DNS_TYPE_NXT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NXT))}, + "DNS_TYPE_OPT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_OPT))}, + "DNS_TYPE_PTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_PTR))}, + "DNS_TYPE_PX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_PX))}, + "DNS_TYPE_RP": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RP))}, + "DNS_TYPE_RRSIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RRSIG))}, + "DNS_TYPE_RT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RT))}, + "DNS_TYPE_SIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SIG))}, + "DNS_TYPE_SINK": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SINK))}, + "DNS_TYPE_SOA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SOA))}, + "DNS_TYPE_SRV": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SRV))}, + "DNS_TYPE_TEXT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TEXT))}, + "DNS_TYPE_TKEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TKEY))}, + "DNS_TYPE_TSIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TSIG))}, + "DNS_TYPE_UID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UID))}, + "DNS_TYPE_UINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UINFO))}, + "DNS_TYPE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UNSPEC))}, + "DNS_TYPE_WINS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WINS))}, + "DNS_TYPE_WINSR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WINSR))}, + "DNS_TYPE_WKS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WKS))}, + "DNS_TYPE_X25": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_X25))}, + "DUPLICATE_CLOSE_SOURCE": {"untyped int", constant.MakeInt64(int64(q.DUPLICATE_CLOSE_SOURCE))}, + "DUPLICATE_SAME_ACCESS": {"untyped int", constant.MakeInt64(int64(q.DUPLICATE_SAME_ACCESS))}, + "DnsSectionAdditional": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAdditional))}, + "DnsSectionAnswer": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAnswer))}, + "DnsSectionAuthority": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAuthority))}, + "DnsSectionQuestion": {"untyped int", constant.MakeInt64(int64(q.DnsSectionQuestion))}, + "FILE_ACTION_ADDED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_ADDED))}, + "FILE_ACTION_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_MODIFIED))}, + "FILE_ACTION_REMOVED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_REMOVED))}, + "FILE_ACTION_RENAMED_NEW_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_RENAMED_NEW_NAME))}, + "FILE_ACTION_RENAMED_OLD_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_RENAMED_OLD_NAME))}, + "FILE_APPEND_DATA": {"untyped int", constant.MakeInt64(int64(q.FILE_APPEND_DATA))}, + "FILE_ATTRIBUTE_ARCHIVE": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_ARCHIVE))}, + "FILE_ATTRIBUTE_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_DIRECTORY))}, + "FILE_ATTRIBUTE_HIDDEN": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_HIDDEN))}, + "FILE_ATTRIBUTE_NORMAL": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_NORMAL))}, + "FILE_ATTRIBUTE_READONLY": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_READONLY))}, + "FILE_ATTRIBUTE_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_REPARSE_POINT))}, + "FILE_ATTRIBUTE_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_SYSTEM))}, + "FILE_BEGIN": {"untyped int", constant.MakeInt64(int64(q.FILE_BEGIN))}, + "FILE_CURRENT": {"untyped int", constant.MakeInt64(int64(q.FILE_CURRENT))}, + "FILE_END": {"untyped int", constant.MakeInt64(int64(q.FILE_END))}, + "FILE_FLAG_BACKUP_SEMANTICS": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_BACKUP_SEMANTICS))}, + "FILE_FLAG_OPEN_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_OPEN_REPARSE_POINT))}, + "FILE_FLAG_OVERLAPPED": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_OVERLAPPED))}, + "FILE_LIST_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.FILE_LIST_DIRECTORY))}, + "FILE_MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_COPY))}, + "FILE_MAP_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_EXECUTE))}, + "FILE_MAP_READ": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_READ))}, + "FILE_MAP_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_WRITE))}, + "FILE_NOTIFY_CHANGE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_ATTRIBUTES))}, + "FILE_NOTIFY_CHANGE_CREATION": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_CREATION))}, + "FILE_NOTIFY_CHANGE_DIR_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_DIR_NAME))}, + "FILE_NOTIFY_CHANGE_FILE_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_FILE_NAME))}, + "FILE_NOTIFY_CHANGE_LAST_ACCESS": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_LAST_ACCESS))}, + "FILE_NOTIFY_CHANGE_LAST_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_LAST_WRITE))}, + "FILE_NOTIFY_CHANGE_SIZE": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_SIZE))}, + "FILE_SHARE_DELETE": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_DELETE))}, + "FILE_SHARE_READ": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_READ))}, + "FILE_SHARE_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_WRITE))}, + "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": {"untyped int", constant.MakeInt64(int64(q.FILE_SKIP_COMPLETION_PORT_ON_SUCCESS))}, + "FILE_SKIP_SET_EVENT_ON_HANDLE": {"untyped int", constant.MakeInt64(int64(q.FILE_SKIP_SET_EVENT_ON_HANDLE))}, + "FILE_TYPE_CHAR": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_CHAR))}, + "FILE_TYPE_DISK": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_DISK))}, + "FILE_TYPE_PIPE": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_PIPE))}, + "FILE_TYPE_REMOTE": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_REMOTE))}, + "FILE_TYPE_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_UNKNOWN))}, + "FILE_WRITE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.FILE_WRITE_ATTRIBUTES))}, + "FORMAT_MESSAGE_ALLOCATE_BUFFER": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_ALLOCATE_BUFFER))}, + "FORMAT_MESSAGE_ARGUMENT_ARRAY": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_ARGUMENT_ARRAY))}, + "FORMAT_MESSAGE_FROM_HMODULE": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_HMODULE))}, + "FORMAT_MESSAGE_FROM_STRING": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_STRING))}, + "FORMAT_MESSAGE_FROM_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_SYSTEM))}, + "FORMAT_MESSAGE_IGNORE_INSERTS": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_IGNORE_INSERTS))}, + "FORMAT_MESSAGE_MAX_WIDTH_MASK": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_MAX_WIDTH_MASK))}, + "FSCTL_GET_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FSCTL_GET_REPARSE_POINT))}, + "GENERIC_ALL": {"untyped int", constant.MakeInt64(int64(q.GENERIC_ALL))}, + "GENERIC_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.GENERIC_EXECUTE))}, + "GENERIC_READ": {"untyped int", constant.MakeInt64(int64(q.GENERIC_READ))}, + "GENERIC_WRITE": {"untyped int", constant.MakeInt64(int64(q.GENERIC_WRITE))}, + "GetFileExInfoStandard": {"untyped int", constant.MakeInt64(int64(q.GetFileExInfoStandard))}, + "GetFileExMaxInfoLevel": {"untyped int", constant.MakeInt64(int64(q.GetFileExMaxInfoLevel))}, + "HANDLE_FLAG_INHERIT": {"untyped int", constant.MakeInt64(int64(q.HANDLE_FLAG_INHERIT))}, + "HKEY_CLASSES_ROOT": {"untyped int", constant.MakeInt64(int64(q.HKEY_CLASSES_ROOT))}, + "HKEY_CURRENT_CONFIG": {"untyped int", constant.MakeInt64(int64(q.HKEY_CURRENT_CONFIG))}, + "HKEY_CURRENT_USER": {"untyped int", constant.MakeInt64(int64(q.HKEY_CURRENT_USER))}, + "HKEY_DYN_DATA": {"untyped int", constant.MakeInt64(int64(q.HKEY_DYN_DATA))}, + "HKEY_LOCAL_MACHINE": {"untyped int", constant.MakeInt64(int64(q.HKEY_LOCAL_MACHINE))}, + "HKEY_PERFORMANCE_DATA": {"untyped int", constant.MakeInt64(int64(q.HKEY_PERFORMANCE_DATA))}, + "HKEY_USERS": {"untyped int", constant.MakeInt64(int64(q.HKEY_USERS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_POINTTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTTOPOINT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IGNORE": {"untyped int", constant.MakeInt64(int64(q.IGNORE))}, + "INFINITE": {"untyped int", constant.MakeInt64(int64(q.INFINITE))}, + "INVALID_FILE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.INVALID_FILE_ATTRIBUTES))}, + "IOC_IN": {"untyped int", constant.MakeInt64(int64(q.IOC_IN))}, + "IOC_INOUT": {"untyped int", constant.MakeInt64(int64(q.IOC_INOUT))}, + "IOC_OUT": {"untyped int", constant.MakeInt64(int64(q.IOC_OUT))}, + "IOC_VENDOR": {"untyped int", constant.MakeInt64(int64(q.IOC_VENDOR))}, + "IOC_WS2": {"untyped int", constant.MakeInt64(int64(q.IOC_WS2))}, + "IO_REPARSE_TAG_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.IO_REPARSE_TAG_SYMLINK))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "KEY_ALL_ACCESS": {"untyped int", constant.MakeInt64(int64(q.KEY_ALL_ACCESS))}, + "KEY_CREATE_LINK": {"untyped int", constant.MakeInt64(int64(q.KEY_CREATE_LINK))}, + "KEY_CREATE_SUB_KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_CREATE_SUB_KEY))}, + "KEY_ENUMERATE_SUB_KEYS": {"untyped int", constant.MakeInt64(int64(q.KEY_ENUMERATE_SUB_KEYS))}, + "KEY_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.KEY_EXECUTE))}, + "KEY_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.KEY_NOTIFY))}, + "KEY_QUERY_VALUE": {"untyped int", constant.MakeInt64(int64(q.KEY_QUERY_VALUE))}, + "KEY_READ": {"untyped int", constant.MakeInt64(int64(q.KEY_READ))}, + "KEY_SET_VALUE": {"untyped int", constant.MakeInt64(int64(q.KEY_SET_VALUE))}, + "KEY_WOW64_32KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_WOW64_32KEY))}, + "KEY_WOW64_64KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_WOW64_64KEY))}, + "KEY_WRITE": {"untyped int", constant.MakeInt64(int64(q.KEY_WRITE))}, + "LANG_ENGLISH": {"untyped int", constant.MakeInt64(int64(q.LANG_ENGLISH))}, + "LAYERED_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.LAYERED_PROTOCOL))}, + "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": {"untyped int", constant.MakeInt64(int64(q.MAXIMUM_REPARSE_DATA_BUFFER_SIZE))}, + "MAXLEN_IFDESCR": {"untyped int", constant.MakeInt64(int64(q.MAXLEN_IFDESCR))}, + "MAXLEN_PHYSADDR": {"untyped int", constant.MakeInt64(int64(q.MAXLEN_PHYSADDR))}, + "MAX_ADAPTER_ADDRESS_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_ADDRESS_LENGTH))}, + "MAX_ADAPTER_DESCRIPTION_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_DESCRIPTION_LENGTH))}, + "MAX_ADAPTER_NAME_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_NAME_LENGTH))}, + "MAX_COMPUTERNAME_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_COMPUTERNAME_LENGTH))}, + "MAX_INTERFACE_NAME_LEN": {"untyped int", constant.MakeInt64(int64(q.MAX_INTERFACE_NAME_LEN))}, + "MAX_LONG_PATH": {"untyped int", constant.MakeInt64(int64(q.MAX_LONG_PATH))}, + "MAX_PATH": {"untyped int", constant.MakeInt64(int64(q.MAX_PATH))}, + "MAX_PROTOCOL_CHAIN": {"untyped int", constant.MakeInt64(int64(q.MAX_PROTOCOL_CHAIN))}, + "MaxTokenInfoClass": {"untyped int", constant.MakeInt64(int64(q.MaxTokenInfoClass))}, + "NameCanonical": {"untyped int", constant.MakeInt64(int64(q.NameCanonical))}, + "NameCanonicalEx": {"untyped int", constant.MakeInt64(int64(q.NameCanonicalEx))}, + "NameDisplay": {"untyped int", constant.MakeInt64(int64(q.NameDisplay))}, + "NameDnsDomain": {"untyped int", constant.MakeInt64(int64(q.NameDnsDomain))}, + "NameFullyQualifiedDN": {"untyped int", constant.MakeInt64(int64(q.NameFullyQualifiedDN))}, + "NameSamCompatible": {"untyped int", constant.MakeInt64(int64(q.NameSamCompatible))}, + "NameServicePrincipal": {"untyped int", constant.MakeInt64(int64(q.NameServicePrincipal))}, + "NameUniqueId": {"untyped int", constant.MakeInt64(int64(q.NameUniqueId))}, + "NameUnknown": {"untyped int", constant.MakeInt64(int64(q.NameUnknown))}, + "NameUserPrincipal": {"untyped int", constant.MakeInt64(int64(q.NameUserPrincipal))}, + "NetSetupDomainName": {"untyped int", constant.MakeInt64(int64(q.NetSetupDomainName))}, + "NetSetupUnjoined": {"untyped int", constant.MakeInt64(int64(q.NetSetupUnjoined))}, + "NetSetupUnknownStatus": {"untyped int", constant.MakeInt64(int64(q.NetSetupUnknownStatus))}, + "NetSetupWorkgroupName": {"untyped int", constant.MakeInt64(int64(q.NetSetupWorkgroupName))}, + "OPEN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.OPEN_ALWAYS))}, + "OPEN_EXISTING": {"untyped int", constant.MakeInt64(int64(q.OPEN_EXISTING))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PAGE_EXECUTE_READ": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_READ))}, + "PAGE_EXECUTE_READWRITE": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_READWRITE))}, + "PAGE_EXECUTE_WRITECOPY": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_WRITECOPY))}, + "PAGE_READONLY": {"untyped int", constant.MakeInt64(int64(q.PAGE_READONLY))}, + "PAGE_READWRITE": {"untyped int", constant.MakeInt64(int64(q.PAGE_READWRITE))}, + "PAGE_WRITECOPY": {"untyped int", constant.MakeInt64(int64(q.PAGE_WRITECOPY))}, + "PFL_HIDDEN": {"untyped int", constant.MakeInt64(int64(q.PFL_HIDDEN))}, + "PFL_MATCHES_PROTOCOL_ZERO": {"untyped int", constant.MakeInt64(int64(q.PFL_MATCHES_PROTOCOL_ZERO))}, + "PFL_MULTIPLE_PROTO_ENTRIES": {"untyped int", constant.MakeInt64(int64(q.PFL_MULTIPLE_PROTO_ENTRIES))}, + "PFL_NETWORKDIRECT_PROVIDER": {"untyped int", constant.MakeInt64(int64(q.PFL_NETWORKDIRECT_PROVIDER))}, + "PFL_RECOMMENDED_PROTO_ENTRY": {"untyped int", constant.MakeInt64(int64(q.PFL_RECOMMENDED_PROTO_ENTRY))}, + "PKCS_7_ASN_ENCODING": {"untyped int", constant.MakeInt64(int64(q.PKCS_7_ASN_ENCODING))}, + "PROCESS_QUERY_INFORMATION": {"untyped int", constant.MakeInt64(int64(q.PROCESS_QUERY_INFORMATION))}, + "PROCESS_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.PROCESS_TERMINATE))}, + "PROV_DH_SCHANNEL": {"untyped int", constant.MakeInt64(int64(q.PROV_DH_SCHANNEL))}, + "PROV_DSS": {"untyped int", constant.MakeInt64(int64(q.PROV_DSS))}, + "PROV_DSS_DH": {"untyped int", constant.MakeInt64(int64(q.PROV_DSS_DH))}, + "PROV_EC_ECDSA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECDSA_FULL))}, + "PROV_EC_ECDSA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECDSA_SIG))}, + "PROV_EC_ECNRA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECNRA_FULL))}, + "PROV_EC_ECNRA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECNRA_SIG))}, + "PROV_FORTEZZA": {"untyped int", constant.MakeInt64(int64(q.PROV_FORTEZZA))}, + "PROV_INTEL_SEC": {"untyped int", constant.MakeInt64(int64(q.PROV_INTEL_SEC))}, + "PROV_MS_EXCHANGE": {"untyped int", constant.MakeInt64(int64(q.PROV_MS_EXCHANGE))}, + "PROV_REPLACE_OWF": {"untyped int", constant.MakeInt64(int64(q.PROV_REPLACE_OWF))}, + "PROV_RNG": {"untyped int", constant.MakeInt64(int64(q.PROV_RNG))}, + "PROV_RSA_AES": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_AES))}, + "PROV_RSA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_FULL))}, + "PROV_RSA_SCHANNEL": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_SCHANNEL))}, + "PROV_RSA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_SIG))}, + "PROV_SPYRUS_LYNKS": {"untyped int", constant.MakeInt64(int64(q.PROV_SPYRUS_LYNKS))}, + "PROV_SSL": {"untyped int", constant.MakeInt64(int64(q.PROV_SSL))}, + "REG_BINARY": {"untyped int", constant.MakeInt64(int64(q.REG_BINARY))}, + "REG_DWORD": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD))}, + "REG_DWORD_BIG_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD_BIG_ENDIAN))}, + "REG_DWORD_LITTLE_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD_LITTLE_ENDIAN))}, + "REG_EXPAND_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_EXPAND_SZ))}, + "REG_FULL_RESOURCE_DESCRIPTOR": {"untyped int", constant.MakeInt64(int64(q.REG_FULL_RESOURCE_DESCRIPTOR))}, + "REG_LINK": {"untyped int", constant.MakeInt64(int64(q.REG_LINK))}, + "REG_MULTI_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_MULTI_SZ))}, + "REG_NONE": {"untyped int", constant.MakeInt64(int64(q.REG_NONE))}, + "REG_QWORD": {"untyped int", constant.MakeInt64(int64(q.REG_QWORD))}, + "REG_QWORD_LITTLE_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_QWORD_LITTLE_ENDIAN))}, + "REG_RESOURCE_LIST": {"untyped int", constant.MakeInt64(int64(q.REG_RESOURCE_LIST))}, + "REG_RESOURCE_REQUIREMENTS_LIST": {"untyped int", constant.MakeInt64(int64(q.REG_RESOURCE_REQUIREMENTS_LIST))}, + "REG_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_SZ))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIO_GET_EXTENSION_FUNCTION_POINTER": {"untyped int", constant.MakeInt64(int64(q.SIO_GET_EXTENSION_FUNCTION_POINTER))}, + "SIO_GET_INTERFACE_LIST": {"untyped int", constant.MakeInt64(int64(q.SIO_GET_INTERFACE_LIST))}, + "SIO_KEEPALIVE_VALS": {"untyped int", constant.MakeInt64(int64(q.SIO_KEEPALIVE_VALS))}, + "SIO_UDP_CONNRESET": {"untyped int", constant.MakeInt64(int64(q.SIO_UDP_CONNRESET))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_UPDATE_ACCEPT_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.SO_UPDATE_ACCEPT_CONTEXT))}, + "SO_UPDATE_CONNECT_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.SO_UPDATE_CONNECT_CONTEXT))}, + "STANDARD_RIGHTS_ALL": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_ALL))}, + "STANDARD_RIGHTS_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_EXECUTE))}, + "STANDARD_RIGHTS_READ": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_READ))}, + "STANDARD_RIGHTS_REQUIRED": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_REQUIRED))}, + "STANDARD_RIGHTS_WRITE": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_WRITE))}, + "STARTF_USESHOWWINDOW": {"untyped int", constant.MakeInt64(int64(q.STARTF_USESHOWWINDOW))}, + "STARTF_USESTDHANDLES": {"untyped int", constant.MakeInt64(int64(q.STARTF_USESTDHANDLES))}, + "STD_ERROR_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_ERROR_HANDLE))}, + "STD_INPUT_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_INPUT_HANDLE))}, + "STD_OUTPUT_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_OUTPUT_HANDLE))}, + "SUBLANG_ENGLISH_US": {"untyped int", constant.MakeInt64(int64(q.SUBLANG_ENGLISH_US))}, + "SW_FORCEMINIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_FORCEMINIMIZE))}, + "SW_HIDE": {"untyped int", constant.MakeInt64(int64(q.SW_HIDE))}, + "SW_MAXIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_MAXIMIZE))}, + "SW_MINIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_MINIMIZE))}, + "SW_NORMAL": {"untyped int", constant.MakeInt64(int64(q.SW_NORMAL))}, + "SW_RESTORE": {"untyped int", constant.MakeInt64(int64(q.SW_RESTORE))}, + "SW_SHOW": {"untyped int", constant.MakeInt64(int64(q.SW_SHOW))}, + "SW_SHOWDEFAULT": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWDEFAULT))}, + "SW_SHOWMAXIMIZED": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMAXIMIZED))}, + "SW_SHOWMINIMIZED": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMINIMIZED))}, + "SW_SHOWMINNOACTIVE": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMINNOACTIVE))}, + "SW_SHOWNA": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNA))}, + "SW_SHOWNOACTIVATE": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNOACTIVATE))}, + "SW_SHOWNORMAL": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNORMAL))}, + "SYMBOLIC_LINK_FLAG_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.SYMBOLIC_LINK_FLAG_DIRECTORY))}, + "SYNCHRONIZE": {"untyped int", constant.MakeInt64(int64(q.SYNCHRONIZE))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SidTypeAlias": {"untyped int", constant.MakeInt64(int64(q.SidTypeAlias))}, + "SidTypeComputer": {"untyped int", constant.MakeInt64(int64(q.SidTypeComputer))}, + "SidTypeDeletedAccount": {"untyped int", constant.MakeInt64(int64(q.SidTypeDeletedAccount))}, + "SidTypeDomain": {"untyped int", constant.MakeInt64(int64(q.SidTypeDomain))}, + "SidTypeGroup": {"untyped int", constant.MakeInt64(int64(q.SidTypeGroup))}, + "SidTypeInvalid": {"untyped int", constant.MakeInt64(int64(q.SidTypeInvalid))}, + "SidTypeLabel": {"untyped int", constant.MakeInt64(int64(q.SidTypeLabel))}, + "SidTypeUnknown": {"untyped int", constant.MakeInt64(int64(q.SidTypeUnknown))}, + "SidTypeUser": {"untyped int", constant.MakeInt64(int64(q.SidTypeUser))}, + "SidTypeWellKnownGroup": {"untyped int", constant.MakeInt64(int64(q.SidTypeWellKnownGroup))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TF_DISCONNECT": {"untyped int", constant.MakeInt64(int64(q.TF_DISCONNECT))}, + "TF_REUSE_SOCKET": {"untyped int", constant.MakeInt64(int64(q.TF_REUSE_SOCKET))}, + "TF_USE_DEFAULT_WORKER": {"untyped int", constant.MakeInt64(int64(q.TF_USE_DEFAULT_WORKER))}, + "TF_USE_KERNEL_APC": {"untyped int", constant.MakeInt64(int64(q.TF_USE_KERNEL_APC))}, + "TF_USE_SYSTEM_THREAD": {"untyped int", constant.MakeInt64(int64(q.TF_USE_SYSTEM_THREAD))}, + "TF_WRITE_BEHIND": {"untyped int", constant.MakeInt64(int64(q.TF_WRITE_BEHIND))}, + "TH32CS_INHERIT": {"untyped int", constant.MakeInt64(int64(q.TH32CS_INHERIT))}, + "TH32CS_SNAPALL": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPALL))}, + "TH32CS_SNAPHEAPLIST": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPHEAPLIST))}, + "TH32CS_SNAPMODULE": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPMODULE))}, + "TH32CS_SNAPMODULE32": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPMODULE32))}, + "TH32CS_SNAPPROCESS": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPPROCESS))}, + "TH32CS_SNAPTHREAD": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPTHREAD))}, + "TIME_ZONE_ID_DAYLIGHT": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_DAYLIGHT))}, + "TIME_ZONE_ID_STANDARD": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_STANDARD))}, + "TIME_ZONE_ID_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_UNKNOWN))}, + "TOKEN_ADJUST_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_DEFAULT))}, + "TOKEN_ADJUST_GROUPS": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_GROUPS))}, + "TOKEN_ADJUST_PRIVILEGES": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_PRIVILEGES))}, + "TOKEN_ADJUST_SESSIONID": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_SESSIONID))}, + "TOKEN_ALL_ACCESS": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ALL_ACCESS))}, + "TOKEN_ASSIGN_PRIMARY": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ASSIGN_PRIMARY))}, + "TOKEN_DUPLICATE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_DUPLICATE))}, + "TOKEN_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_EXECUTE))}, + "TOKEN_IMPERSONATE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_IMPERSONATE))}, + "TOKEN_QUERY": {"untyped int", constant.MakeInt64(int64(q.TOKEN_QUERY))}, + "TOKEN_QUERY_SOURCE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_QUERY_SOURCE))}, + "TOKEN_READ": {"untyped int", constant.MakeInt64(int64(q.TOKEN_READ))}, + "TOKEN_WRITE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_WRITE))}, + "TRUNCATE_EXISTING": {"untyped int", constant.MakeInt64(int64(q.TRUNCATE_EXISTING))}, + "TokenAccessInformation": {"untyped int", constant.MakeInt64(int64(q.TokenAccessInformation))}, + "TokenAuditPolicy": {"untyped int", constant.MakeInt64(int64(q.TokenAuditPolicy))}, + "TokenDefaultDacl": {"untyped int", constant.MakeInt64(int64(q.TokenDefaultDacl))}, + "TokenElevation": {"untyped int", constant.MakeInt64(int64(q.TokenElevation))}, + "TokenElevationType": {"untyped int", constant.MakeInt64(int64(q.TokenElevationType))}, + "TokenGroups": {"untyped int", constant.MakeInt64(int64(q.TokenGroups))}, + "TokenGroupsAndPrivileges": {"untyped int", constant.MakeInt64(int64(q.TokenGroupsAndPrivileges))}, + "TokenHasRestrictions": {"untyped int", constant.MakeInt64(int64(q.TokenHasRestrictions))}, + "TokenImpersonationLevel": {"untyped int", constant.MakeInt64(int64(q.TokenImpersonationLevel))}, + "TokenIntegrityLevel": {"untyped int", constant.MakeInt64(int64(q.TokenIntegrityLevel))}, + "TokenLinkedToken": {"untyped int", constant.MakeInt64(int64(q.TokenLinkedToken))}, + "TokenLogonSid": {"untyped int", constant.MakeInt64(int64(q.TokenLogonSid))}, + "TokenMandatoryPolicy": {"untyped int", constant.MakeInt64(int64(q.TokenMandatoryPolicy))}, + "TokenOrigin": {"untyped int", constant.MakeInt64(int64(q.TokenOrigin))}, + "TokenOwner": {"untyped int", constant.MakeInt64(int64(q.TokenOwner))}, + "TokenPrimaryGroup": {"untyped int", constant.MakeInt64(int64(q.TokenPrimaryGroup))}, + "TokenPrivileges": {"untyped int", constant.MakeInt64(int64(q.TokenPrivileges))}, + "TokenRestrictedSids": {"untyped int", constant.MakeInt64(int64(q.TokenRestrictedSids))}, + "TokenSandBoxInert": {"untyped int", constant.MakeInt64(int64(q.TokenSandBoxInert))}, + "TokenSessionId": {"untyped int", constant.MakeInt64(int64(q.TokenSessionId))}, + "TokenSessionReference": {"untyped int", constant.MakeInt64(int64(q.TokenSessionReference))}, + "TokenSource": {"untyped int", constant.MakeInt64(int64(q.TokenSource))}, + "TokenStatistics": {"untyped int", constant.MakeInt64(int64(q.TokenStatistics))}, + "TokenType": {"untyped int", constant.MakeInt64(int64(q.TokenType))}, + "TokenUIAccess": {"untyped int", constant.MakeInt64(int64(q.TokenUIAccess))}, + "TokenUser": {"untyped int", constant.MakeInt64(int64(q.TokenUser))}, + "TokenVirtualizationAllowed": {"untyped int", constant.MakeInt64(int64(q.TokenVirtualizationAllowed))}, + "TokenVirtualizationEnabled": {"untyped int", constant.MakeInt64(int64(q.TokenVirtualizationEnabled))}, + "UNIX_PATH_MAX": {"untyped int", constant.MakeInt64(int64(q.UNIX_PATH_MAX))}, + "USAGE_MATCH_TYPE_AND": {"untyped int", constant.MakeInt64(int64(q.USAGE_MATCH_TYPE_AND))}, + "USAGE_MATCH_TYPE_OR": {"untyped int", constant.MakeInt64(int64(q.USAGE_MATCH_TYPE_OR))}, + "WAIT_ABANDONED": {"untyped int", constant.MakeInt64(int64(q.WAIT_ABANDONED))}, + "WAIT_FAILED": {"untyped int", constant.MakeInt64(int64(q.WAIT_FAILED))}, + "WAIT_OBJECT_0": {"untyped int", constant.MakeInt64(int64(q.WAIT_OBJECT_0))}, + "WAIT_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.WAIT_TIMEOUT))}, + "WSADESCRIPTION_LEN": {"untyped int", constant.MakeInt64(int64(q.WSADESCRIPTION_LEN))}, + "WSAPROTOCOL_LEN": {"untyped int", constant.MakeInt64(int64(q.WSAPROTOCOL_LEN))}, + "WSASYS_STATUS_LEN": {"untyped int", constant.MakeInt64(int64(q.WSASYS_STATUS_LEN))}, + "X509_ASN_ENCODING": {"untyped int", constant.MakeInt64(int64(q.X509_ASN_ENCODING))}, + "XP1_CONNECTIONLESS": {"untyped int", constant.MakeInt64(int64(q.XP1_CONNECTIONLESS))}, + "XP1_CONNECT_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_CONNECT_DATA))}, + "XP1_DISCONNECT_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_DISCONNECT_DATA))}, + "XP1_EXPEDITED_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_EXPEDITED_DATA))}, + "XP1_GRACEFUL_CLOSE": {"untyped int", constant.MakeInt64(int64(q.XP1_GRACEFUL_CLOSE))}, + "XP1_GUARANTEED_DELIVERY": {"untyped int", constant.MakeInt64(int64(q.XP1_GUARANTEED_DELIVERY))}, + "XP1_GUARANTEED_ORDER": {"untyped int", constant.MakeInt64(int64(q.XP1_GUARANTEED_ORDER))}, + "XP1_IFS_HANDLES": {"untyped int", constant.MakeInt64(int64(q.XP1_IFS_HANDLES))}, + "XP1_MESSAGE_ORIENTED": {"untyped int", constant.MakeInt64(int64(q.XP1_MESSAGE_ORIENTED))}, + "XP1_MULTIPOINT_CONTROL_PLANE": {"untyped int", constant.MakeInt64(int64(q.XP1_MULTIPOINT_CONTROL_PLANE))}, + "XP1_MULTIPOINT_DATA_PLANE": {"untyped int", constant.MakeInt64(int64(q.XP1_MULTIPOINT_DATA_PLANE))}, + "XP1_PARTIAL_MESSAGE": {"untyped int", constant.MakeInt64(int64(q.XP1_PARTIAL_MESSAGE))}, + "XP1_PSEUDO_STREAM": {"untyped int", constant.MakeInt64(int64(q.XP1_PSEUDO_STREAM))}, + "XP1_QOS_SUPPORTED": {"untyped int", constant.MakeInt64(int64(q.XP1_QOS_SUPPORTED))}, + "XP1_SAN_SUPPORT_SDP": {"untyped int", constant.MakeInt64(int64(q.XP1_SAN_SUPPORT_SDP))}, + "XP1_SUPPORT_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.XP1_SUPPORT_BROADCAST))}, + "XP1_SUPPORT_MULTIPOINT": {"untyped int", constant.MakeInt64(int64(q.XP1_SUPPORT_MULTIPOINT))}, + "XP1_UNI_RECV": {"untyped int", constant.MakeInt64(int64(q.XP1_UNI_RECV))}, + "XP1_UNI_SEND": {"untyped int", constant.MakeInt64(int64(q.XP1_UNI_SEND))}, + }, + }) +} diff --git a/pkg/syscall/go122_export_windows_arm64.go b/pkg/syscall/go122_export_windows_arm64.go new file mode 100755 index 00000000..c17c4c32 --- /dev/null +++ b/pkg/syscall/go122_export_windows_arm64.go @@ -0,0 +1,1040 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/syscall/windows/sysdll": "sysdll", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unicode/utf16": "utf16", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "AddrinfoW": reflect.TypeOf((*q.AddrinfoW)(nil)).Elem(), + "ByHandleFileInformation": reflect.TypeOf((*q.ByHandleFileInformation)(nil)).Elem(), + "CertChainContext": reflect.TypeOf((*q.CertChainContext)(nil)).Elem(), + "CertChainElement": reflect.TypeOf((*q.CertChainElement)(nil)).Elem(), + "CertChainPara": reflect.TypeOf((*q.CertChainPara)(nil)).Elem(), + "CertChainPolicyPara": reflect.TypeOf((*q.CertChainPolicyPara)(nil)).Elem(), + "CertChainPolicyStatus": reflect.TypeOf((*q.CertChainPolicyStatus)(nil)).Elem(), + "CertContext": reflect.TypeOf((*q.CertContext)(nil)).Elem(), + "CertEnhKeyUsage": reflect.TypeOf((*q.CertEnhKeyUsage)(nil)).Elem(), + "CertInfo": reflect.TypeOf((*q.CertInfo)(nil)).Elem(), + "CertRevocationCrlInfo": reflect.TypeOf((*q.CertRevocationCrlInfo)(nil)).Elem(), + "CertRevocationInfo": reflect.TypeOf((*q.CertRevocationInfo)(nil)).Elem(), + "CertSimpleChain": reflect.TypeOf((*q.CertSimpleChain)(nil)).Elem(), + "CertTrustListInfo": reflect.TypeOf((*q.CertTrustListInfo)(nil)).Elem(), + "CertTrustStatus": reflect.TypeOf((*q.CertTrustStatus)(nil)).Elem(), + "CertUsageMatch": reflect.TypeOf((*q.CertUsageMatch)(nil)).Elem(), + "DLL": reflect.TypeOf((*q.DLL)(nil)).Elem(), + "DLLError": reflect.TypeOf((*q.DLLError)(nil)).Elem(), + "DNSMXData": reflect.TypeOf((*q.DNSMXData)(nil)).Elem(), + "DNSPTRData": reflect.TypeOf((*q.DNSPTRData)(nil)).Elem(), + "DNSRecord": reflect.TypeOf((*q.DNSRecord)(nil)).Elem(), + "DNSSRVData": reflect.TypeOf((*q.DNSSRVData)(nil)).Elem(), + "DNSTXTData": reflect.TypeOf((*q.DNSTXTData)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FileNotifyInformation": reflect.TypeOf((*q.FileNotifyInformation)(nil)).Elem(), + "Filetime": reflect.TypeOf((*q.Filetime)(nil)).Elem(), + "GUID": reflect.TypeOf((*q.GUID)(nil)).Elem(), + "Handle": reflect.TypeOf((*q.Handle)(nil)).Elem(), + "Hostent": reflect.TypeOf((*q.Hostent)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "InterfaceInfo": reflect.TypeOf((*q.InterfaceInfo)(nil)).Elem(), + "IpAdapterInfo": reflect.TypeOf((*q.IpAdapterInfo)(nil)).Elem(), + "IpAddrString": reflect.TypeOf((*q.IpAddrString)(nil)).Elem(), + "IpAddressString": reflect.TypeOf((*q.IpAddressString)(nil)).Elem(), + "IpMaskString": reflect.TypeOf((*q.IpMaskString)(nil)).Elem(), + "LazyDLL": reflect.TypeOf((*q.LazyDLL)(nil)).Elem(), + "LazyProc": reflect.TypeOf((*q.LazyProc)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "MibIfRow": reflect.TypeOf((*q.MibIfRow)(nil)).Elem(), + "Overlapped": reflect.TypeOf((*q.Overlapped)(nil)).Elem(), + "Pointer": reflect.TypeOf((*q.Pointer)(nil)).Elem(), + "Proc": reflect.TypeOf((*q.Proc)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "ProcessEntry32": reflect.TypeOf((*q.ProcessEntry32)(nil)).Elem(), + "ProcessInformation": reflect.TypeOf((*q.ProcessInformation)(nil)).Elem(), + "Protoent": reflect.TypeOf((*q.Protoent)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "SID": reflect.TypeOf((*q.SID)(nil)).Elem(), + "SIDAndAttributes": reflect.TypeOf((*q.SIDAndAttributes)(nil)).Elem(), + "SSLExtraCertChainPolicyPara": reflect.TypeOf((*q.SSLExtraCertChainPolicyPara)(nil)).Elem(), + "SecurityAttributes": reflect.TypeOf((*q.SecurityAttributes)(nil)).Elem(), + "Servent": reflect.TypeOf((*q.Servent)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrGen": reflect.TypeOf((*q.SockaddrGen)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "StartupInfo": reflect.TypeOf((*q.StartupInfo)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Systemtime": reflect.TypeOf((*q.Systemtime)(nil)).Elem(), + "TCPKeepalive": reflect.TypeOf((*q.TCPKeepalive)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timezoneinformation": reflect.TypeOf((*q.Timezoneinformation)(nil)).Elem(), + "Token": reflect.TypeOf((*q.Token)(nil)).Elem(), + "Tokenprimarygroup": reflect.TypeOf((*q.Tokenprimarygroup)(nil)).Elem(), + "Tokenuser": reflect.TypeOf((*q.Tokenuser)(nil)).Elem(), + "TransmitFileBuffers": reflect.TypeOf((*q.TransmitFileBuffers)(nil)).Elem(), + "UserInfo10": reflect.TypeOf((*q.UserInfo10)(nil)).Elem(), + "WSABuf": reflect.TypeOf((*q.WSABuf)(nil)).Elem(), + "WSAData": reflect.TypeOf((*q.WSAData)(nil)).Elem(), + "WSAProtocolChain": reflect.TypeOf((*q.WSAProtocolChain)(nil)).Elem(), + "WSAProtocolInfo": reflect.TypeOf((*q.WSAProtocolInfo)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + "Win32FileAttributeData": reflect.TypeOf((*q.Win32FileAttributeData)(nil)).Elem(), + "Win32finddata": reflect.TypeOf((*q.Win32finddata)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&q.OID_PKIX_KP_SERVER_AUTH), + "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&q.OID_SERVER_GATED_CRYPTO), + "OID_SGC_NETSCAPE": reflect.ValueOf(&q.OID_SGC_NETSCAPE), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + "WSAID_CONNECTEX": reflect.ValueOf(&q.WSAID_CONNECTEX), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "AcceptEx": reflect.ValueOf(q.AcceptEx), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "CancelIo": reflect.ValueOf(q.CancelIo), + "CancelIoEx": reflect.ValueOf(q.CancelIoEx), + "CertAddCertificateContextToStore": reflect.ValueOf(q.CertAddCertificateContextToStore), + "CertCloseStore": reflect.ValueOf(q.CertCloseStore), + "CertCreateCertificateContext": reflect.ValueOf(q.CertCreateCertificateContext), + "CertEnumCertificatesInStore": reflect.ValueOf(q.CertEnumCertificatesInStore), + "CertFreeCertificateChain": reflect.ValueOf(q.CertFreeCertificateChain), + "CertFreeCertificateContext": reflect.ValueOf(q.CertFreeCertificateContext), + "CertGetCertificateChain": reflect.ValueOf(q.CertGetCertificateChain), + "CertOpenStore": reflect.ValueOf(q.CertOpenStore), + "CertOpenSystemStore": reflect.ValueOf(q.CertOpenSystemStore), + "CertVerifyCertificateChainPolicy": reflect.ValueOf(q.CertVerifyCertificateChainPolicy), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseHandle": reflect.ValueOf(q.CloseHandle), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "Closesocket": reflect.ValueOf(q.Closesocket), + "CommandLineToArgv": reflect.ValueOf(q.CommandLineToArgv), + "ComputerName": reflect.ValueOf(q.ComputerName), + "Connect": reflect.ValueOf(q.Connect), + "ConnectEx": reflect.ValueOf(q.ConnectEx), + "ConvertSidToStringSid": reflect.ValueOf(q.ConvertSidToStringSid), + "ConvertStringSidToSid": reflect.ValueOf(q.ConvertStringSidToSid), + "CopySid": reflect.ValueOf(q.CopySid), + "CreateDirectory": reflect.ValueOf(q.CreateDirectory), + "CreateFile": reflect.ValueOf(q.CreateFile), + "CreateFileMapping": reflect.ValueOf(q.CreateFileMapping), + "CreateHardLink": reflect.ValueOf(q.CreateHardLink), + "CreateIoCompletionPort": reflect.ValueOf(q.CreateIoCompletionPort), + "CreatePipe": reflect.ValueOf(q.CreatePipe), + "CreateProcess": reflect.ValueOf(q.CreateProcess), + "CreateProcessAsUser": reflect.ValueOf(q.CreateProcessAsUser), + "CreateSymbolicLink": reflect.ValueOf(q.CreateSymbolicLink), + "CreateToolhelp32Snapshot": reflect.ValueOf(q.CreateToolhelp32Snapshot), + "CryptAcquireContext": reflect.ValueOf(q.CryptAcquireContext), + "CryptGenRandom": reflect.ValueOf(q.CryptGenRandom), + "CryptReleaseContext": reflect.ValueOf(q.CryptReleaseContext), + "DeleteFile": reflect.ValueOf(q.DeleteFile), + "DeviceIoControl": reflect.ValueOf(q.DeviceIoControl), + "DnsNameCompare": reflect.ValueOf(q.DnsNameCompare), + "DnsQuery": reflect.ValueOf(q.DnsQuery), + "DnsRecordListFree": reflect.ValueOf(q.DnsRecordListFree), + "DuplicateHandle": reflect.ValueOf(q.DuplicateHandle), + "Environ": reflect.ValueOf(q.Environ), + "EscapeArg": reflect.ValueOf(q.EscapeArg), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "ExitProcess": reflect.ValueOf(q.ExitProcess), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FindClose": reflect.ValueOf(q.FindClose), + "FindFirstFile": reflect.ValueOf(q.FindFirstFile), + "FindNextFile": reflect.ValueOf(q.FindNextFile), + "FlushFileBuffers": reflect.ValueOf(q.FlushFileBuffers), + "FlushViewOfFile": reflect.ValueOf(q.FlushViewOfFile), + "FormatMessage": reflect.ValueOf(q.FormatMessage), + "FreeAddrInfoW": reflect.ValueOf(q.FreeAddrInfoW), + "FreeEnvironmentStrings": reflect.ValueOf(q.FreeEnvironmentStrings), + "FreeLibrary": reflect.ValueOf(q.FreeLibrary), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "FullPath": reflect.ValueOf(q.FullPath), + "GetAcceptExSockaddrs": reflect.ValueOf(q.GetAcceptExSockaddrs), + "GetAdaptersInfo": reflect.ValueOf(q.GetAdaptersInfo), + "GetAddrInfoW": reflect.ValueOf(q.GetAddrInfoW), + "GetCommandLine": reflect.ValueOf(q.GetCommandLine), + "GetComputerName": reflect.ValueOf(q.GetComputerName), + "GetConsoleMode": reflect.ValueOf(q.GetConsoleMode), + "GetCurrentDirectory": reflect.ValueOf(q.GetCurrentDirectory), + "GetCurrentProcess": reflect.ValueOf(q.GetCurrentProcess), + "GetEnvironmentStrings": reflect.ValueOf(q.GetEnvironmentStrings), + "GetEnvironmentVariable": reflect.ValueOf(q.GetEnvironmentVariable), + "GetExitCodeProcess": reflect.ValueOf(q.GetExitCodeProcess), + "GetFileAttributes": reflect.ValueOf(q.GetFileAttributes), + "GetFileAttributesEx": reflect.ValueOf(q.GetFileAttributesEx), + "GetFileInformationByHandle": reflect.ValueOf(q.GetFileInformationByHandle), + "GetFileType": reflect.ValueOf(q.GetFileType), + "GetFullPathName": reflect.ValueOf(q.GetFullPathName), + "GetHostByName": reflect.ValueOf(q.GetHostByName), + "GetIfEntry": reflect.ValueOf(q.GetIfEntry), + "GetLastError": reflect.ValueOf(q.GetLastError), + "GetLengthSid": reflect.ValueOf(q.GetLengthSid), + "GetLongPathName": reflect.ValueOf(q.GetLongPathName), + "GetProcAddress": reflect.ValueOf(q.GetProcAddress), + "GetProcessTimes": reflect.ValueOf(q.GetProcessTimes), + "GetProtoByName": reflect.ValueOf(q.GetProtoByName), + "GetQueuedCompletionStatus": reflect.ValueOf(q.GetQueuedCompletionStatus), + "GetServByName": reflect.ValueOf(q.GetServByName), + "GetShortPathName": reflect.ValueOf(q.GetShortPathName), + "GetStartupInfo": reflect.ValueOf(q.GetStartupInfo), + "GetStdHandle": reflect.ValueOf(q.GetStdHandle), + "GetSystemTimeAsFileTime": reflect.ValueOf(q.GetSystemTimeAsFileTime), + "GetTempPath": reflect.ValueOf(q.GetTempPath), + "GetTimeZoneInformation": reflect.ValueOf(q.GetTimeZoneInformation), + "GetTokenInformation": reflect.ValueOf(q.GetTokenInformation), + "GetUserNameEx": reflect.ValueOf(q.GetUserNameEx), + "GetUserProfileDirectory": reflect.ValueOf(q.GetUserProfileDirectory), + "GetVersion": reflect.ValueOf(q.GetVersion), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "Getsockopt": reflect.ValueOf(q.Getsockopt), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "LoadCancelIoEx": reflect.ValueOf(q.LoadCancelIoEx), + "LoadConnectEx": reflect.ValueOf(q.LoadConnectEx), + "LoadCreateSymbolicLink": reflect.ValueOf(q.LoadCreateSymbolicLink), + "LoadDLL": reflect.ValueOf(q.LoadDLL), + "LoadGetAddrInfo": reflect.ValueOf(q.LoadGetAddrInfo), + "LoadLibrary": reflect.ValueOf(q.LoadLibrary), + "LoadSetFileCompletionNotificationModes": reflect.ValueOf(q.LoadSetFileCompletionNotificationModes), + "LocalFree": reflect.ValueOf(q.LocalFree), + "LookupAccountName": reflect.ValueOf(q.LookupAccountName), + "LookupAccountSid": reflect.ValueOf(q.LookupAccountSid), + "LookupSID": reflect.ValueOf(q.LookupSID), + "MapViewOfFile": reflect.ValueOf(q.MapViewOfFile), + "Mkdir": reflect.ValueOf(q.Mkdir), + "MoveFile": reflect.ValueOf(q.MoveFile), + "MustLoadDLL": reflect.ValueOf(q.MustLoadDLL), + "NetApiBufferFree": reflect.ValueOf(q.NetApiBufferFree), + "NetGetJoinInformation": reflect.ValueOf(q.NetGetJoinInformation), + "NetUserGetInfo": reflect.ValueOf(q.NetUserGetInfo), + "NewCallback": reflect.ValueOf(q.NewCallback), + "NewCallbackCDecl": reflect.ValueOf(q.NewCallbackCDecl), + "NewLazyDLL": reflect.ValueOf(q.NewLazyDLL), + "NsecToFiletime": reflect.ValueOf(q.NsecToFiletime), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Ntohs": reflect.ValueOf(q.Ntohs), + "Open": reflect.ValueOf(q.Open), + "OpenCurrentProcessToken": reflect.ValueOf(q.OpenCurrentProcessToken), + "OpenProcess": reflect.ValueOf(q.OpenProcess), + "OpenProcessToken": reflect.ValueOf(q.OpenProcessToken), + "Pipe": reflect.ValueOf(q.Pipe), + "PostQueuedCompletionStatus": reflect.ValueOf(q.PostQueuedCompletionStatus), + "Process32First": reflect.ValueOf(q.Process32First), + "Process32Next": reflect.ValueOf(q.Process32Next), + "Read": reflect.ValueOf(q.Read), + "ReadConsole": reflect.ValueOf(q.ReadConsole), + "ReadDirectoryChanges": reflect.ValueOf(q.ReadDirectoryChanges), + "ReadFile": reflect.ValueOf(q.ReadFile), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "RegCloseKey": reflect.ValueOf(q.RegCloseKey), + "RegEnumKeyEx": reflect.ValueOf(q.RegEnumKeyEx), + "RegOpenKeyEx": reflect.ValueOf(q.RegOpenKeyEx), + "RegQueryInfoKey": reflect.ValueOf(q.RegQueryInfoKey), + "RegQueryValueEx": reflect.ValueOf(q.RegQueryValueEx), + "RemoveDirectory": reflect.ValueOf(q.RemoveDirectory), + "Rename": reflect.ValueOf(q.Rename), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Sendto": reflect.ValueOf(q.Sendto), + "SetCurrentDirectory": reflect.ValueOf(q.SetCurrentDirectory), + "SetEndOfFile": reflect.ValueOf(q.SetEndOfFile), + "SetEnvironmentVariable": reflect.ValueOf(q.SetEnvironmentVariable), + "SetFileAttributes": reflect.ValueOf(q.SetFileAttributes), + "SetFileCompletionNotificationModes": reflect.ValueOf(q.SetFileCompletionNotificationModes), + "SetFilePointer": reflect.ValueOf(q.SetFilePointer), + "SetFileTime": reflect.ValueOf(q.SetFileTime), + "SetHandleInformation": reflect.ValueOf(q.SetHandleInformation), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setenv": reflect.ValueOf(q.Setenv), + "Setsockopt": reflect.ValueOf(q.Setsockopt), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Shutdown": reflect.ValueOf(q.Shutdown), + "Socket": reflect.ValueOf(q.Socket), + "StartProcess": reflect.ValueOf(q.StartProcess), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringToSid": reflect.ValueOf(q.StringToSid), + "StringToUTF16": reflect.ValueOf(q.StringToUTF16), + "StringToUTF16Ptr": reflect.ValueOf(q.StringToUTF16Ptr), + "Symlink": reflect.ValueOf(q.Symlink), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall12": reflect.ValueOf(q.Syscall12), + "Syscall15": reflect.ValueOf(q.Syscall15), + "Syscall18": reflect.ValueOf(q.Syscall18), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "SyscallN": reflect.ValueOf(q.SyscallN), + "TerminateProcess": reflect.ValueOf(q.TerminateProcess), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TranslateAccountName": reflect.ValueOf(q.TranslateAccountName), + "TranslateName": reflect.ValueOf(q.TranslateName), + "TransmitFile": reflect.ValueOf(q.TransmitFile), + "UTF16FromString": reflect.ValueOf(q.UTF16FromString), + "UTF16PtrFromString": reflect.ValueOf(q.UTF16PtrFromString), + "UTF16ToString": reflect.ValueOf(q.UTF16ToString), + "Unlink": reflect.ValueOf(q.Unlink), + "UnmapViewOfFile": reflect.ValueOf(q.UnmapViewOfFile), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "VirtualLock": reflect.ValueOf(q.VirtualLock), + "VirtualUnlock": reflect.ValueOf(q.VirtualUnlock), + "WSACleanup": reflect.ValueOf(q.WSACleanup), + "WSAEnumProtocols": reflect.ValueOf(q.WSAEnumProtocols), + "WSAIoctl": reflect.ValueOf(q.WSAIoctl), + "WSARecv": reflect.ValueOf(q.WSARecv), + "WSARecvFrom": reflect.ValueOf(q.WSARecvFrom), + "WSASend": reflect.ValueOf(q.WSASend), + "WSASendTo": reflect.ValueOf(q.WSASendTo), + "WSASendto": reflect.ValueOf(q.WSASendto), + "WSAStartup": reflect.ValueOf(q.WSAStartup), + "WaitForSingleObject": reflect.ValueOf(q.WaitForSingleObject), + "Write": reflect.ValueOf(q.Write), + "WriteConsole": reflect.ValueOf(q.WriteConsole), + "WriteFile": reflect.ValueOf(q.WriteFile), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERROR_ACCESS_DENIED": {reflect.TypeOf(q.ERROR_ACCESS_DENIED), constant.MakeInt64(int64(q.ERROR_ACCESS_DENIED))}, + "ERROR_ALREADY_EXISTS": {reflect.TypeOf(q.ERROR_ALREADY_EXISTS), constant.MakeInt64(int64(q.ERROR_ALREADY_EXISTS))}, + "ERROR_BROKEN_PIPE": {reflect.TypeOf(q.ERROR_BROKEN_PIPE), constant.MakeInt64(int64(q.ERROR_BROKEN_PIPE))}, + "ERROR_BUFFER_OVERFLOW": {reflect.TypeOf(q.ERROR_BUFFER_OVERFLOW), constant.MakeInt64(int64(q.ERROR_BUFFER_OVERFLOW))}, + "ERROR_DIR_NOT_EMPTY": {reflect.TypeOf(q.ERROR_DIR_NOT_EMPTY), constant.MakeInt64(int64(q.ERROR_DIR_NOT_EMPTY))}, + "ERROR_ENVVAR_NOT_FOUND": {reflect.TypeOf(q.ERROR_ENVVAR_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_ENVVAR_NOT_FOUND))}, + "ERROR_FILE_EXISTS": {reflect.TypeOf(q.ERROR_FILE_EXISTS), constant.MakeInt64(int64(q.ERROR_FILE_EXISTS))}, + "ERROR_FILE_NOT_FOUND": {reflect.TypeOf(q.ERROR_FILE_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_FILE_NOT_FOUND))}, + "ERROR_HANDLE_EOF": {reflect.TypeOf(q.ERROR_HANDLE_EOF), constant.MakeInt64(int64(q.ERROR_HANDLE_EOF))}, + "ERROR_INSUFFICIENT_BUFFER": {reflect.TypeOf(q.ERROR_INSUFFICIENT_BUFFER), constant.MakeInt64(int64(q.ERROR_INSUFFICIENT_BUFFER))}, + "ERROR_IO_PENDING": {reflect.TypeOf(q.ERROR_IO_PENDING), constant.MakeInt64(int64(q.ERROR_IO_PENDING))}, + "ERROR_MOD_NOT_FOUND": {reflect.TypeOf(q.ERROR_MOD_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_MOD_NOT_FOUND))}, + "ERROR_MORE_DATA": {reflect.TypeOf(q.ERROR_MORE_DATA), constant.MakeInt64(int64(q.ERROR_MORE_DATA))}, + "ERROR_NETNAME_DELETED": {reflect.TypeOf(q.ERROR_NETNAME_DELETED), constant.MakeInt64(int64(q.ERROR_NETNAME_DELETED))}, + "ERROR_NOT_FOUND": {reflect.TypeOf(q.ERROR_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_NOT_FOUND))}, + "ERROR_NO_MORE_FILES": {reflect.TypeOf(q.ERROR_NO_MORE_FILES), constant.MakeInt64(int64(q.ERROR_NO_MORE_FILES))}, + "ERROR_OPERATION_ABORTED": {reflect.TypeOf(q.ERROR_OPERATION_ABORTED), constant.MakeInt64(int64(q.ERROR_OPERATION_ABORTED))}, + "ERROR_PATH_NOT_FOUND": {reflect.TypeOf(q.ERROR_PATH_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_PATH_NOT_FOUND))}, + "ERROR_PRIVILEGE_NOT_HELD": {reflect.TypeOf(q.ERROR_PRIVILEGE_NOT_HELD), constant.MakeInt64(int64(q.ERROR_PRIVILEGE_NOT_HELD))}, + "ERROR_PROC_NOT_FOUND": {reflect.TypeOf(q.ERROR_PROC_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_PROC_NOT_FOUND))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWINDOWS": {reflect.TypeOf(q.EWINDOWS), constant.MakeInt64(int64(q.EWINDOWS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "InvalidHandle": {reflect.TypeOf(q.InvalidHandle), constant.MakeUint64(uint64(q.InvalidHandle))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "WSAEACCES": {reflect.TypeOf(q.WSAEACCES), constant.MakeInt64(int64(q.WSAEACCES))}, + "WSAECONNABORTED": {reflect.TypeOf(q.WSAECONNABORTED), constant.MakeInt64(int64(q.WSAECONNABORTED))}, + "WSAECONNRESET": {reflect.TypeOf(q.WSAECONNRESET), constant.MakeInt64(int64(q.WSAECONNRESET))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AI_CANONNAME": {"untyped int", constant.MakeInt64(int64(q.AI_CANONNAME))}, + "AI_NUMERICHOST": {"untyped int", constant.MakeInt64(int64(q.AI_NUMERICHOST))}, + "AI_PASSIVE": {"untyped int", constant.MakeInt64(int64(q.AI_PASSIVE))}, + "APPLICATION_ERROR": {"untyped int", constant.MakeInt64(int64(q.APPLICATION_ERROR))}, + "AUTHTYPE_CLIENT": {"untyped int", constant.MakeInt64(int64(q.AUTHTYPE_CLIENT))}, + "AUTHTYPE_SERVER": {"untyped int", constant.MakeInt64(int64(q.AUTHTYPE_SERVER))}, + "BASE_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.BASE_PROTOCOL))}, + "CERT_CHAIN_POLICY_AUTHENTICODE": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_AUTHENTICODE))}, + "CERT_CHAIN_POLICY_AUTHENTICODE_TS": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_AUTHENTICODE_TS))}, + "CERT_CHAIN_POLICY_BASE": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_BASE))}, + "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_BASIC_CONSTRAINTS))}, + "CERT_CHAIN_POLICY_EV": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_EV))}, + "CERT_CHAIN_POLICY_MICROSOFT_ROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_MICROSOFT_ROOT))}, + "CERT_CHAIN_POLICY_NT_AUTH": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_NT_AUTH))}, + "CERT_CHAIN_POLICY_SSL": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_SSL))}, + "CERT_E_CN_NO_MATCH": {"untyped int", constant.MakeInt64(int64(q.CERT_E_CN_NO_MATCH))}, + "CERT_E_EXPIRED": {"untyped int", constant.MakeInt64(int64(q.CERT_E_EXPIRED))}, + "CERT_E_PURPOSE": {"untyped int", constant.MakeInt64(int64(q.CERT_E_PURPOSE))}, + "CERT_E_ROLE": {"untyped int", constant.MakeInt64(int64(q.CERT_E_ROLE))}, + "CERT_E_UNTRUSTEDROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_E_UNTRUSTEDROOT))}, + "CERT_STORE_ADD_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_ADD_ALWAYS))}, + "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG))}, + "CERT_STORE_PROV_MEMORY": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_PROV_MEMORY))}, + "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT))}, + "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT))}, + "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_BASIC_CONSTRAINTS))}, + "CERT_TRUST_INVALID_EXTENSION": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_EXTENSION))}, + "CERT_TRUST_INVALID_NAME_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_NAME_CONSTRAINTS))}, + "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_POLICY_CONSTRAINTS))}, + "CERT_TRUST_IS_CYCLIC": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_CYCLIC))}, + "CERT_TRUST_IS_EXPLICIT_DISTRUST": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_EXPLICIT_DISTRUST))}, + "CERT_TRUST_IS_NOT_SIGNATURE_VALID": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_SIGNATURE_VALID))}, + "CERT_TRUST_IS_NOT_TIME_VALID": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_TIME_VALID))}, + "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_VALID_FOR_USAGE))}, + "CERT_TRUST_IS_OFFLINE_REVOCATION": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_OFFLINE_REVOCATION))}, + "CERT_TRUST_IS_REVOKED": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_REVOKED))}, + "CERT_TRUST_IS_UNTRUSTED_ROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_UNTRUSTED_ROOT))}, + "CERT_TRUST_NO_ERROR": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_NO_ERROR))}, + "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY))}, + "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_REVOCATION_STATUS_UNKNOWN))}, + "CREATE_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.CREATE_ALWAYS))}, + "CREATE_NEW": {"untyped int", constant.MakeInt64(int64(q.CREATE_NEW))}, + "CREATE_NEW_PROCESS_GROUP": {"untyped int", constant.MakeInt64(int64(q.CREATE_NEW_PROCESS_GROUP))}, + "CREATE_UNICODE_ENVIRONMENT": {"untyped int", constant.MakeInt64(int64(q.CREATE_UNICODE_ENVIRONMENT))}, + "CRYPT_DEFAULT_CONTAINER_OPTIONAL": {"untyped int", constant.MakeInt64(int64(q.CRYPT_DEFAULT_CONTAINER_OPTIONAL))}, + "CRYPT_DELETEKEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_DELETEKEYSET))}, + "CRYPT_MACHINE_KEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_MACHINE_KEYSET))}, + "CRYPT_NEWKEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_NEWKEYSET))}, + "CRYPT_SILENT": {"untyped int", constant.MakeInt64(int64(q.CRYPT_SILENT))}, + "CRYPT_VERIFYCONTEXT": {"untyped int", constant.MakeInt64(int64(q.CRYPT_VERIFYCONTEXT))}, + "CTRL_BREAK_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_BREAK_EVENT))}, + "CTRL_CLOSE_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_CLOSE_EVENT))}, + "CTRL_C_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_C_EVENT))}, + "CTRL_LOGOFF_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_LOGOFF_EVENT))}, + "CTRL_SHUTDOWN_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_SHUTDOWN_EVENT))}, + "DNS_INFO_NO_RECORDS": {"untyped int", constant.MakeInt64(int64(q.DNS_INFO_NO_RECORDS))}, + "DNS_TYPE_A": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_A))}, + "DNS_TYPE_A6": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_A6))}, + "DNS_TYPE_AAAA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AAAA))}, + "DNS_TYPE_ADDRS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ADDRS))}, + "DNS_TYPE_AFSDB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AFSDB))}, + "DNS_TYPE_ALL": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ALL))}, + "DNS_TYPE_ANY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ANY))}, + "DNS_TYPE_ATMA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ATMA))}, + "DNS_TYPE_AXFR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AXFR))}, + "DNS_TYPE_CERT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_CERT))}, + "DNS_TYPE_CNAME": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_CNAME))}, + "DNS_TYPE_DHCID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DHCID))}, + "DNS_TYPE_DNAME": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DNAME))}, + "DNS_TYPE_DNSKEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DNSKEY))}, + "DNS_TYPE_DS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DS))}, + "DNS_TYPE_EID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_EID))}, + "DNS_TYPE_GID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_GID))}, + "DNS_TYPE_GPOS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_GPOS))}, + "DNS_TYPE_HINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_HINFO))}, + "DNS_TYPE_ISDN": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ISDN))}, + "DNS_TYPE_IXFR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_IXFR))}, + "DNS_TYPE_KEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_KEY))}, + "DNS_TYPE_KX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_KX))}, + "DNS_TYPE_LOC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_LOC))}, + "DNS_TYPE_MAILA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MAILA))}, + "DNS_TYPE_MAILB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MAILB))}, + "DNS_TYPE_MB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MB))}, + "DNS_TYPE_MD": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MD))}, + "DNS_TYPE_MF": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MF))}, + "DNS_TYPE_MG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MG))}, + "DNS_TYPE_MINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MINFO))}, + "DNS_TYPE_MR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MR))}, + "DNS_TYPE_MX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MX))}, + "DNS_TYPE_NAPTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NAPTR))}, + "DNS_TYPE_NBSTAT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NBSTAT))}, + "DNS_TYPE_NIMLOC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NIMLOC))}, + "DNS_TYPE_NS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NS))}, + "DNS_TYPE_NSAP": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSAP))}, + "DNS_TYPE_NSAPPTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSAPPTR))}, + "DNS_TYPE_NSEC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSEC))}, + "DNS_TYPE_NULL": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NULL))}, + "DNS_TYPE_NXT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NXT))}, + "DNS_TYPE_OPT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_OPT))}, + "DNS_TYPE_PTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_PTR))}, + "DNS_TYPE_PX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_PX))}, + "DNS_TYPE_RP": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RP))}, + "DNS_TYPE_RRSIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RRSIG))}, + "DNS_TYPE_RT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RT))}, + "DNS_TYPE_SIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SIG))}, + "DNS_TYPE_SINK": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SINK))}, + "DNS_TYPE_SOA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SOA))}, + "DNS_TYPE_SRV": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SRV))}, + "DNS_TYPE_TEXT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TEXT))}, + "DNS_TYPE_TKEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TKEY))}, + "DNS_TYPE_TSIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TSIG))}, + "DNS_TYPE_UID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UID))}, + "DNS_TYPE_UINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UINFO))}, + "DNS_TYPE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UNSPEC))}, + "DNS_TYPE_WINS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WINS))}, + "DNS_TYPE_WINSR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WINSR))}, + "DNS_TYPE_WKS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WKS))}, + "DNS_TYPE_X25": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_X25))}, + "DUPLICATE_CLOSE_SOURCE": {"untyped int", constant.MakeInt64(int64(q.DUPLICATE_CLOSE_SOURCE))}, + "DUPLICATE_SAME_ACCESS": {"untyped int", constant.MakeInt64(int64(q.DUPLICATE_SAME_ACCESS))}, + "DnsSectionAdditional": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAdditional))}, + "DnsSectionAnswer": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAnswer))}, + "DnsSectionAuthority": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAuthority))}, + "DnsSectionQuestion": {"untyped int", constant.MakeInt64(int64(q.DnsSectionQuestion))}, + "FILE_ACTION_ADDED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_ADDED))}, + "FILE_ACTION_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_MODIFIED))}, + "FILE_ACTION_REMOVED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_REMOVED))}, + "FILE_ACTION_RENAMED_NEW_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_RENAMED_NEW_NAME))}, + "FILE_ACTION_RENAMED_OLD_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_RENAMED_OLD_NAME))}, + "FILE_APPEND_DATA": {"untyped int", constant.MakeInt64(int64(q.FILE_APPEND_DATA))}, + "FILE_ATTRIBUTE_ARCHIVE": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_ARCHIVE))}, + "FILE_ATTRIBUTE_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_DIRECTORY))}, + "FILE_ATTRIBUTE_HIDDEN": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_HIDDEN))}, + "FILE_ATTRIBUTE_NORMAL": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_NORMAL))}, + "FILE_ATTRIBUTE_READONLY": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_READONLY))}, + "FILE_ATTRIBUTE_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_REPARSE_POINT))}, + "FILE_ATTRIBUTE_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_SYSTEM))}, + "FILE_BEGIN": {"untyped int", constant.MakeInt64(int64(q.FILE_BEGIN))}, + "FILE_CURRENT": {"untyped int", constant.MakeInt64(int64(q.FILE_CURRENT))}, + "FILE_END": {"untyped int", constant.MakeInt64(int64(q.FILE_END))}, + "FILE_FLAG_BACKUP_SEMANTICS": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_BACKUP_SEMANTICS))}, + "FILE_FLAG_OPEN_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_OPEN_REPARSE_POINT))}, + "FILE_FLAG_OVERLAPPED": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_OVERLAPPED))}, + "FILE_LIST_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.FILE_LIST_DIRECTORY))}, + "FILE_MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_COPY))}, + "FILE_MAP_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_EXECUTE))}, + "FILE_MAP_READ": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_READ))}, + "FILE_MAP_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_WRITE))}, + "FILE_NOTIFY_CHANGE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_ATTRIBUTES))}, + "FILE_NOTIFY_CHANGE_CREATION": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_CREATION))}, + "FILE_NOTIFY_CHANGE_DIR_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_DIR_NAME))}, + "FILE_NOTIFY_CHANGE_FILE_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_FILE_NAME))}, + "FILE_NOTIFY_CHANGE_LAST_ACCESS": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_LAST_ACCESS))}, + "FILE_NOTIFY_CHANGE_LAST_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_LAST_WRITE))}, + "FILE_NOTIFY_CHANGE_SIZE": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_SIZE))}, + "FILE_SHARE_DELETE": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_DELETE))}, + "FILE_SHARE_READ": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_READ))}, + "FILE_SHARE_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_WRITE))}, + "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": {"untyped int", constant.MakeInt64(int64(q.FILE_SKIP_COMPLETION_PORT_ON_SUCCESS))}, + "FILE_SKIP_SET_EVENT_ON_HANDLE": {"untyped int", constant.MakeInt64(int64(q.FILE_SKIP_SET_EVENT_ON_HANDLE))}, + "FILE_TYPE_CHAR": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_CHAR))}, + "FILE_TYPE_DISK": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_DISK))}, + "FILE_TYPE_PIPE": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_PIPE))}, + "FILE_TYPE_REMOTE": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_REMOTE))}, + "FILE_TYPE_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_UNKNOWN))}, + "FILE_WRITE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.FILE_WRITE_ATTRIBUTES))}, + "FORMAT_MESSAGE_ALLOCATE_BUFFER": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_ALLOCATE_BUFFER))}, + "FORMAT_MESSAGE_ARGUMENT_ARRAY": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_ARGUMENT_ARRAY))}, + "FORMAT_MESSAGE_FROM_HMODULE": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_HMODULE))}, + "FORMAT_MESSAGE_FROM_STRING": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_STRING))}, + "FORMAT_MESSAGE_FROM_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_SYSTEM))}, + "FORMAT_MESSAGE_IGNORE_INSERTS": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_IGNORE_INSERTS))}, + "FORMAT_MESSAGE_MAX_WIDTH_MASK": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_MAX_WIDTH_MASK))}, + "FSCTL_GET_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FSCTL_GET_REPARSE_POINT))}, + "GENERIC_ALL": {"untyped int", constant.MakeInt64(int64(q.GENERIC_ALL))}, + "GENERIC_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.GENERIC_EXECUTE))}, + "GENERIC_READ": {"untyped int", constant.MakeInt64(int64(q.GENERIC_READ))}, + "GENERIC_WRITE": {"untyped int", constant.MakeInt64(int64(q.GENERIC_WRITE))}, + "GetFileExInfoStandard": {"untyped int", constant.MakeInt64(int64(q.GetFileExInfoStandard))}, + "GetFileExMaxInfoLevel": {"untyped int", constant.MakeInt64(int64(q.GetFileExMaxInfoLevel))}, + "HANDLE_FLAG_INHERIT": {"untyped int", constant.MakeInt64(int64(q.HANDLE_FLAG_INHERIT))}, + "HKEY_CLASSES_ROOT": {"untyped int", constant.MakeInt64(int64(q.HKEY_CLASSES_ROOT))}, + "HKEY_CURRENT_CONFIG": {"untyped int", constant.MakeInt64(int64(q.HKEY_CURRENT_CONFIG))}, + "HKEY_CURRENT_USER": {"untyped int", constant.MakeInt64(int64(q.HKEY_CURRENT_USER))}, + "HKEY_DYN_DATA": {"untyped int", constant.MakeInt64(int64(q.HKEY_DYN_DATA))}, + "HKEY_LOCAL_MACHINE": {"untyped int", constant.MakeInt64(int64(q.HKEY_LOCAL_MACHINE))}, + "HKEY_PERFORMANCE_DATA": {"untyped int", constant.MakeInt64(int64(q.HKEY_PERFORMANCE_DATA))}, + "HKEY_USERS": {"untyped int", constant.MakeInt64(int64(q.HKEY_USERS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_POINTTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTTOPOINT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IGNORE": {"untyped int", constant.MakeInt64(int64(q.IGNORE))}, + "INFINITE": {"untyped int", constant.MakeInt64(int64(q.INFINITE))}, + "INVALID_FILE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.INVALID_FILE_ATTRIBUTES))}, + "IOC_IN": {"untyped int", constant.MakeInt64(int64(q.IOC_IN))}, + "IOC_INOUT": {"untyped int", constant.MakeInt64(int64(q.IOC_INOUT))}, + "IOC_OUT": {"untyped int", constant.MakeInt64(int64(q.IOC_OUT))}, + "IOC_VENDOR": {"untyped int", constant.MakeInt64(int64(q.IOC_VENDOR))}, + "IOC_WS2": {"untyped int", constant.MakeInt64(int64(q.IOC_WS2))}, + "IO_REPARSE_TAG_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.IO_REPARSE_TAG_SYMLINK))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "KEY_ALL_ACCESS": {"untyped int", constant.MakeInt64(int64(q.KEY_ALL_ACCESS))}, + "KEY_CREATE_LINK": {"untyped int", constant.MakeInt64(int64(q.KEY_CREATE_LINK))}, + "KEY_CREATE_SUB_KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_CREATE_SUB_KEY))}, + "KEY_ENUMERATE_SUB_KEYS": {"untyped int", constant.MakeInt64(int64(q.KEY_ENUMERATE_SUB_KEYS))}, + "KEY_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.KEY_EXECUTE))}, + "KEY_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.KEY_NOTIFY))}, + "KEY_QUERY_VALUE": {"untyped int", constant.MakeInt64(int64(q.KEY_QUERY_VALUE))}, + "KEY_READ": {"untyped int", constant.MakeInt64(int64(q.KEY_READ))}, + "KEY_SET_VALUE": {"untyped int", constant.MakeInt64(int64(q.KEY_SET_VALUE))}, + "KEY_WOW64_32KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_WOW64_32KEY))}, + "KEY_WOW64_64KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_WOW64_64KEY))}, + "KEY_WRITE": {"untyped int", constant.MakeInt64(int64(q.KEY_WRITE))}, + "LANG_ENGLISH": {"untyped int", constant.MakeInt64(int64(q.LANG_ENGLISH))}, + "LAYERED_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.LAYERED_PROTOCOL))}, + "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": {"untyped int", constant.MakeInt64(int64(q.MAXIMUM_REPARSE_DATA_BUFFER_SIZE))}, + "MAXLEN_IFDESCR": {"untyped int", constant.MakeInt64(int64(q.MAXLEN_IFDESCR))}, + "MAXLEN_PHYSADDR": {"untyped int", constant.MakeInt64(int64(q.MAXLEN_PHYSADDR))}, + "MAX_ADAPTER_ADDRESS_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_ADDRESS_LENGTH))}, + "MAX_ADAPTER_DESCRIPTION_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_DESCRIPTION_LENGTH))}, + "MAX_ADAPTER_NAME_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_NAME_LENGTH))}, + "MAX_COMPUTERNAME_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_COMPUTERNAME_LENGTH))}, + "MAX_INTERFACE_NAME_LEN": {"untyped int", constant.MakeInt64(int64(q.MAX_INTERFACE_NAME_LEN))}, + "MAX_LONG_PATH": {"untyped int", constant.MakeInt64(int64(q.MAX_LONG_PATH))}, + "MAX_PATH": {"untyped int", constant.MakeInt64(int64(q.MAX_PATH))}, + "MAX_PROTOCOL_CHAIN": {"untyped int", constant.MakeInt64(int64(q.MAX_PROTOCOL_CHAIN))}, + "MaxTokenInfoClass": {"untyped int", constant.MakeInt64(int64(q.MaxTokenInfoClass))}, + "NameCanonical": {"untyped int", constant.MakeInt64(int64(q.NameCanonical))}, + "NameCanonicalEx": {"untyped int", constant.MakeInt64(int64(q.NameCanonicalEx))}, + "NameDisplay": {"untyped int", constant.MakeInt64(int64(q.NameDisplay))}, + "NameDnsDomain": {"untyped int", constant.MakeInt64(int64(q.NameDnsDomain))}, + "NameFullyQualifiedDN": {"untyped int", constant.MakeInt64(int64(q.NameFullyQualifiedDN))}, + "NameSamCompatible": {"untyped int", constant.MakeInt64(int64(q.NameSamCompatible))}, + "NameServicePrincipal": {"untyped int", constant.MakeInt64(int64(q.NameServicePrincipal))}, + "NameUniqueId": {"untyped int", constant.MakeInt64(int64(q.NameUniqueId))}, + "NameUnknown": {"untyped int", constant.MakeInt64(int64(q.NameUnknown))}, + "NameUserPrincipal": {"untyped int", constant.MakeInt64(int64(q.NameUserPrincipal))}, + "NetSetupDomainName": {"untyped int", constant.MakeInt64(int64(q.NetSetupDomainName))}, + "NetSetupUnjoined": {"untyped int", constant.MakeInt64(int64(q.NetSetupUnjoined))}, + "NetSetupUnknownStatus": {"untyped int", constant.MakeInt64(int64(q.NetSetupUnknownStatus))}, + "NetSetupWorkgroupName": {"untyped int", constant.MakeInt64(int64(q.NetSetupWorkgroupName))}, + "OPEN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.OPEN_ALWAYS))}, + "OPEN_EXISTING": {"untyped int", constant.MakeInt64(int64(q.OPEN_EXISTING))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PAGE_EXECUTE_READ": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_READ))}, + "PAGE_EXECUTE_READWRITE": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_READWRITE))}, + "PAGE_EXECUTE_WRITECOPY": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_WRITECOPY))}, + "PAGE_READONLY": {"untyped int", constant.MakeInt64(int64(q.PAGE_READONLY))}, + "PAGE_READWRITE": {"untyped int", constant.MakeInt64(int64(q.PAGE_READWRITE))}, + "PAGE_WRITECOPY": {"untyped int", constant.MakeInt64(int64(q.PAGE_WRITECOPY))}, + "PFL_HIDDEN": {"untyped int", constant.MakeInt64(int64(q.PFL_HIDDEN))}, + "PFL_MATCHES_PROTOCOL_ZERO": {"untyped int", constant.MakeInt64(int64(q.PFL_MATCHES_PROTOCOL_ZERO))}, + "PFL_MULTIPLE_PROTO_ENTRIES": {"untyped int", constant.MakeInt64(int64(q.PFL_MULTIPLE_PROTO_ENTRIES))}, + "PFL_NETWORKDIRECT_PROVIDER": {"untyped int", constant.MakeInt64(int64(q.PFL_NETWORKDIRECT_PROVIDER))}, + "PFL_RECOMMENDED_PROTO_ENTRY": {"untyped int", constant.MakeInt64(int64(q.PFL_RECOMMENDED_PROTO_ENTRY))}, + "PKCS_7_ASN_ENCODING": {"untyped int", constant.MakeInt64(int64(q.PKCS_7_ASN_ENCODING))}, + "PROCESS_QUERY_INFORMATION": {"untyped int", constant.MakeInt64(int64(q.PROCESS_QUERY_INFORMATION))}, + "PROCESS_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.PROCESS_TERMINATE))}, + "PROV_DH_SCHANNEL": {"untyped int", constant.MakeInt64(int64(q.PROV_DH_SCHANNEL))}, + "PROV_DSS": {"untyped int", constant.MakeInt64(int64(q.PROV_DSS))}, + "PROV_DSS_DH": {"untyped int", constant.MakeInt64(int64(q.PROV_DSS_DH))}, + "PROV_EC_ECDSA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECDSA_FULL))}, + "PROV_EC_ECDSA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECDSA_SIG))}, + "PROV_EC_ECNRA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECNRA_FULL))}, + "PROV_EC_ECNRA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECNRA_SIG))}, + "PROV_FORTEZZA": {"untyped int", constant.MakeInt64(int64(q.PROV_FORTEZZA))}, + "PROV_INTEL_SEC": {"untyped int", constant.MakeInt64(int64(q.PROV_INTEL_SEC))}, + "PROV_MS_EXCHANGE": {"untyped int", constant.MakeInt64(int64(q.PROV_MS_EXCHANGE))}, + "PROV_REPLACE_OWF": {"untyped int", constant.MakeInt64(int64(q.PROV_REPLACE_OWF))}, + "PROV_RNG": {"untyped int", constant.MakeInt64(int64(q.PROV_RNG))}, + "PROV_RSA_AES": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_AES))}, + "PROV_RSA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_FULL))}, + "PROV_RSA_SCHANNEL": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_SCHANNEL))}, + "PROV_RSA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_SIG))}, + "PROV_SPYRUS_LYNKS": {"untyped int", constant.MakeInt64(int64(q.PROV_SPYRUS_LYNKS))}, + "PROV_SSL": {"untyped int", constant.MakeInt64(int64(q.PROV_SSL))}, + "REG_BINARY": {"untyped int", constant.MakeInt64(int64(q.REG_BINARY))}, + "REG_DWORD": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD))}, + "REG_DWORD_BIG_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD_BIG_ENDIAN))}, + "REG_DWORD_LITTLE_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD_LITTLE_ENDIAN))}, + "REG_EXPAND_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_EXPAND_SZ))}, + "REG_FULL_RESOURCE_DESCRIPTOR": {"untyped int", constant.MakeInt64(int64(q.REG_FULL_RESOURCE_DESCRIPTOR))}, + "REG_LINK": {"untyped int", constant.MakeInt64(int64(q.REG_LINK))}, + "REG_MULTI_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_MULTI_SZ))}, + "REG_NONE": {"untyped int", constant.MakeInt64(int64(q.REG_NONE))}, + "REG_QWORD": {"untyped int", constant.MakeInt64(int64(q.REG_QWORD))}, + "REG_QWORD_LITTLE_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_QWORD_LITTLE_ENDIAN))}, + "REG_RESOURCE_LIST": {"untyped int", constant.MakeInt64(int64(q.REG_RESOURCE_LIST))}, + "REG_RESOURCE_REQUIREMENTS_LIST": {"untyped int", constant.MakeInt64(int64(q.REG_RESOURCE_REQUIREMENTS_LIST))}, + "REG_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_SZ))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIO_GET_EXTENSION_FUNCTION_POINTER": {"untyped int", constant.MakeInt64(int64(q.SIO_GET_EXTENSION_FUNCTION_POINTER))}, + "SIO_GET_INTERFACE_LIST": {"untyped int", constant.MakeInt64(int64(q.SIO_GET_INTERFACE_LIST))}, + "SIO_KEEPALIVE_VALS": {"untyped int", constant.MakeInt64(int64(q.SIO_KEEPALIVE_VALS))}, + "SIO_UDP_CONNRESET": {"untyped int", constant.MakeInt64(int64(q.SIO_UDP_CONNRESET))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_UPDATE_ACCEPT_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.SO_UPDATE_ACCEPT_CONTEXT))}, + "SO_UPDATE_CONNECT_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.SO_UPDATE_CONNECT_CONTEXT))}, + "STANDARD_RIGHTS_ALL": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_ALL))}, + "STANDARD_RIGHTS_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_EXECUTE))}, + "STANDARD_RIGHTS_READ": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_READ))}, + "STANDARD_RIGHTS_REQUIRED": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_REQUIRED))}, + "STANDARD_RIGHTS_WRITE": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_WRITE))}, + "STARTF_USESHOWWINDOW": {"untyped int", constant.MakeInt64(int64(q.STARTF_USESHOWWINDOW))}, + "STARTF_USESTDHANDLES": {"untyped int", constant.MakeInt64(int64(q.STARTF_USESTDHANDLES))}, + "STD_ERROR_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_ERROR_HANDLE))}, + "STD_INPUT_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_INPUT_HANDLE))}, + "STD_OUTPUT_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_OUTPUT_HANDLE))}, + "SUBLANG_ENGLISH_US": {"untyped int", constant.MakeInt64(int64(q.SUBLANG_ENGLISH_US))}, + "SW_FORCEMINIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_FORCEMINIMIZE))}, + "SW_HIDE": {"untyped int", constant.MakeInt64(int64(q.SW_HIDE))}, + "SW_MAXIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_MAXIMIZE))}, + "SW_MINIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_MINIMIZE))}, + "SW_NORMAL": {"untyped int", constant.MakeInt64(int64(q.SW_NORMAL))}, + "SW_RESTORE": {"untyped int", constant.MakeInt64(int64(q.SW_RESTORE))}, + "SW_SHOW": {"untyped int", constant.MakeInt64(int64(q.SW_SHOW))}, + "SW_SHOWDEFAULT": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWDEFAULT))}, + "SW_SHOWMAXIMIZED": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMAXIMIZED))}, + "SW_SHOWMINIMIZED": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMINIMIZED))}, + "SW_SHOWMINNOACTIVE": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMINNOACTIVE))}, + "SW_SHOWNA": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNA))}, + "SW_SHOWNOACTIVATE": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNOACTIVATE))}, + "SW_SHOWNORMAL": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNORMAL))}, + "SYMBOLIC_LINK_FLAG_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.SYMBOLIC_LINK_FLAG_DIRECTORY))}, + "SYNCHRONIZE": {"untyped int", constant.MakeInt64(int64(q.SYNCHRONIZE))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SidTypeAlias": {"untyped int", constant.MakeInt64(int64(q.SidTypeAlias))}, + "SidTypeComputer": {"untyped int", constant.MakeInt64(int64(q.SidTypeComputer))}, + "SidTypeDeletedAccount": {"untyped int", constant.MakeInt64(int64(q.SidTypeDeletedAccount))}, + "SidTypeDomain": {"untyped int", constant.MakeInt64(int64(q.SidTypeDomain))}, + "SidTypeGroup": {"untyped int", constant.MakeInt64(int64(q.SidTypeGroup))}, + "SidTypeInvalid": {"untyped int", constant.MakeInt64(int64(q.SidTypeInvalid))}, + "SidTypeLabel": {"untyped int", constant.MakeInt64(int64(q.SidTypeLabel))}, + "SidTypeUnknown": {"untyped int", constant.MakeInt64(int64(q.SidTypeUnknown))}, + "SidTypeUser": {"untyped int", constant.MakeInt64(int64(q.SidTypeUser))}, + "SidTypeWellKnownGroup": {"untyped int", constant.MakeInt64(int64(q.SidTypeWellKnownGroup))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TF_DISCONNECT": {"untyped int", constant.MakeInt64(int64(q.TF_DISCONNECT))}, + "TF_REUSE_SOCKET": {"untyped int", constant.MakeInt64(int64(q.TF_REUSE_SOCKET))}, + "TF_USE_DEFAULT_WORKER": {"untyped int", constant.MakeInt64(int64(q.TF_USE_DEFAULT_WORKER))}, + "TF_USE_KERNEL_APC": {"untyped int", constant.MakeInt64(int64(q.TF_USE_KERNEL_APC))}, + "TF_USE_SYSTEM_THREAD": {"untyped int", constant.MakeInt64(int64(q.TF_USE_SYSTEM_THREAD))}, + "TF_WRITE_BEHIND": {"untyped int", constant.MakeInt64(int64(q.TF_WRITE_BEHIND))}, + "TH32CS_INHERIT": {"untyped int", constant.MakeInt64(int64(q.TH32CS_INHERIT))}, + "TH32CS_SNAPALL": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPALL))}, + "TH32CS_SNAPHEAPLIST": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPHEAPLIST))}, + "TH32CS_SNAPMODULE": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPMODULE))}, + "TH32CS_SNAPMODULE32": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPMODULE32))}, + "TH32CS_SNAPPROCESS": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPPROCESS))}, + "TH32CS_SNAPTHREAD": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPTHREAD))}, + "TIME_ZONE_ID_DAYLIGHT": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_DAYLIGHT))}, + "TIME_ZONE_ID_STANDARD": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_STANDARD))}, + "TIME_ZONE_ID_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_UNKNOWN))}, + "TOKEN_ADJUST_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_DEFAULT))}, + "TOKEN_ADJUST_GROUPS": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_GROUPS))}, + "TOKEN_ADJUST_PRIVILEGES": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_PRIVILEGES))}, + "TOKEN_ADJUST_SESSIONID": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_SESSIONID))}, + "TOKEN_ALL_ACCESS": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ALL_ACCESS))}, + "TOKEN_ASSIGN_PRIMARY": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ASSIGN_PRIMARY))}, + "TOKEN_DUPLICATE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_DUPLICATE))}, + "TOKEN_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_EXECUTE))}, + "TOKEN_IMPERSONATE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_IMPERSONATE))}, + "TOKEN_QUERY": {"untyped int", constant.MakeInt64(int64(q.TOKEN_QUERY))}, + "TOKEN_QUERY_SOURCE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_QUERY_SOURCE))}, + "TOKEN_READ": {"untyped int", constant.MakeInt64(int64(q.TOKEN_READ))}, + "TOKEN_WRITE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_WRITE))}, + "TRUNCATE_EXISTING": {"untyped int", constant.MakeInt64(int64(q.TRUNCATE_EXISTING))}, + "TokenAccessInformation": {"untyped int", constant.MakeInt64(int64(q.TokenAccessInformation))}, + "TokenAuditPolicy": {"untyped int", constant.MakeInt64(int64(q.TokenAuditPolicy))}, + "TokenDefaultDacl": {"untyped int", constant.MakeInt64(int64(q.TokenDefaultDacl))}, + "TokenElevation": {"untyped int", constant.MakeInt64(int64(q.TokenElevation))}, + "TokenElevationType": {"untyped int", constant.MakeInt64(int64(q.TokenElevationType))}, + "TokenGroups": {"untyped int", constant.MakeInt64(int64(q.TokenGroups))}, + "TokenGroupsAndPrivileges": {"untyped int", constant.MakeInt64(int64(q.TokenGroupsAndPrivileges))}, + "TokenHasRestrictions": {"untyped int", constant.MakeInt64(int64(q.TokenHasRestrictions))}, + "TokenImpersonationLevel": {"untyped int", constant.MakeInt64(int64(q.TokenImpersonationLevel))}, + "TokenIntegrityLevel": {"untyped int", constant.MakeInt64(int64(q.TokenIntegrityLevel))}, + "TokenLinkedToken": {"untyped int", constant.MakeInt64(int64(q.TokenLinkedToken))}, + "TokenLogonSid": {"untyped int", constant.MakeInt64(int64(q.TokenLogonSid))}, + "TokenMandatoryPolicy": {"untyped int", constant.MakeInt64(int64(q.TokenMandatoryPolicy))}, + "TokenOrigin": {"untyped int", constant.MakeInt64(int64(q.TokenOrigin))}, + "TokenOwner": {"untyped int", constant.MakeInt64(int64(q.TokenOwner))}, + "TokenPrimaryGroup": {"untyped int", constant.MakeInt64(int64(q.TokenPrimaryGroup))}, + "TokenPrivileges": {"untyped int", constant.MakeInt64(int64(q.TokenPrivileges))}, + "TokenRestrictedSids": {"untyped int", constant.MakeInt64(int64(q.TokenRestrictedSids))}, + "TokenSandBoxInert": {"untyped int", constant.MakeInt64(int64(q.TokenSandBoxInert))}, + "TokenSessionId": {"untyped int", constant.MakeInt64(int64(q.TokenSessionId))}, + "TokenSessionReference": {"untyped int", constant.MakeInt64(int64(q.TokenSessionReference))}, + "TokenSource": {"untyped int", constant.MakeInt64(int64(q.TokenSource))}, + "TokenStatistics": {"untyped int", constant.MakeInt64(int64(q.TokenStatistics))}, + "TokenType": {"untyped int", constant.MakeInt64(int64(q.TokenType))}, + "TokenUIAccess": {"untyped int", constant.MakeInt64(int64(q.TokenUIAccess))}, + "TokenUser": {"untyped int", constant.MakeInt64(int64(q.TokenUser))}, + "TokenVirtualizationAllowed": {"untyped int", constant.MakeInt64(int64(q.TokenVirtualizationAllowed))}, + "TokenVirtualizationEnabled": {"untyped int", constant.MakeInt64(int64(q.TokenVirtualizationEnabled))}, + "UNIX_PATH_MAX": {"untyped int", constant.MakeInt64(int64(q.UNIX_PATH_MAX))}, + "USAGE_MATCH_TYPE_AND": {"untyped int", constant.MakeInt64(int64(q.USAGE_MATCH_TYPE_AND))}, + "USAGE_MATCH_TYPE_OR": {"untyped int", constant.MakeInt64(int64(q.USAGE_MATCH_TYPE_OR))}, + "WAIT_ABANDONED": {"untyped int", constant.MakeInt64(int64(q.WAIT_ABANDONED))}, + "WAIT_FAILED": {"untyped int", constant.MakeInt64(int64(q.WAIT_FAILED))}, + "WAIT_OBJECT_0": {"untyped int", constant.MakeInt64(int64(q.WAIT_OBJECT_0))}, + "WAIT_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.WAIT_TIMEOUT))}, + "WSADESCRIPTION_LEN": {"untyped int", constant.MakeInt64(int64(q.WSADESCRIPTION_LEN))}, + "WSAPROTOCOL_LEN": {"untyped int", constant.MakeInt64(int64(q.WSAPROTOCOL_LEN))}, + "WSASYS_STATUS_LEN": {"untyped int", constant.MakeInt64(int64(q.WSASYS_STATUS_LEN))}, + "X509_ASN_ENCODING": {"untyped int", constant.MakeInt64(int64(q.X509_ASN_ENCODING))}, + "XP1_CONNECTIONLESS": {"untyped int", constant.MakeInt64(int64(q.XP1_CONNECTIONLESS))}, + "XP1_CONNECT_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_CONNECT_DATA))}, + "XP1_DISCONNECT_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_DISCONNECT_DATA))}, + "XP1_EXPEDITED_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_EXPEDITED_DATA))}, + "XP1_GRACEFUL_CLOSE": {"untyped int", constant.MakeInt64(int64(q.XP1_GRACEFUL_CLOSE))}, + "XP1_GUARANTEED_DELIVERY": {"untyped int", constant.MakeInt64(int64(q.XP1_GUARANTEED_DELIVERY))}, + "XP1_GUARANTEED_ORDER": {"untyped int", constant.MakeInt64(int64(q.XP1_GUARANTEED_ORDER))}, + "XP1_IFS_HANDLES": {"untyped int", constant.MakeInt64(int64(q.XP1_IFS_HANDLES))}, + "XP1_MESSAGE_ORIENTED": {"untyped int", constant.MakeInt64(int64(q.XP1_MESSAGE_ORIENTED))}, + "XP1_MULTIPOINT_CONTROL_PLANE": {"untyped int", constant.MakeInt64(int64(q.XP1_MULTIPOINT_CONTROL_PLANE))}, + "XP1_MULTIPOINT_DATA_PLANE": {"untyped int", constant.MakeInt64(int64(q.XP1_MULTIPOINT_DATA_PLANE))}, + "XP1_PARTIAL_MESSAGE": {"untyped int", constant.MakeInt64(int64(q.XP1_PARTIAL_MESSAGE))}, + "XP1_PSEUDO_STREAM": {"untyped int", constant.MakeInt64(int64(q.XP1_PSEUDO_STREAM))}, + "XP1_QOS_SUPPORTED": {"untyped int", constant.MakeInt64(int64(q.XP1_QOS_SUPPORTED))}, + "XP1_SAN_SUPPORT_SDP": {"untyped int", constant.MakeInt64(int64(q.XP1_SAN_SUPPORT_SDP))}, + "XP1_SUPPORT_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.XP1_SUPPORT_BROADCAST))}, + "XP1_SUPPORT_MULTIPOINT": {"untyped int", constant.MakeInt64(int64(q.XP1_SUPPORT_MULTIPOINT))}, + "XP1_UNI_RECV": {"untyped int", constant.MakeInt64(int64(q.XP1_UNI_RECV))}, + "XP1_UNI_SEND": {"untyped int", constant.MakeInt64(int64(q.XP1_UNI_SEND))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_aix_ppc64.go b/pkg/syscall/go123_export_aix_ppc64.go new file mode 100755 index 00000000..88f752ef --- /dev/null +++ b/pkg/syscall/go123_export_aix_ppc64.go @@ -0,0 +1,1397 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid64_t": reflect.TypeOf((*q.Fsid64_t)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfMsgHdr": reflect.TypeOf((*q.IfMsgHdr)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "StTimespec_t": reflect.TypeOf((*q.StTimespec_t)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timeval32": reflect.TypeOf((*q.Timeval32)(nil)).Elem(), + "Timezone": reflect.TypeOf((*q.Timezone)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getkerninfo": reflect.ValueOf(q.Getkerninfo), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Kill": reflect.ValueOf(q.Kill), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECLONEME": {reflect.TypeOf(q.ECLONEME), constant.MakeInt64(int64(q.ECLONEME))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "ECORRUPT": {reflect.TypeOf(q.ECORRUPT), constant.MakeInt64(int64(q.ECORRUPT))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDREQ": {reflect.TypeOf(q.EDESTADDREQ), constant.MakeInt64(int64(q.EDESTADDREQ))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDIST": {reflect.TypeOf(q.EDIST), constant.MakeInt64(int64(q.EDIST))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFORMAT": {reflect.TypeOf(q.EFORMAT), constant.MakeInt64(int64(q.EFORMAT))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIA": {reflect.TypeOf(q.EMEDIA), constant.MakeInt64(int64(q.EMEDIA))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCONNECT": {reflect.TypeOf(q.ENOCONNECT), constant.MakeInt64(int64(q.ENOCONNECT))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTREADY": {reflect.TypeOf(q.ENOTREADY), constant.MakeInt64(int64(q.ENOTREADY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTRUST": {reflect.TypeOf(q.ENOTRUST), constant.MakeInt64(int64(q.ENOTRUST))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESAD": {reflect.TypeOf(q.ESAD), constant.MakeInt64(int64(q.ESAD))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESOFT": {reflect.TypeOf(q.ESOFT), constant.MakeInt64(int64(q.ESOFT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESYSERROR": {reflect.TypeOf(q.ESYSERROR), constant.MakeInt64(int64(q.ESYSERROR))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EWRPROTECT": {reflect.TypeOf(q.EWRPROTECT), constant.MakeInt64(int64(q.EWRPROTECT))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGAIO": {reflect.TypeOf(q.SIGAIO), constant.MakeInt64(int64(q.SIGAIO))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGALRM1": {reflect.TypeOf(q.SIGALRM1), constant.MakeInt64(int64(q.SIGALRM1))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCAPI": {reflect.TypeOf(q.SIGCAPI), constant.MakeInt64(int64(q.SIGCAPI))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGCPUFAIL": {reflect.TypeOf(q.SIGCPUFAIL), constant.MakeInt64(int64(q.SIGCPUFAIL))}, + "SIGDANGER": {reflect.TypeOf(q.SIGDANGER), constant.MakeInt64(int64(q.SIGDANGER))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGGRANT": {reflect.TypeOf(q.SIGGRANT), constant.MakeInt64(int64(q.SIGGRANT))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOINT": {reflect.TypeOf(q.SIGIOINT), constant.MakeInt64(int64(q.SIGIOINT))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKAP": {reflect.TypeOf(q.SIGKAP), constant.MakeInt64(int64(q.SIGKAP))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGLOST": {reflect.TypeOf(q.SIGLOST), constant.MakeInt64(int64(q.SIGLOST))}, + "SIGMAX": {reflect.TypeOf(q.SIGMAX), constant.MakeInt64(int64(q.SIGMAX))}, + "SIGMAX32": {reflect.TypeOf(q.SIGMAX32), constant.MakeInt64(int64(q.SIGMAX32))}, + "SIGMAX64": {reflect.TypeOf(q.SIGMAX64), constant.MakeInt64(int64(q.SIGMAX64))}, + "SIGMIGRATE": {reflect.TypeOf(q.SIGMIGRATE), constant.MakeInt64(int64(q.SIGMIGRATE))}, + "SIGMSG": {reflect.TypeOf(q.SIGMSG), constant.MakeInt64(int64(q.SIGMSG))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPRE": {reflect.TypeOf(q.SIGPRE), constant.MakeInt64(int64(q.SIGPRE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPTY": {reflect.TypeOf(q.SIGPTY), constant.MakeInt64(int64(q.SIGPTY))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGRECONFIG": {reflect.TypeOf(q.SIGRECONFIG), constant.MakeInt64(int64(q.SIGRECONFIG))}, + "SIGRETRACT": {reflect.TypeOf(q.SIGRETRACT), constant.MakeInt64(int64(q.SIGRETRACT))}, + "SIGSAK": {reflect.TypeOf(q.SIGSAK), constant.MakeInt64(int64(q.SIGSAK))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSOUND": {reflect.TypeOf(q.SIGSOUND), constant.MakeInt64(int64(q.SIGSOUND))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGSYSERROR": {reflect.TypeOf(q.SIGSYSERROR), constant.MakeInt64(int64(q.SIGSYSERROR))}, + "SIGTALRM": {reflect.TypeOf(q.SIGTALRM), constant.MakeInt64(int64(q.SIGTALRM))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVIRT": {reflect.TypeOf(q.SIGVIRT), constant.MakeInt64(int64(q.SIGVIRT))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWAITING": {reflect.TypeOf(q.SIGWAITING), constant.MakeInt64(int64(q.SIGWAITING))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_BYPASS": {"untyped int", constant.MakeInt64(int64(q.AF_BYPASS))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_INTF": {"untyped int", constant.MakeInt64(int64(q.AF_INTF))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NDD": {"untyped int", constant.MakeInt64(int64(q.AF_NDD))}, + "AF_NETWARE": {"untyped int", constant.MakeInt64(int64(q.AF_NETWARE))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_RIF": {"untyped int", constant.MakeInt64(int64(q.AF_RIF))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_802_3": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_802_3))}, + "ARPHRD_802_5": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_802_5))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.CSIOCGIFCONF))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSMAP_DIR": {"untyped string", constant.MakeString(string(q.CSMAP_DIR))}, + "CSTART": {"untyped rune", constant.MakeInt64(int64(q.CSTART))}, + "CSTOP": {"untyped rune", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ECH_ICMPID": {"untyped int", constant.MakeInt64(int64(q.ECH_ICMPID))}, + "ETHERNET_CSMACD": {"untyped int", constant.MakeInt64(int64(q.ETHERNET_CSMACD))}, + "EVENP": {"untyped int", constant.MakeInt64(int64(q.EVENP))}, + "EXCONTINUE": {"untyped int", constant.MakeInt64(int64(q.EXCONTINUE))}, + "EXDLOK": {"untyped int", constant.MakeInt64(int64(q.EXDLOK))}, + "EXIO": {"untyped int", constant.MakeInt64(int64(q.EXIO))}, + "EXPGIO": {"untyped int", constant.MakeInt64(int64(q.EXPGIO))}, + "EXRESUME": {"untyped int", constant.MakeInt64(int64(q.EXRESUME))}, + "EXRETURN": {"untyped int", constant.MakeInt64(int64(q.EXRETURN))}, + "EXSIG": {"untyped int", constant.MakeInt64(int64(q.EXSIG))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTRAP": {"untyped int", constant.MakeInt64(int64(q.EXTRAP))}, + "EYEC_RTENTRYA": {"untyped int", constant.MakeInt64(int64(q.EYEC_RTENTRYA))}, + "EYEC_RTENTRYF": {"untyped int", constant.MakeInt64(int64(q.EYEC_RTENTRYF))}, + "E_ACC": {"untyped int", constant.MakeInt64(int64(q.E_ACC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHBAND": {"untyped int", constant.MakeInt64(int64(q.FLUSHBAND))}, + "FLUSHLOW": {"untyped int", constant.MakeInt64(int64(q.FLUSHLOW))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "FLUSHR": {"untyped int", constant.MakeInt64(int64(q.FLUSHR))}, + "FLUSHRW": {"untyped int", constant.MakeInt64(int64(q.FLUSHRW))}, + "FLUSHW": {"untyped int", constant.MakeInt64(int64(q.FLUSHW))}, + "F_CLOSEM": {"untyped int", constant.MakeInt64(int64(q.F_CLOSEM))}, + "F_DUP2FD": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_TSTLK": {"untyped int", constant.MakeInt64(int64(q.F_TSTLK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICMP6_SEC_SEND_DEL": {"untyped int", constant.MakeInt64(int64(q.ICMP6_SEC_SEND_DEL))}, + "ICMP6_SEC_SEND_GET": {"untyped int", constant.MakeInt64(int64(q.ICMP6_SEC_SEND_GET))}, + "ICMP6_SEC_SEND_SET": {"untyped int", constant.MakeInt64(int64(q.ICMP6_SEC_SEND_SET))}, + "ICMP6_SEC_SEND_SET_CGA_ADDR": {"untyped int", constant.MakeInt64(int64(q.ICMP6_SEC_SEND_SET_CGA_ADDR))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_FIRSTALIAS": {"untyped int", constant.MakeInt64(int64(q.IFA_FIRSTALIAS))}, + "IFA_ROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_ROUTE))}, + "IFF_64BIT": {"untyped int", constant.MakeInt64(int64(q.IFF_64BIT))}, + "IFF_ALLCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLCAST))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BPF": {"untyped int", constant.MakeInt64(int64(q.IFF_BPF))}, + "IFF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_BRIDGE))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_CHECKSUM_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.IFF_CHECKSUM_OFFLOAD))}, + "IFF_D1": {"untyped int", constant.MakeInt64(int64(q.IFF_D1))}, + "IFF_D2": {"untyped int", constant.MakeInt64(int64(q.IFF_D2))}, + "IFF_D3": {"untyped int", constant.MakeInt64(int64(q.IFF_D3))}, + "IFF_D4": {"untyped int", constant.MakeInt64(int64(q.IFF_D4))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DEVHEALTH": {"untyped int", constant.MakeInt64(int64(q.IFF_DEVHEALTH))}, + "IFF_DO_HW_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_DO_HW_LOOPBACK))}, + "IFF_GROUP_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IFF_GROUP_ROUTING))}, + "IFF_IFBUFMGT": {"untyped int", constant.MakeInt64(int64(q.IFF_IFBUFMGT))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_NOECHO))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_PSEG": {"untyped int", constant.MakeInt64(int64(q.IFF_PSEG))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_SNAP": {"untyped int", constant.MakeInt64(int64(q.IFF_SNAP))}, + "IFF_TCP_DISABLE_CKSUM": {"untyped int", constant.MakeInt64(int64(q.IFF_TCP_DISABLE_CKSUM))}, + "IFF_TCP_NOCKSUM": {"untyped int", constant.MakeInt64(int64(q.IFF_TCP_NOCKSUM))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VIPA": {"untyped int", constant.MakeInt64(int64(q.IFF_VIPA))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFO_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IFO_FLUSH))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CLUSTER": {"untyped int", constant.MakeInt64(int64(q.IFT_CLUSTER))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FCS": {"untyped int", constant.MakeInt64(int64(q.IFT_FCS))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_GIFTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_GIFTUNNEL))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HF": {"untyped int", constant.MakeInt64(int64(q.IFT_HF))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IB": {"untyped int", constant.MakeInt64(int64(q.IFT_IB))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SN": {"untyped int", constant.MakeInt64(int64(q.IFT_SN))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SP": {"untyped int", constant.MakeInt64(int64(q.IFT_SP))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_VIPA": {"untyped int", constant.MakeInt64(int64(q.IFT_VIPA))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_USE": {"untyped int", constant.MakeInt64(int64(q.IN_USE))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_BIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BIP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GIF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GIF))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LOCAL))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_QOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_QOS))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADDR_PREFERENCES": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDR_PREFERENCES))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AIXRAWSOCKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_AIXRAWSOCKET))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FLOWINFO_FLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_FLOWLABEL))}, + "IPV6_FLOWINFO_PRIFLOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_PRIFLOW))}, + "IPV6_FLOWINFO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_PRIORITY))}, + "IPV6_FLOWINFO_SRFLAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_SRFLAG))}, + "IPV6_FLOWINFO_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_VERSION))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MIPDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIPDSTOPTS))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_NOPROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_NOPROBE))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTOPTIONS))}, + "IPV6_PRIORITY_10": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_10))}, + "IPV6_PRIORITY_11": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_11))}, + "IPV6_PRIORITY_12": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_12))}, + "IPV6_PRIORITY_13": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_13))}, + "IPV6_PRIORITY_14": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_14))}, + "IPV6_PRIORITY_15": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_15))}, + "IPV6_PRIORITY_8": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_8))}, + "IPV6_PRIORITY_9": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_9))}, + "IPV6_PRIORITY_BULK": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_BULK))}, + "IPV6_PRIORITY_CONTROL": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_CONTROL))}, + "IPV6_PRIORITY_FILLER": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_FILLER))}, + "IPV6_PRIORITY_INTERACTIVE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_INTERACTIVE))}, + "IPV6_PRIORITY_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_RESERVED1))}, + "IPV6_PRIORITY_RESERVED2": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_RESERVED2))}, + "IPV6_PRIORITY_UNATTENDED": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_UNATTENDED))}, + "IPV6_PRIORITY_UNCHARACTERIZED": {"untyped int", constant.MakeInt64(int64(q.IPV6_PRIORITY_UNCHARACTERIZED))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVHOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPS))}, + "IPV6_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVIF))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVSRCRT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVSRCRT))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RTHDR_TYPE_2": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_2))}, + "IPV6_SENDIF": {"untyped int", constant.MakeInt64(int64(q.IPV6_SENDIF))}, + "IPV6_SRFLAG_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_SRFLAG_LOOSE))}, + "IPV6_SRFLAG_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_SRFLAG_STRICT))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_TOKEN_LENGTH": {"untyped int", constant.MakeInt64(int64(q.IPV6_TOKEN_LENGTH))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IP_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IP_ADDRFORM))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_BROADCAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_BROADCAST_IF))}, + "IP_CACHE_LINE_SIZE": {"untyped int", constant.MakeInt64(int64(q.IP_CACHE_LINE_SIZE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DHCPMODE": {"untyped int", constant.MakeInt64(int64(q.IP_DHCPMODE))}, + "IP_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_DONTFRAG))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FINDPMTU": {"untyped int", constant.MakeInt64(int64(q.IP_FINDPMTU))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_INC_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_INC_MEMBERSHIPS))}, + "IP_INIT_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_INIT_MEMBERSHIP))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_HOPS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OPT": {"untyped int", constant.MakeInt64(int64(q.IP_OPT))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PMTUAGE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUAGE))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVIFINFO": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIFINFO))}, + "IP_RECVINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IP_RECVINTERFACE))}, + "IP_RECVMACHDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVMACHDR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_SOURCE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_SOURCE_FILTER))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_HOPS))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "I_FLUSH": {"untyped int", constant.MakeInt64(int64(q.I_FLUSH))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LNOFLSH": {"untyped int", constant.MakeInt64(int64(q.LNOFLSH))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MAP_VARIABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_VARIABLE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_ANY": {"untyped int", constant.MakeInt64(int64(q.MSG_ANY))}, + "MSG_ARGEXT": {"untyped int", constant.MakeInt64(int64(q.MSG_ARGEXT))}, + "MSG_BAND": {"untyped int", constant.MakeInt64(int64(q.MSG_BAND))}, + "MSG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.MSG_COMPAT))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_HIPRI": {"untyped int", constant.MakeInt64(int64(q.MSG_HIPRI))}, + "MSG_MAXIOVLEN": {"untyped int", constant.MakeInt64(int64(q.MSG_MAXIOVLEN))}, + "MSG_MPEG2": {"untyped int", constant.MakeInt64(int64(q.MSG_MPEG2))}, + "MSG_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MSG_NONBLOCK))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_EINTR": {"untyped int", constant.MakeInt64(int64(q.MS_EINTR))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_PER_SEC": {"untyped int", constant.MakeInt64(int64(q.MS_PER_SEC))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOFLUSH": {"untyped int", constant.MakeInt64(int64(q.NOFLUSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_CIO": {"untyped int", constant.MakeInt64(int64(q.O_CIO))}, + "O_CIOR": {"untyped int", constant.MakeInt64(int64(q.O_CIOR))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DEFER": {"untyped int", constant.MakeInt64(int64(q.O_DEFER))}, + "O_DELAY": {"untyped int", constant.MakeInt64(int64(q.O_DELAY))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EFSOFF": {"untyped int", constant.MakeInt64(int64(q.O_EFSOFF))}, + "O_EFSON": {"untyped int", constant.MakeInt64(int64(q.O_EFSON))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXEC": {"untyped int", constant.MakeInt64(int64(q.O_EXEC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.O_NOCACHE))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_NONE": {"untyped int", constant.MakeInt64(int64(q.O_NONE))}, + "O_NSHARE": {"untyped int", constant.MakeInt64(int64(q.O_NSHARE))}, + "O_RAW": {"untyped int", constant.MakeInt64(int64(q.O_RAW))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSHARE": {"untyped int", constant.MakeInt64(int64(q.O_RSHARE))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SEARCH": {"untyped int", constant.MakeInt64(int64(q.O_SEARCH))}, + "O_SNAPSHOT": {"untyped int", constant.MakeInt64(int64(q.O_SNAPSHOT))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_TTY_INIT": {"untyped int", constant.MakeInt64(int64(q.O_TTY_INIT))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PAREXT": {"untyped int", constant.MakeInt64(int64(q.PAREXT))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_64BIT": {"untyped int", constant.MakeInt64(int64(q.PR_64BIT))}, + "PR_ADDR": {"untyped int", constant.MakeInt64(int64(q.PR_ADDR))}, + "PR_ARGEXT": {"untyped int", constant.MakeInt64(int64(q.PR_ARGEXT))}, + "PR_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.PR_ATOMIC))}, + "PR_CONNREQUIRED": {"untyped int", constant.MakeInt64(int64(q.PR_CONNREQUIRED))}, + "PR_FASTHZ": {"untyped int", constant.MakeInt64(int64(q.PR_FASTHZ))}, + "PR_INP": {"untyped int", constant.MakeInt64(int64(q.PR_INP))}, + "PR_INTRLEVEL": {"untyped int", constant.MakeInt64(int64(q.PR_INTRLEVEL))}, + "PR_MLS": {"untyped int", constant.MakeInt64(int64(q.PR_MLS))}, + "PR_MLS_1_LABEL": {"untyped int", constant.MakeInt64(int64(q.PR_MLS_1_LABEL))}, + "PR_NOEOR": {"untyped int", constant.MakeInt64(int64(q.PR_NOEOR))}, + "PR_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.PR_RIGHTS))}, + "PR_SLOWHZ": {"untyped int", constant.MakeInt64(int64(q.PR_SLOWHZ))}, + "PR_WANTRCVD": {"untyped int", constant.MakeInt64(int64(q.PR_WANTRCVD))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PT_ATTACH))}, + "PT_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PT_CLEAR))}, + "PT_COMMAND_MAX": {"untyped int", constant.MakeInt64(int64(q.PT_COMMAND_MAX))}, + "PT_CONTINUE": {"untyped int", constant.MakeInt64(int64(q.PT_CONTINUE))}, + "PT_DETACH": {"untyped int", constant.MakeInt64(int64(q.PT_DETACH))}, + "PT_GET_UKEY": {"untyped int", constant.MakeInt64(int64(q.PT_GET_UKEY))}, + "PT_KILL": {"untyped int", constant.MakeInt64(int64(q.PT_KILL))}, + "PT_LDINFO": {"untyped int", constant.MakeInt64(int64(q.PT_LDINFO))}, + "PT_LDXINFO": {"untyped int", constant.MakeInt64(int64(q.PT_LDXINFO))}, + "PT_MULTI": {"untyped int", constant.MakeInt64(int64(q.PT_MULTI))}, + "PT_NEXT": {"untyped int", constant.MakeInt64(int64(q.PT_NEXT))}, + "PT_QUERY": {"untyped int", constant.MakeInt64(int64(q.PT_QUERY))}, + "PT_READ_BLOCK": {"untyped int", constant.MakeInt64(int64(q.PT_READ_BLOCK))}, + "PT_READ_D": {"untyped int", constant.MakeInt64(int64(q.PT_READ_D))}, + "PT_READ_FPR": {"untyped int", constant.MakeInt64(int64(q.PT_READ_FPR))}, + "PT_READ_GPR": {"untyped int", constant.MakeInt64(int64(q.PT_READ_GPR))}, + "PT_READ_I": {"untyped int", constant.MakeInt64(int64(q.PT_READ_I))}, + "PT_REATT": {"untyped int", constant.MakeInt64(int64(q.PT_REATT))}, + "PT_REGSET": {"untyped int", constant.MakeInt64(int64(q.PT_REGSET))}, + "PT_SET": {"untyped int", constant.MakeInt64(int64(q.PT_SET))}, + "PT_STEP": {"untyped int", constant.MakeInt64(int64(q.PT_STEP))}, + "PT_TRACE_ME": {"untyped int", constant.MakeInt64(int64(q.PT_TRACE_ME))}, + "PT_WATCH": {"untyped int", constant.MakeInt64(int64(q.PT_WATCH))}, + "PT_WRITE_BLOCK": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_BLOCK))}, + "PT_WRITE_D": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_D))}, + "PT_WRITE_FPR": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_FPR))}, + "PT_WRITE_GPR": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_GPR))}, + "PT_WRITE_I": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_I))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.RTA_DOWNSTREAM))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_ACTIVE_DGD": {"untyped int", constant.MakeInt64(int64(q.RTF_ACTIVE_DGD))}, + "RTF_BCE": {"untyped int", constant.MakeInt64(int64(q.RTF_BCE))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_BUL": {"untyped int", constant.MakeInt64(int64(q.RTF_BUL))}, + "RTF_CLONE": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONE))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FREE_IN_PROG": {"untyped int", constant.MakeInt64(int64(q.RTF_FREE_IN_PROG))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PERMANENT6": {"untyped int", constant.MakeInt64(int64(q.RTF_PERMANENT6))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_SMALLMTU": {"untyped int", constant.MakeInt64(int64(q.RTF_SMALLMTU))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_STOPSRCH": {"untyped int", constant.MakeInt64(int64(q.RTF_STOPSRCH))}, + "RTF_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTF_UNREACHABLE))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTM_EXPIRE))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_GETNEXT": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEXT))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTLOST": {"untyped int", constant.MakeInt64(int64(q.RTM_RTLOST))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_SAMEADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_SAMEADDR))}, + "RTM_SET": {"untyped int", constant.MakeInt64(int64(q.RTM_SET))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTM_VERSION_GR": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION_GR))}, + "RTM_VERSION_GR_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION_GR_COMPAT))}, + "RTM_VERSION_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION_POLICY))}, + "RTM_VERSION_POLICY_EXT": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION_POLICY_EXT))}, + "RTM_VERSION_POLICY_PRFN": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION_POLICY_PRFN))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIGQUEUE_MAX": {"untyped int", constant.MakeInt64(int64(q.SIGQUEUE_MAX))}, + "SIOCADDIFVIPA": {"untyped int", constant.MakeInt64(int64(q.SIOCADDIFVIPA))}, + "SIOCADDMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMTU))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCADDNETID))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELIFVIPA": {"untyped int", constant.MakeInt64(int64(q.SIOCDELIFVIPA))}, + "SIOCDELMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMTU))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELPMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCDELPMTU))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDNETOPT": {"untyped int", constant.MakeInt64(int64(q.SIOCDNETOPT))}, + "SIOCDX25XLATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDX25XLATE))}, + "SIOCFIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCFIFADDR))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGETMTUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGETMTUS))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFADDRS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDRS))}, + "SIOCGIFBAUDRATE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBAUDRATE))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCONFGLOB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONFGLOB))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGIDLIST": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGIDLIST))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFOPTIONS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFOPTIONS))}, + "SIOCGISNO": {"untyped int", constant.MakeInt64(int64(q.SIOCGISNO))}, + "SIOCGLOADF": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOADF))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGNETOPT": {"untyped int", constant.MakeInt64(int64(q.SIOCGNETOPT))}, + "SIOCGNETOPT1": {"untyped int", constant.MakeInt64(int64(q.SIOCGNETOPT1))}, + "SIOCGNMTUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGNMTUS))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGSIZIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGSIZIFCONF))}, + "SIOCGSRCFILTER": {"untyped int", constant.MakeInt64(int64(q.SIOCGSRCFILTER))}, + "SIOCGTUNEPHASE": {"untyped int", constant.MakeInt64(int64(q.SIOCGTUNEPHASE))}, + "SIOCGX25XLATE": {"untyped int", constant.MakeInt64(int64(q.SIOCGX25XLATE))}, + "SIOCIFATTACH": {"untyped int", constant.MakeInt64(int64(q.SIOCIFATTACH))}, + "SIOCIFDETACH": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDETACH))}, + "SIOCIFGETPKEY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGETPKEY))}, + "SIOCIF_ATM_DARP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_ATM_DARP))}, + "SIOCIF_ATM_DUMPARP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_ATM_DUMPARP))}, + "SIOCIF_ATM_GARP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_ATM_GARP))}, + "SIOCIF_ATM_IDLE": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_ATM_IDLE))}, + "SIOCIF_ATM_SARP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_ATM_SARP))}, + "SIOCIF_ATM_SNMPARP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_ATM_SNMPARP))}, + "SIOCIF_ATM_SVC": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_ATM_SVC))}, + "SIOCIF_ATM_UBR": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_ATM_UBR))}, + "SIOCIF_DEVHEALTH": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_DEVHEALTH))}, + "SIOCIF_IB_ARP_INCOMP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_ARP_INCOMP))}, + "SIOCIF_IB_ARP_TIMER": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_ARP_TIMER))}, + "SIOCIF_IB_CLEAR_PINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_CLEAR_PINFO))}, + "SIOCIF_IB_DEL_ARP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_DEL_ARP))}, + "SIOCIF_IB_DEL_PINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_DEL_PINFO))}, + "SIOCIF_IB_DUMP_ARP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_DUMP_ARP))}, + "SIOCIF_IB_GET_ARP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_GET_ARP))}, + "SIOCIF_IB_GET_INFO": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_GET_INFO))}, + "SIOCIF_IB_GET_STATS": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_GET_STATS))}, + "SIOCIF_IB_NOTIFY_ADDR_REM": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_NOTIFY_ADDR_REM))}, + "SIOCIF_IB_RESET_STATS": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_RESET_STATS))}, + "SIOCIF_IB_RESIZE_CQ": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_RESIZE_CQ))}, + "SIOCIF_IB_SET_ARP": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_SET_ARP))}, + "SIOCIF_IB_SET_PKEY": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_SET_PKEY))}, + "SIOCIF_IB_SET_PORT": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_SET_PORT))}, + "SIOCIF_IB_SET_QKEY": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_SET_QKEY))}, + "SIOCIF_IB_SET_QSIZE": {"untyped int", constant.MakeInt64(int64(q.SIOCIF_IB_SET_QSIZE))}, + "SIOCLISTIFVIPA": {"untyped int", constant.MakeInt64(int64(q.SIOCLISTIFVIPA))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSHIWAT": {"untyped int", constant.MakeUint64(uint64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFADDRORI": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDRORI))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGIDLIST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGIDLIST))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETDUMP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETDUMP))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFOPTIONS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFOPTIONS))}, + "SIOCSIFSUBCHAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSUBCHAN))}, + "SIOCSISNO": {"untyped int", constant.MakeInt64(int64(q.SIOCSISNO))}, + "SIOCSLOADF": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOADF))}, + "SIOCSLOWAT": {"untyped int", constant.MakeUint64(uint64(q.SIOCSLOWAT))}, + "SIOCSNETOPT": {"untyped int", constant.MakeInt64(int64(q.SIOCSNETOPT))}, + "SIOCSPGRP": {"untyped int", constant.MakeUint64(uint64(q.SIOCSPGRP))}, + "SIOCSX25XLATE": {"untyped int", constant.MakeInt64(int64(q.SIOCSX25XLATE))}, + "SOCK_CONN_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_CONN_DGRAM))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SO_AUDIT))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_CKSUMRECV": {"untyped int", constant.MakeInt64(int64(q.SO_CKSUMRECV))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_KERNACCEPT": {"untyped int", constant.MakeInt64(int64(q.SO_KERNACCEPT))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NOMULTIPATH": {"untyped int", constant.MakeInt64(int64(q.SO_NOMULTIPATH))}, + "SO_NOREUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_NOREUSEADDR))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERID": {"untyped int", constant.MakeInt64(int64(q.SO_PEERID))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_USE_IFBUFS": {"untyped int", constant.MakeInt64(int64(q.SO_USE_IFBUFS))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "S_BANDURG": {"untyped int", constant.MakeInt64(int64(q.S_BANDURG))}, + "S_EMODFMT": {"untyped int", constant.MakeInt64(int64(q.S_EMODFMT))}, + "S_ENFMT": {"untyped int", constant.MakeInt64(int64(q.S_ENFMT))}, + "S_ERROR": {"untyped int", constant.MakeInt64(int64(q.S_ERROR))}, + "S_HANGUP": {"untyped int", constant.MakeInt64(int64(q.S_HANGUP))}, + "S_HIPRI": {"untyped int", constant.MakeInt64(int64(q.S_HIPRI))}, + "S_ICRYPTO": {"untyped int", constant.MakeInt64(int64(q.S_ICRYPTO))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFJOURNAL": {"untyped int", constant.MakeInt64(int64(q.S_IFJOURNAL))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMPX": {"untyped int", constant.MakeInt64(int64(q.S_IFMPX))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFPDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFPDIR))}, + "S_IFPSDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFPSDIR))}, + "S_IFPSSDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFPSSDIR))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFSYSEA": {"untyped int", constant.MakeInt64(int64(q.S_IFSYSEA))}, + "S_INPUT": {"untyped int", constant.MakeInt64(int64(q.S_INPUT))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_ITCB": {"untyped int", constant.MakeInt64(int64(q.S_ITCB))}, + "S_ITP": {"untyped int", constant.MakeInt64(int64(q.S_ITP))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXACL": {"untyped int", constant.MakeInt64(int64(q.S_IXACL))}, + "S_IXATTR": {"untyped int", constant.MakeInt64(int64(q.S_IXATTR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXINTERFACE": {"untyped int", constant.MakeInt64(int64(q.S_IXINTERFACE))}, + "S_IXMOD": {"untyped int", constant.MakeInt64(int64(q.S_IXMOD))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "S_MSG": {"untyped int", constant.MakeInt64(int64(q.S_MSG))}, + "S_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.S_OUTPUT))}, + "S_RDBAND": {"untyped int", constant.MakeInt64(int64(q.S_RDBAND))}, + "S_RDNORM": {"untyped int", constant.MakeInt64(int64(q.S_RDNORM))}, + "S_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.S_RESERVED1))}, + "S_RESERVED2": {"untyped int", constant.MakeInt64(int64(q.S_RESERVED2))}, + "S_RESERVED3": {"untyped int", constant.MakeInt64(int64(q.S_RESERVED3))}, + "S_RESERVED4": {"untyped int", constant.MakeInt64(int64(q.S_RESERVED4))}, + "S_RESFMT1": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT1))}, + "S_RESFMT10": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT10))}, + "S_RESFMT11": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT11))}, + "S_RESFMT12": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT12))}, + "S_RESFMT2": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT2))}, + "S_RESFMT3": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT3))}, + "S_RESFMT4": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT4))}, + "S_RESFMT5": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT5))}, + "S_RESFMT6": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT6))}, + "S_RESFMT7": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT7))}, + "S_RESFMT8": {"untyped int", constant.MakeInt64(int64(q.S_RESFMT8))}, + "S_WRBAND": {"untyped int", constant.MakeInt64(int64(q.S_WRBAND))}, + "S_WRNORM": {"untyped int", constant.MakeInt64(int64(q.S_WRNORM))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_24DAYS_WORTH_OF_SLOWTICKS": {"untyped int", constant.MakeInt64(int64(q.TCP_24DAYS_WORTH_OF_SLOWTICKS))}, + "TCP_ACLADD": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLADD))}, + "TCP_ACLBIND": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLBIND))}, + "TCP_ACLCLEAR": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLCLEAR))}, + "TCP_ACLDEL": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLDEL))}, + "TCP_ACLDENY": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLDENY))}, + "TCP_ACLFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLFLUSH))}, + "TCP_ACLGID": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLGID))}, + "TCP_ACLLS": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLLS))}, + "TCP_ACLSUBNET": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLSUBNET))}, + "TCP_ACLUID": {"untyped int", constant.MakeInt64(int64(q.TCP_ACLUID))}, + "TCP_CWND_DF": {"untyped int", constant.MakeInt64(int64(q.TCP_CWND_DF))}, + "TCP_CWND_IF": {"untyped int", constant.MakeInt64(int64(q.TCP_CWND_IF))}, + "TCP_DELAY_ACK_FIN": {"untyped int", constant.MakeInt64(int64(q.TCP_DELAY_ACK_FIN))}, + "TCP_DELAY_ACK_SYN": {"untyped int", constant.MakeInt64(int64(q.TCP_DELAY_ACK_SYN))}, + "TCP_FASTNAME": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTNAME))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LSPRIV": {"untyped int", constant.MakeInt64(int64(q.TCP_LSPRIV))}, + "TCP_LUID": {"untyped int", constant.MakeInt64(int64(q.TCP_LUID))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXDF": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXDF))}, + "TCP_MAXIF": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXIF))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAXWINDOWSCALE": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWINDOWSCALE))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NODELAYACK": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAYACK))}, + "TCP_NOREDUCE_CWND_EXIT_FRXMT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOREDUCE_CWND_EXIT_FRXMT))}, + "TCP_NOREDUCE_CWND_IN_FRXMT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOREDUCE_CWND_IN_FRXMT))}, + "TCP_NOTENTER_SSTART": {"untyped int", constant.MakeInt64(int64(q.TCP_NOTENTER_SSTART))}, + "TCP_OPT": {"untyped int", constant.MakeInt64(int64(q.TCP_OPT))}, + "TCP_RFC1323": {"untyped int", constant.MakeInt64(int64(q.TCP_RFC1323))}, + "TCP_SETPRIV": {"untyped int", constant.MakeInt64(int64(q.TCP_SETPRIV))}, + "TCP_STDURG": {"untyped int", constant.MakeInt64(int64(q.TCP_STDURG))}, + "TCP_TIMESTAMP_OPTLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_TIMESTAMP_OPTLEN))}, + "TCP_UNSETPRIV": {"untyped int", constant.MakeInt64(int64(q.TCP_UNSETPRIV))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeUint64(uint64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCFLUSH": {"untyped int", constant.MakeUint64(uint64(q.TIOCFLUSH))}, + "TIOCGETC": {"untyped int", constant.MakeInt64(int64(q.TIOCGETC))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGETP": {"untyped int", constant.MakeInt64(int64(q.TIOCGETP))}, + "TIOCGLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCGLTC))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGSIZE))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCHPCL": {"untyped int", constant.MakeInt64(int64(q.TIOCHPCL))}, + "TIOCLBIC": {"untyped int", constant.MakeUint64(uint64(q.TIOCLBIC))}, + "TIOCLBIS": {"untyped int", constant.MakeUint64(uint64(q.TIOCLBIS))}, + "TIOCLGET": {"untyped int", constant.MakeInt64(int64(q.TIOCLGET))}, + "TIOCLSET": {"untyped int", constant.MakeUint64(uint64(q.TIOCLSET))}, + "TIOCMBIC": {"untyped int", constant.MakeUint64(uint64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeUint64(uint64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeUint64(uint64(q.TIOCMIWAIT))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeUint64(uint64(q.TIOCMODS))}, + "TIOCMSET": {"untyped int", constant.MakeUint64(uint64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeUint64(uint64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCREMOTE": {"untyped int", constant.MakeUint64(uint64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETC": {"untyped int", constant.MakeUint64(uint64(q.TIOCSETC))}, + "TIOCSETD": {"untyped int", constant.MakeUint64(uint64(q.TIOCSETD))}, + "TIOCSETN": {"untyped int", constant.MakeUint64(uint64(q.TIOCSETN))}, + "TIOCSETP": {"untyped int", constant.MakeUint64(uint64(q.TIOCSETP))}, + "TIOCSLTC": {"untyped int", constant.MakeUint64(uint64(q.TIOCSLTC))}, + "TIOCSPGRP": {"untyped int", constant.MakeUint64(uint64(q.TIOCSPGRP))}, + "TIOCSSIZE": {"untyped int", constant.MakeUint64(uint64(q.TIOCSSIZE))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTI": {"untyped int", constant.MakeUint64(uint64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeUint64(uint64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeUint64(uint64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCRD": {"untyped int", constant.MakeInt64(int64(q.VDISCRD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSTRT": {"untyped int", constant.MakeInt64(int64(q.VSTRT))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDELAY": {"untyped int", constant.MakeInt64(int64(q.VTDELAY))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERSE": {"untyped int", constant.MakeInt64(int64(q.VWERSE))}, + "WPARSTART": {"untyped int", constant.MakeInt64(int64(q.WPARSTART))}, + "WPARSTOP": {"untyped int", constant.MakeInt64(int64(q.WPARSTOP))}, + "WPARTTYNAME": {"untyped string", constant.MakeString(string(q.WPARTTYNAME))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_android_386.go b/pkg/syscall/go123_export_android_386.go new file mode 100755 index 00000000..66e9deab --- /dev/null +++ b/pkg/syscall/go123_export_android_386.go @@ -0,0 +1,2271 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/runtime/syscall": "syscall", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_PHY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_PHY))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "EPOLL_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.EPOLL_NONBLOCK))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_32BIT": {"untyped int", constant.MakeInt64(int64(q.MAP_32BIT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETFPXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPXREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETFPXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPXREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_THREAD_AREA))}, + "PTRACE_SINGLEBLOCK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLEBLOCK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_SYSEMU": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU))}, + "PTRACE_SYSEMU_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU_SINGLESTEP))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_BDFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_BDFLUSH))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN32))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FADVISE64_64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64_64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN32))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL64": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL64))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTATAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT64))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_FTIME))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FTRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE64))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID32))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETEUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID32))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID32))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETGROUPS32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS32))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID32))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRESUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID32))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID32))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_THREAD_AREA))}, + "SYS_GTTY": {"untyped int", constant.MakeInt64(int64(q.SYS_GTTY))}, + "SYS_IDLE": {"untyped int", constant.MakeInt64(int64(q.SYS_IDLE))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPERM": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPERM))}, + "SYS_IOPL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IPC": {"untyped int", constant.MakeInt64(int64(q.SYS_IPC))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LCHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN32))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_LOCK))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MADVISE1": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE1))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MMAP2": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP2))}, + "SYS_MODIFY_LDT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODIFY_LDT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MPX": {"untyped int", constant.MakeInt64(int64(q.SYS_MPX))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_NICE": {"untyped int", constant.MakeInt64(int64(q.SYS_NICE))}, + "SYS_OLDFSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDFSTAT))}, + "SYS_OLDLSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDLSTAT))}, + "SYS_OLDOLDUNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDOLDUNAME))}, + "SYS_OLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDSTAT))}, + "SYS_OLDUNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDUNAME))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROF": {"untyped int", constant.MakeInt64(int64(q.SYS_PROF))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_READDIR))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDFILE64": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE64))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID32))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETFSUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID32))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID32))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETGROUPS32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS32))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID32))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID32))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETRESUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID32))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETREUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID32))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID32))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_THREAD_AREA))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SGETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SGETMASK))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNAL))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKETCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETCALL))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_SSETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSETMASK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STIME": {"untyped int", constant.MakeInt64(int64(q.SYS_STIME))}, + "SYS_STTY": {"untyped int", constant.MakeInt64(int64(q.SYS_STTY))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE64))}, + "SYS_UGETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_UGETRLIMIT))}, + "SYS_ULIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_ULIMIT))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VM86": {"untyped int", constant.MakeInt64(int64(q.SYS_VM86))}, + "SYS_VM86OLD": {"untyped int", constant.MakeInt64(int64(q.SYS_VM86OLD))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITPID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITPID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LLSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS__LLSEEK))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_android_amd64.go b/pkg/syscall/go123_export_android_amd64.go new file mode 100755 index 00000000..794a711b --- /dev/null +++ b/pkg/syscall/go123_export_android_amd64.go @@ -0,0 +1,2237 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/runtime/syscall": "syscall", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_PHY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_PHY))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "EPOLL_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.EPOLL_NONBLOCK))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_32BIT": {"untyped int", constant.MakeInt64(int64(q.MAP_32BIT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ARCH_PRCTL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ARCH_PRCTL))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETFPXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPXREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETFPXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPXREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_THREAD_AREA))}, + "PTRACE_SINGLEBLOCK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLEBLOCK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_SYSEMU": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU))}, + "PTRACE_SYSEMU_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU_SINGLESTEP))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_ARCH_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_ARCH_PRCTL))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_CTL_OLD": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL_OLD))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EPOLL_WAIT_OLD": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT_OLD))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_THREAD_AREA))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPERM": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPERM))}, + "SYS_IOPL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODIFY_LDT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODIFY_LDT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NEWFSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NEWFSTATAT))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SECURITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SECURITY))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_THREAD_AREA))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TUXCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_TUXCALL))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_android_arm.go b/pkg/syscall/go123_export_android_arm.go new file mode 100755 index 00000000..3cc68bf3 --- /dev/null +++ b/pkg/syscall/go123_export_android_arm.go @@ -0,0 +1,2290 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/runtime/syscall": "syscall", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_PHY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_PHY))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ELF_NGREG": {"untyped int", constant.MakeInt64(int64(q.ELF_NGREG))}, + "ELF_PRARGSZ": {"untyped int", constant.MakeInt64(int64(q.ELF_PRARGSZ))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "EPOLL_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.EPOLL_NONBLOCK))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_CLEAR_SECCOMP_FILTER": {"untyped int", constant.MakeInt64(int64(q.PR_CLEAR_SECCOMP_FILTER))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECCOMP_FILTER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP_FILTER))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SECCOMP_FILTER_EVENT": {"untyped int", constant.MakeInt64(int64(q.PR_SECCOMP_FILTER_EVENT))}, + "PR_SECCOMP_FILTER_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PR_SECCOMP_FILTER_SYSCALL))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECCOMP_FILTER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP_FILTER))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETCRUNCHREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETCRUNCHREGS))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETHBPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETHBPREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETVFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETVFPREGS))}, + "PTRACE_GETWMMXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETWMMXREGS))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SETCRUNCHREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETCRUNCHREGS))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETHBPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETHBPREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETVFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETVFPREGS))}, + "PTRACE_SETWMMXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETWMMXREGS))}, + "PTRACE_SET_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_SYSCALL))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_DATA_ADDR": {"untyped int", constant.MakeInt64(int64(q.PT_DATA_ADDR))}, + "PT_TEXT_ADDR": {"untyped int", constant.MakeInt64(int64(q.PT_TEXT_ADDR))}, + "PT_TEXT_END_ADDR": {"untyped int", constant.MakeInt64(int64(q.PT_TEXT_END_ADDR))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_ARM_FADVISE64_64": {"untyped int", constant.MakeInt64(int64(q.SYS_ARM_FADVISE64_64))}, + "SYS_ARM_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_ARM_SYNC_FILE_RANGE))}, + "SYS_BDFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_BDFLUSH))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN32))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN32))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL64": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL64))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTATAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT64))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FTRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE64))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID32))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETEUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID32))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID32))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETGROUPS32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS32))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID32))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRESUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID32))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID32))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IPC": {"untyped int", constant.MakeInt64(int64(q.SYS_IPC))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LCHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN32))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MMAP2": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP2))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_NICE": {"untyped int", constant.MakeInt64(int64(q.SYS_NICE))}, + "SYS_OABI_SYSCALL_BASE": {"untyped int", constant.MakeInt64(int64(q.SYS_OABI_SYSCALL_BASE))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PCICONFIG_IOBASE": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_IOBASE))}, + "SYS_PCICONFIG_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_READ))}, + "SYS_PCICONFIG_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_WRITE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_READDIR))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECV": {"untyped int", constant.MakeInt64(int64(q.SYS_RECV))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SEND))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDFILE64": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE64))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID32))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETFSUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID32))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID32))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETGROUPS32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS32))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID32))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID32))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETRESUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID32))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETREUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID32))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID32))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETCALL))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STIME": {"untyped int", constant.MakeInt64(int64(q.SYS_STIME))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL))}, + "SYS_SYSCALL_BASE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL_BASE))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE64))}, + "SYS_UGETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_UGETRLIMIT))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LLSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS__LLSEEK))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_android_arm64.go b/pkg/syscall/go123_export_android_arm64.go new file mode 100755 index 00000000..6889941e --- /dev/null +++ b/pkg/syscall/go123_export_android_arm64.go @@ -0,0 +1,2381 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/runtime/syscall": "syscall", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatat": reflect.ValueOf(q.Fstatat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VSOCK": {"untyped int", constant.MakeInt64(int64(q.AF_VSOCK))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PRP))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_802_1Q_VLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_802_1Q_VLAN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BONDING": {"untyped int", constant.MakeInt64(int64(q.IFF_BONDING))}, + "IFF_BRIDGE_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_BRIDGE_PORT))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DISABLE_NETPOLL": {"untyped int", constant.MakeInt64(int64(q.IFF_DISABLE_NETPOLL))}, + "IFF_DONT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_DONT_BRIDGE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_EBRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_EBRIDGE))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_ISATAP": {"untyped int", constant.MakeInt64(int64(q.IFF_ISATAP))}, + "IFF_LIVE_ADDR_CHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_LIVE_ADDR_CHANGE))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MACVLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN))}, + "IFF_MACVLAN_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN_PORT))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MASTER_8023AD": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_8023AD))}, + "IFF_MASTER_ALB": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ALB))}, + "IFF_MASTER_ARPMON": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ARPMON))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_OVS_DATAPATH": {"untyped int", constant.MakeInt64(int64(q.IFF_OVS_DATAPATH))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_SLAVE_INACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_INACTIVE))}, + "IFF_SLAVE_NEEDARP": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_NEEDARP))}, + "IFF_SUPP_NOFCS": {"untyped int", constant.MakeInt64(int64(q.IFF_SUPP_NOFCS))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TEAM_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_TEAM_PORT))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_TX_SKB_SHARING": {"untyped int", constant.MakeInt64(int64(q.IFF_TX_SKB_SHARING))}, + "IFF_UNICAST_FLT": {"untyped int", constant.MakeInt64(int64(q.IFF_UNICAST_FLT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFF_WAN_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFF_WAN_HDLC))}, + "IFF_XMIT_DST_RELEASE": {"untyped int", constant.MakeInt64(int64(q.IFF_XMIT_DST_RELEASE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_BEETPH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BEETPH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_HUGE_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_MASK))}, + "MAP_HUGE_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_SHIFT))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TMPFILE": {"untyped int", constant.MakeInt64(int64(q.O_TMPFILE))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_MAX_PACING_RATE": {"untyped int", constant.MakeInt64(int64(q.SO_MAX_PACING_RATE))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_ARCH_SPECIFIC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_ARCH_SPECIFIC_SYSCALL))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BPF": {"untyped int", constant.MakeInt64(int64(q.SYS_BPF))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXECVEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVEAT))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FINIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_FINIT_MODULE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRANDOM": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRANDOM))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_KCMP": {"untyped int", constant.MakeInt64(int64(q.SYS_KCMP))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MEMFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_MEMFD_CREATE))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_RENAMEAT2": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT2))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETATTR))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETATTR))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.SYS_SECCOMP))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYNC_FILE_RANGE2": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE2))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_COOKIE_IN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_IN_ALWAYS))}, + "TCP_COOKIE_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MAX))}, + "TCP_COOKIE_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MIN))}, + "TCP_COOKIE_OUT_NEVER": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_OUT_NEVER))}, + "TCP_COOKIE_PAIR_SIZE": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_PAIR_SIZE))}, + "TCP_COOKIE_TRANSACTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_TRANSACTIONS))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_MSS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DEFAULT))}, + "TCP_MSS_DESIRED": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DESIRED))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUEUE_SEQ": {"untyped int", constant.MakeInt64(int64(q.TCP_QUEUE_SEQ))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_REPAIR": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR))}, + "TCP_REPAIR_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OPTIONS))}, + "TCP_REPAIR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_QUEUE))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_S_DATA_IN": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_IN))}, + "TCP_S_DATA_OUT": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_OUT))}, + "TCP_THIN_DUPACK": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_DUPACK))}, + "TCP_THIN_LINEAR_TIMEOUTS": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_LINEAR_TIMEOUTS))}, + "TCP_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_TIMESTAMP))}, + "TCP_USER_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_USER_TIMEOUT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_darwin_amd64.go b/pkg/syscall/go123_export_darwin_amd64.go new file mode 100755 index 00000000..53cbc7ae --- /dev/null +++ b/pkg/syscall/go123_export_darwin_amd64.go @@ -0,0 +1,1950 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "Fbootstraptransfer_t": reflect.TypeOf((*q.Fbootstraptransfer_t)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "Fstore_t": reflect.TypeOf((*q.Fstore_t)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "IfmaMsghdr2": reflect.TypeOf((*q.IfmaMsghdr2)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Log2phys_t": reflect.TypeOf((*q.Log2phys_t)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Radvisory_t": reflect.TypeOf((*q.Radvisory_t)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timeval32": reflect.TypeOf((*q.Timeval32)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exchangedata": reflect.ValueOf(q.Exchangedata), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setprivexec": reflect.ValueOf(q.Setprivexec), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADARCH": {reflect.TypeOf(q.EBADARCH), constant.MakeInt64(int64(q.EBADARCH))}, + "EBADEXEC": {reflect.TypeOf(q.EBADEXEC), constant.MakeInt64(int64(q.EBADEXEC))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMACHO": {reflect.TypeOf(q.EBADMACHO), constant.MakeInt64(int64(q.EBADMACHO))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDEVERR": {reflect.TypeOf(q.EDEVERR), constant.MakeInt64(int64(q.EDEVERR))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPOLICY": {reflect.TypeOf(q.ENOPOLICY), constant.MakeInt64(int64(q.ENOPOLICY))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "EPWROFF": {reflect.TypeOf(q.EPWROFF), constant.MakeInt64(int64(q.EPWROFF))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHLIBVERS": {reflect.TypeOf(q.ESHLIBVERS), constant.MakeInt64(int64(q.ESHLIBVERS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NDRV": {"untyped int", constant.MakeInt64(int64(q.AF_NDRV))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PPP": {"untyped int", constant.MakeInt64(int64(q.AF_PPP))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_RESERVED_36": {"untyped int", constant.MakeInt64(int64(q.AF_RESERVED_36))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.AF_SYSTEM))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_FS": {"untyped int", constant.MakeInt64(int64(q.EVFILT_FS))}, + "EVFILT_MACHPORT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_MACHPORT))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_THREADMARKER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_THREADMARKER))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_USER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_USER))}, + "EVFILT_VM": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VM))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG0": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG0))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_OOBAND": {"untyped int", constant.MakeInt64(int64(q.EV_OOBAND))}, + "EV_POLL": {"untyped int", constant.MakeInt64(int64(q.EV_POLL))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_ADDFILESIGS": {"untyped int", constant.MakeInt64(int64(q.F_ADDFILESIGS))}, + "F_ADDSIGS": {"untyped int", constant.MakeInt64(int64(q.F_ADDSIGS))}, + "F_ALLOCATEALL": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCATEALL))}, + "F_ALLOCATECONTIG": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCATECONTIG))}, + "F_CHKCLEAN": {"untyped int", constant.MakeInt64(int64(q.F_CHKCLEAN))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FLUSH_DATA": {"untyped int", constant.MakeInt64(int64(q.F_FLUSH_DATA))}, + "F_FREEZE_FS": {"untyped int", constant.MakeInt64(int64(q.F_FREEZE_FS))}, + "F_FULLFSYNC": {"untyped int", constant.MakeInt64(int64(q.F_FULLFSYNC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLKPID": {"untyped int", constant.MakeInt64(int64(q.F_GETLKPID))}, + "F_GETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_GETNOSIGPIPE))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETPATH": {"untyped int", constant.MakeInt64(int64(q.F_GETPATH))}, + "F_GETPATH_MTMINFO": {"untyped int", constant.MakeInt64(int64(q.F_GETPATH_MTMINFO))}, + "F_GETPROTECTIONCLASS": {"untyped int", constant.MakeInt64(int64(q.F_GETPROTECTIONCLASS))}, + "F_GLOBAL_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.F_GLOBAL_NOCACHE))}, + "F_LOG2PHYS": {"untyped int", constant.MakeInt64(int64(q.F_LOG2PHYS))}, + "F_LOG2PHYS_EXT": {"untyped int", constant.MakeInt64(int64(q.F_LOG2PHYS_EXT))}, + "F_MARKDEPENDENCY": {"untyped int", constant.MakeInt64(int64(q.F_MARKDEPENDENCY))}, + "F_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.F_NOCACHE))}, + "F_NODIRECT": {"untyped int", constant.MakeInt64(int64(q.F_NODIRECT))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_PATHPKG_CHECK": {"untyped int", constant.MakeInt64(int64(q.F_PATHPKG_CHECK))}, + "F_PEOFPOSMODE": {"untyped int", constant.MakeInt64(int64(q.F_PEOFPOSMODE))}, + "F_PREALLOCATE": {"untyped int", constant.MakeInt64(int64(q.F_PREALLOCATE))}, + "F_RDADVISE": {"untyped int", constant.MakeInt64(int64(q.F_RDADVISE))}, + "F_RDAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_RDAHEAD))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_READBOOTSTRAP": {"untyped int", constant.MakeInt64(int64(q.F_READBOOTSTRAP))}, + "F_SETBACKINGSTORE": {"untyped int", constant.MakeInt64(int64(q.F_SETBACKINGSTORE))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_SETNOSIGPIPE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETPROTECTIONCLASS": {"untyped int", constant.MakeInt64(int64(q.F_SETPROTECTIONCLASS))}, + "F_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.F_SETSIZE))}, + "F_THAW_FS": {"untyped int", constant.MakeInt64(int64(q.F_THAW_FS))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_VOLPOSMODE": {"untyped int", constant.MakeInt64(int64(q.F_VOLPOSMODE))}, + "F_WRITEBOOTSTRAP": {"untyped int", constant.MakeInt64(int64(q.F_WRITEBOOTSTRAP))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CELLULAR": {"untyped int", constant.MakeInt64(int64(q.IFT_CELLULAR))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PDP": {"untyped int", constant.MakeInt64(int64(q.IFT_PDP))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LINKLOCALNETNUM": {"untyped int", constant.MakeInt64(int64(q.IN_LINKLOCALNETNUM))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292NEXTHOP))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_BOUND_IF))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXOPTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXOPTHDR))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_GROUP_SRC_FILTER))}, + "IPV6_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_MEMBERSHIPS))}, + "IPV6_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_SOCK_SRC_FILTER))}, + "IPV6_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIN_MEMBERSHIPS))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IP_BOUND_IF))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_GROUP_SRC_FILTER))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MAX_SOCK_MUTE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_MUTE_FILTER))}, + "IP_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_SRC_FILTER))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_IFINDEX": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IFINDEX))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_NAT__XXX": {"untyped int", constant.MakeInt64(int64(q.IP_NAT__XXX))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OLD_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_ADD))}, + "IP_OLD_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_DEL))}, + "IP_OLD_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_FLUSH))}, + "IP_OLD_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_GET))}, + "IP_OLD_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_RESETLOG))}, + "IP_OLD_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_ZERO))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_RECVPKTINFO))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_STRIPHDR": {"untyped int", constant.MakeInt64(int64(q.IP_STRIPHDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRAFFIC_MGT_BACKGROUND": {"untyped int", constant.MakeInt64(int64(q.IP_TRAFFIC_MGT_BACKGROUND))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_CAN_REUSE": {"untyped int", constant.MakeInt64(int64(q.MADV_CAN_REUSE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_FREE_REUSABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE_REUSABLE))}, + "MADV_FREE_REUSE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE_REUSE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MADV_ZERO_WIRED_PAGES": {"untyped int", constant.MakeInt64(int64(q.MADV_ZERO_WIRED_PAGES))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_JIT": {"untyped int", constant.MakeInt64(int64(q.MAP_JIT))}, + "MAP_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCACHE))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_RESERVED0080": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0080))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_FLUSH": {"untyped int", constant.MakeInt64(int64(q.MSG_FLUSH))}, + "MSG_HAVEMORE": {"untyped int", constant.MakeInt64(int64(q.MSG_HAVEMORE))}, + "MSG_HOLD": {"untyped int", constant.MakeInt64(int64(q.MSG_HOLD))}, + "MSG_NEEDSA": {"untyped int", constant.MakeInt64(int64(q.MSG_NEEDSA))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_RCVMORE": {"untyped int", constant.MakeInt64(int64(q.MSG_RCVMORE))}, + "MSG_SEND": {"untyped int", constant.MakeInt64(int64(q.MSG_SEND))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITSTREAM": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITSTREAM))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_DEACTIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_DEACTIVATE))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_KILLPAGES": {"untyped int", constant.MakeInt64(int64(q.MS_KILLPAGES))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_DUMP2": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP2))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFLIST2": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST2))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_STAT": {"untyped int", constant.MakeInt64(int64(q.NET_RT_STAT))}, + "NET_RT_TRASH": {"untyped int", constant.MakeInt64(int64(q.NET_RT_TRASH))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ABSOLUTE": {"untyped int", constant.MakeInt64(int64(q.NOTE_ABSOLUTE))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXITSTATUS": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXITSTATUS))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FFAND": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFAND))}, + "NOTE_FFCOPY": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCOPY))}, + "NOTE_FFCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCTRLMASK))}, + "NOTE_FFLAGSMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFLAGSMASK))}, + "NOTE_FFNOP": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFNOP))}, + "NOTE_FFOR": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFOR))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_NONE": {"untyped int", constant.MakeInt64(int64(q.NOTE_NONE))}, + "NOTE_NSECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_NSECONDS))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_REAP": {"untyped int", constant.MakeInt64(int64(q.NOTE_REAP))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_RESOURCEEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_RESOURCEEND))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_SECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_SECONDS))}, + "NOTE_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.NOTE_SIGNAL))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRIGGER": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRIGGER))}, + "NOTE_USECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_USECONDS))}, + "NOTE_VM_ERROR": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_ERROR))}, + "NOTE_VM_PRESSURE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE))}, + "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE_SUDDEN_TERMINATE))}, + "NOTE_VM_PRESSURE_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE_TERMINATE))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_ALERT": {"untyped int", constant.MakeInt64(int64(q.O_ALERT))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EVTONLY": {"untyped int", constant.MakeInt64(int64(q.O_EVTONLY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_POPUP": {"untyped int", constant.MakeInt64(int64(q.O_POPUP))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.O_SYMLINK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PT_ATTACH))}, + "PT_ATTACHEXC": {"untyped int", constant.MakeInt64(int64(q.PT_ATTACHEXC))}, + "PT_CONTINUE": {"untyped int", constant.MakeInt64(int64(q.PT_CONTINUE))}, + "PT_DENY_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PT_DENY_ATTACH))}, + "PT_DETACH": {"untyped int", constant.MakeInt64(int64(q.PT_DETACH))}, + "PT_FIRSTMACH": {"untyped int", constant.MakeInt64(int64(q.PT_FIRSTMACH))}, + "PT_FORCEQUOTA": {"untyped int", constant.MakeInt64(int64(q.PT_FORCEQUOTA))}, + "PT_KILL": {"untyped int", constant.MakeInt64(int64(q.PT_KILL))}, + "PT_READ_D": {"untyped int", constant.MakeInt64(int64(q.PT_READ_D))}, + "PT_READ_I": {"untyped int", constant.MakeInt64(int64(q.PT_READ_I))}, + "PT_READ_U": {"untyped int", constant.MakeInt64(int64(q.PT_READ_U))}, + "PT_SIGEXC": {"untyped int", constant.MakeInt64(int64(q.PT_SIGEXC))}, + "PT_STEP": {"untyped int", constant.MakeInt64(int64(q.PT_STEP))}, + "PT_THUPDATE": {"untyped int", constant.MakeInt64(int64(q.PT_THUPDATE))}, + "PT_TRACE_ME": {"untyped int", constant.MakeInt64(int64(q.PT_TRACE_ME))}, + "PT_WRITE_D": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_D))}, + "PT_WRITE_I": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_I))}, + "PT_WRITE_U": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_U))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_CONDEMNED": {"untyped int", constant.MakeInt64(int64(q.RTF_CONDEMNED))}, + "RTF_DELCLONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DELCLONE))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_IFREF": {"untyped int", constant.MakeInt64(int64(q.RTF_IFREF))}, + "RTF_IFSCOPE": {"untyped int", constant.MakeInt64(int64(q.RTF_IFSCOPE))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WASCLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_WASCLONED))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_GET2": {"untyped int", constant.MakeInt64(int64(q.RTM_GET2))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_IFINFO2": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO2))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_NEWMADDR2": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR2))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMP_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP_MONOTONIC))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCARPIPLL": {"untyped int", constant.MakeInt64(int64(q.SIOCARPIPLL))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCAUTOADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAUTOADDR))}, + "SIOCAUTONETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCAUTONETMASK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVLAN))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFALTMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFALTMTU))}, + "SIOCGIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFASYNCMAP))}, + "SIOCGIFBOND": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBOND))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDEVMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDEVMTU))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFKPI": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFKPI))}, + "SIOCGIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGIFVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFVLAN))}, + "SIOCGIFWAKEFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFWAKEFLAGS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCRSLVMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCRSLVMULTI))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSETVLAN))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFALTMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFALTMTU))}, + "SIOCSIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFASYNCMAP))}, + "SIOCSIFBOND": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBOND))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFKPI": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFKPI))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFVLAN))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_DONTTRUNC": {"untyped int", constant.MakeInt64(int64(q.SO_DONTTRUNC))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LABEL": {"untyped int", constant.MakeInt64(int64(q.SO_LABEL))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LINGER_SEC": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER_SEC))}, + "SO_NKE": {"untyped int", constant.MakeInt64(int64(q.SO_NKE))}, + "SO_NOADDRERR": {"untyped int", constant.MakeInt64(int64(q.SO_NOADDRERR))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_NOTIFYCONFLICT": {"untyped int", constant.MakeInt64(int64(q.SO_NOTIFYCONFLICT))}, + "SO_NP_EXTENSIONS": {"untyped int", constant.MakeInt64(int64(q.SO_NP_EXTENSIONS))}, + "SO_NREAD": {"untyped int", constant.MakeInt64(int64(q.SO_NREAD))}, + "SO_NWRITE": {"untyped int", constant.MakeInt64(int64(q.SO_NWRITE))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERLABEL": {"untyped int", constant.MakeInt64(int64(q.SO_PEERLABEL))}, + "SO_RANDOMPORT": {"untyped int", constant.MakeInt64(int64(q.SO_RANDOMPORT))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_RESTRICTIONS": {"untyped int", constant.MakeInt64(int64(q.SO_RESTRICTIONS))}, + "SO_RESTRICT_DENYIN": {"untyped int", constant.MakeInt64(int64(q.SO_RESTRICT_DENYIN))}, + "SO_RESTRICT_DENYOUT": {"untyped int", constant.MakeInt64(int64(q.SO_RESTRICT_DENYOUT))}, + "SO_RESTRICT_DENYSET": {"untyped int", constant.MakeInt64(int64(q.SO_RESTRICT_DENYSET))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_REUSESHAREUID": {"untyped int", constant.MakeInt64(int64(q.SO_REUSESHAREUID))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMP_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP_MONOTONIC))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_UPCALLCLOSEWAIT": {"untyped int", constant.MakeInt64(int64(q.SO_UPCALLCLOSEWAIT))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_WANTMORE": {"untyped int", constant.MakeInt64(int64(q.SO_WANTMORE))}, + "SO_WANTOOBFLAG": {"untyped int", constant.MakeInt64(int64(q.SO_WANTOOBFLAG))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT_NOCANCEL))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCESS_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS_EXTENDED))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_PROFIL))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AIO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_CANCEL))}, + "SYS_AIO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_ERROR))}, + "SYS_AIO_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_FSYNC))}, + "SYS_AIO_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_READ))}, + "SYS_AIO_RETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_RETURN))}, + "SYS_AIO_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND))}, + "SYS_AIO_SUSPEND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND_NOCANCEL))}, + "SYS_AIO_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WRITE))}, + "SYS_ATGETMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_ATGETMSG))}, + "SYS_ATPGETREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPGETREQ))}, + "SYS_ATPGETRSP": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPGETRSP))}, + "SYS_ATPSNDREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPSNDREQ))}, + "SYS_ATPSNDRSP": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPSNDRSP))}, + "SYS_ATPUTMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPUTMSG))}, + "SYS_ATSOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_ATSOCKET))}, + "SYS_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT))}, + "SYS_AUDITCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITCTL))}, + "SYS_AUDITON": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITON))}, + "SYS_AUDIT_SESSION_JOIN": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_JOIN))}, + "SYS_AUDIT_SESSION_PORT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_PORT))}, + "SYS_AUDIT_SESSION_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_SELF))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BSDTHREAD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_CREATE))}, + "SYS_BSDTHREAD_REGISTER": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_REGISTER))}, + "SYS_BSDTHREAD_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_TERMINATE))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHMOD_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD_EXTENDED))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CHUD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHUD))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE_NOCANCEL))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CONNECT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT_NOCANCEL))}, + "SYS_COPYFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_COPYFILE))}, + "SYS_CSOPS": {"untyped int", constant.MakeInt64(int64(q.SYS_CSOPS))}, + "SYS_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EXCHANGEDATA": {"untyped int", constant.MakeInt64(int64(q.SYS_EXCHANGEDATA))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMOD_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD_EXTENDED))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL_NOCANCEL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FFSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FFSCTL))}, + "SYS_FGETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETATTRLIST))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FILEPORT_MAKEFD": {"untyped int", constant.MakeInt64(int64(q.SYS_FILEPORT_MAKEFD))}, + "SYS_FILEPORT_MAKEPORT": {"untyped int", constant.MakeInt64(int64(q.SYS_FILEPORT_MAKEPORT))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FSCTL))}, + "SYS_FSETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETATTRLIST))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSGETPATH": {"untyped int", constant.MakeInt64(int64(q.SYS_FSGETPATH))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64_EXTENDED))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSTATV": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATV))}, + "SYS_FSTAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT_EXTENDED))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FSYNC_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC_NOCANCEL))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GETATTRLIST))}, + "SYS_GETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT))}, + "SYS_GETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT_ADDR))}, + "SYS_GETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUID))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDIRENTRIES64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES64))}, + "SYS_GETDIRENTRIESATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIESATTR))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETFSSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT64))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETHOSTUUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETHOSTUUID))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLCID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLCID))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSGROUPS))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETWGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETWGROUPS))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_IDENTITYSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_IDENTITYSVC))}, + "SYS_INITGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_INITGROUPS))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPOLICYSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPOLICYSYS))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KDEBUG_TRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KDEBUG_TRACE))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KEVENT64": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT64))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LIO_LISTIO": {"untyped int", constant.MakeInt64(int64(q.SYS_LIO_LISTIO))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_LSTAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64_EXTENDED))}, + "SYS_LSTATV": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTATV))}, + "SYS_LSTAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT_EXTENDED))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MAXSYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MAXSYSCALL))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKCOMPLEX": {"untyped int", constant.MakeInt64(int64(q.SYS_MKCOMPLEX))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIR_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR_EXTENDED))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFO_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO_EXTENDED))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODWATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_MODWATCH))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGRCV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV_NOCANCEL))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSGSND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND_NOCANCEL))}, + "SYS_MSGSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSYS))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MSYNC_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC_NOCANCEL))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NFSCLNT": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSCLNT))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPEN_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_EXTENDED))}, + "SYS_OPEN_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_NOCANCEL))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PID_HIBERNATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_HIBERNATE))}, + "SYS_PID_RESUME": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_RESUME))}, + "SYS_PID_SHUTDOWN_SOCKETS": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_SHUTDOWN_SOCKETS))}, + "SYS_PID_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_SUSPEND))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POLL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL_NOCANCEL))}, + "SYS_POSIX_SPAWN": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_SPAWN))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREAD_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD_NOCANCEL))}, + "SYS_PROCESS_POLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_POLICY))}, + "SYS_PROC_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_PROC_INFO))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSYNCH_CVBROAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVBROAD))}, + "SYS_PSYNCH_CVCLRPREPOST": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVCLRPREPOST))}, + "SYS_PSYNCH_CVSIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVSIGNAL))}, + "SYS_PSYNCH_CVWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVWAIT))}, + "SYS_PSYNCH_MUTEXDROP": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_MUTEXDROP))}, + "SYS_PSYNCH_MUTEXWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_MUTEXWAIT))}, + "SYS_PSYNCH_RW_DOWNGRADE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_DOWNGRADE))}, + "SYS_PSYNCH_RW_LONGRDLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_LONGRDLOCK))}, + "SYS_PSYNCH_RW_RDLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_RDLOCK))}, + "SYS_PSYNCH_RW_UNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UNLOCK))}, + "SYS_PSYNCH_RW_UNLOCK2": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UNLOCK2))}, + "SYS_PSYNCH_RW_UPGRADE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UPGRADE))}, + "SYS_PSYNCH_RW_WRLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_WRLOCK))}, + "SYS_PSYNCH_RW_YIELDWRLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_YIELDWRLOCK))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE_NOCANCEL))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_READV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_READV_NOCANCEL))}, + "SYS_READ_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_READ_NOCANCEL))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVFROM_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM_NOCANCEL))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RECVMSG_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG_NOCANCEL))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SEARCHFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEARCHFS))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SELECT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT_NOCANCEL))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMSYS))}, + "SYS_SEM_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_CLOSE))}, + "SYS_SEM_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_DESTROY))}, + "SYS_SEM_GETVALUE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_GETVALUE))}, + "SYS_SEM_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_INIT))}, + "SYS_SEM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_OPEN))}, + "SYS_SEM_POST": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_POST))}, + "SYS_SEM_TRYWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_TRYWAIT))}, + "SYS_SEM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_UNLINK))}, + "SYS_SEM_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_WAIT))}, + "SYS_SEM_WAIT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_WAIT_NOCANCEL))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDMSG_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG_NOCANCEL))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SENDTO_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO_NOCANCEL))}, + "SYS_SETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SETATTRLIST))}, + "SYS_SETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT))}, + "SYS_SETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT_ADDR))}, + "SYS_SETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUID))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLCID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLCID))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETPRIVEXEC": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIVEXEC))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSGROUPS))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTID))}, + "SYS_SETTID_WITH_PID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTID_WITH_PID))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETWGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETWGROUPS))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SHARED_REGION_CHECK_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_SHARED_REGION_CHECK_NP))}, + "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_SHARED_REGION_MAP_AND_SLIDE_NP))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMSYS))}, + "SYS_SHM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_OPEN))}, + "SYS_SHM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_UNLINK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGSUSPEND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND_NOCANCEL))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_STACK_SNAPSHOT": {"untyped int", constant.MakeInt64(int64(q.SYS_STACK_SNAPSHOT))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64_EXTENDED))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STATV": {"untyped int", constant.MakeInt64(int64(q.SYS_STATV))}, + "SYS_STAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT_EXTENDED))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL))}, + "SYS_THREAD_SELFID": {"untyped int", constant.MakeInt64(int64(q.SYS_THREAD_SELFID))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMASK_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK_EXTENDED))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VM_PRESSURE_MONITOR": {"untyped int", constant.MakeInt64(int64(q.SYS_VM_PRESSURE_MONITOR))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT4_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4_NOCANCEL))}, + "SYS_WAITEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITEVENT))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITID_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID_NOCANCEL))}, + "SYS_WATCHEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_WATCHEVENT))}, + "SYS_WORKQ_KERNRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_WORKQ_KERNRETURN))}, + "SYS_WORKQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_WORKQ_OPEN))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_WRITEV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV_NOCANCEL))}, + "SYS_WRITE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE_NOCANCEL))}, + "SYS___DISABLE_THREADSIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___DISABLE_THREADSIGNAL))}, + "SYS___MAC_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_EXECVE))}, + "SYS___MAC_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GETFSSTAT))}, + "SYS___MAC_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FD))}, + "SYS___MAC_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FILE))}, + "SYS___MAC_GET_LCID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LCID))}, + "SYS___MAC_GET_LCTX": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LCTX))}, + "SYS___MAC_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LINK))}, + "SYS___MAC_GET_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_MOUNT))}, + "SYS___MAC_GET_PID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PID))}, + "SYS___MAC_GET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PROC))}, + "SYS___MAC_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_MOUNT))}, + "SYS___MAC_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FD))}, + "SYS___MAC_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FILE))}, + "SYS___MAC_SET_LCTX": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LCTX))}, + "SYS___MAC_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LINK))}, + "SYS___MAC_SET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_PROC))}, + "SYS___MAC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SYSCALL))}, + "SYS___OLD_SEMWAIT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___OLD_SEMWAIT_SIGNAL))}, + "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL))}, + "SYS___PTHREAD_CANCELED": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_CANCELED))}, + "SYS___PTHREAD_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_CHDIR))}, + "SYS___PTHREAD_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_FCHDIR))}, + "SYS___PTHREAD_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_KILL))}, + "SYS___PTHREAD_MARKCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_MARKCANCEL))}, + "SYS___PTHREAD_SIGMASK": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_SIGMASK))}, + "SYS___SEMWAIT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMWAIT_SIGNAL))}, + "SYS___SEMWAIT_SIGNAL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMWAIT_SIGNAL_NOCANCEL))}, + "SYS___SIGWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGWAIT))}, + "SYS___SIGWAIT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGWAIT_NOCANCEL))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFWHT": {"untyped int", constant.MakeInt64(int64(q.S_IFWHT))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISTXT": {"untyped int", constant.MakeInt64(int64(q.S_ISTXT))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofIfmaMsghdr2": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr2))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONNECTIONTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_CONNECTIONTIMEOUT))}, + "TCP_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MINMSSOVERLOAD": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSSOVERLOAD))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_RXT_CONNDROPTIME": {"untyped int", constant.MakeInt64(int64(q.TCP_RXT_CONNDROPTIME))}, + "TCP_RXT_FINDROP": {"untyped int", constant.MakeInt64(int64(q.TCP_RXT_FINDROP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDCDTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCDCDTIMESTAMP))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCDSIMICROCODE": {"untyped int", constant.MakeInt64(int64(q.TIOCDSIMICROCODE))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCIXOFF": {"untyped int", constant.MakeInt64(int64(q.TIOCIXOFF))}, + "TIOCIXON": {"untyped int", constant.MakeInt64(int64(q.TIOCIXON))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTYGNAME": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYGNAME))}, + "TIOCPTYGRANT": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYGRANT))}, + "TIOCPTYUNLK": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYUNLK))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCSCONS))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_darwin_arm64.go b/pkg/syscall/go123_export_darwin_arm64.go new file mode 100755 index 00000000..29e371e2 --- /dev/null +++ b/pkg/syscall/go123_export_darwin_arm64.go @@ -0,0 +1,1958 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "Fbootstraptransfer_t": reflect.TypeOf((*q.Fbootstraptransfer_t)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "Fstore_t": reflect.TypeOf((*q.Fstore_t)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "IfmaMsghdr2": reflect.TypeOf((*q.IfmaMsghdr2)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Log2phys_t": reflect.TypeOf((*q.Log2phys_t)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Radvisory_t": reflect.TypeOf((*q.Radvisory_t)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timeval32": reflect.TypeOf((*q.Timeval32)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exchangedata": reflect.ValueOf(q.Exchangedata), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setprivexec": reflect.ValueOf(q.Setprivexec), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADARCH": {reflect.TypeOf(q.EBADARCH), constant.MakeInt64(int64(q.EBADARCH))}, + "EBADEXEC": {reflect.TypeOf(q.EBADEXEC), constant.MakeInt64(int64(q.EBADEXEC))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMACHO": {reflect.TypeOf(q.EBADMACHO), constant.MakeInt64(int64(q.EBADMACHO))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDEVERR": {reflect.TypeOf(q.EDEVERR), constant.MakeInt64(int64(q.EDEVERR))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPOLICY": {reflect.TypeOf(q.ENOPOLICY), constant.MakeInt64(int64(q.ENOPOLICY))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "EPWROFF": {reflect.TypeOf(q.EPWROFF), constant.MakeInt64(int64(q.EPWROFF))}, + "EQFULL": {reflect.TypeOf(q.EQFULL), constant.MakeInt64(int64(q.EQFULL))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHLIBVERS": {reflect.TypeOf(q.ESHLIBVERS), constant.MakeInt64(int64(q.ESHLIBVERS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NDRV": {"untyped int", constant.MakeInt64(int64(q.AF_NDRV))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PPP": {"untyped int", constant.MakeInt64(int64(q.AF_PPP))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_RESERVED_36": {"untyped int", constant.MakeInt64(int64(q.AF_RESERVED_36))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.AF_SYSTEM))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_UTUN": {"untyped int", constant.MakeInt64(int64(q.AF_UTUN))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_FS": {"untyped int", constant.MakeInt64(int64(q.EVFILT_FS))}, + "EVFILT_MACHPORT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_MACHPORT))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_THREADMARKER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_THREADMARKER))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_USER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_USER))}, + "EVFILT_VM": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VM))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG0": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG0))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_OOBAND": {"untyped int", constant.MakeInt64(int64(q.EV_OOBAND))}, + "EV_POLL": {"untyped int", constant.MakeInt64(int64(q.EV_POLL))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_ADDFILESIGS": {"untyped int", constant.MakeInt64(int64(q.F_ADDFILESIGS))}, + "F_ADDSIGS": {"untyped int", constant.MakeInt64(int64(q.F_ADDSIGS))}, + "F_ALLOCATEALL": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCATEALL))}, + "F_ALLOCATECONTIG": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCATECONTIG))}, + "F_CHKCLEAN": {"untyped int", constant.MakeInt64(int64(q.F_CHKCLEAN))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FINDSIGS": {"untyped int", constant.MakeInt64(int64(q.F_FINDSIGS))}, + "F_FLUSH_DATA": {"untyped int", constant.MakeInt64(int64(q.F_FLUSH_DATA))}, + "F_FREEZE_FS": {"untyped int", constant.MakeInt64(int64(q.F_FREEZE_FS))}, + "F_FULLFSYNC": {"untyped int", constant.MakeInt64(int64(q.F_FULLFSYNC))}, + "F_GETCODEDIR": {"untyped int", constant.MakeInt64(int64(q.F_GETCODEDIR))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLKPID": {"untyped int", constant.MakeInt64(int64(q.F_GETLKPID))}, + "F_GETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_GETNOSIGPIPE))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETPATH": {"untyped int", constant.MakeInt64(int64(q.F_GETPATH))}, + "F_GETPATH_MTMINFO": {"untyped int", constant.MakeInt64(int64(q.F_GETPATH_MTMINFO))}, + "F_GETPROTECTIONCLASS": {"untyped int", constant.MakeInt64(int64(q.F_GETPROTECTIONCLASS))}, + "F_GETPROTECTIONLEVEL": {"untyped int", constant.MakeInt64(int64(q.F_GETPROTECTIONLEVEL))}, + "F_GLOBAL_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.F_GLOBAL_NOCACHE))}, + "F_LOG2PHYS": {"untyped int", constant.MakeInt64(int64(q.F_LOG2PHYS))}, + "F_LOG2PHYS_EXT": {"untyped int", constant.MakeInt64(int64(q.F_LOG2PHYS_EXT))}, + "F_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.F_NOCACHE))}, + "F_NODIRECT": {"untyped int", constant.MakeInt64(int64(q.F_NODIRECT))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_PATHPKG_CHECK": {"untyped int", constant.MakeInt64(int64(q.F_PATHPKG_CHECK))}, + "F_PEOFPOSMODE": {"untyped int", constant.MakeInt64(int64(q.F_PEOFPOSMODE))}, + "F_PREALLOCATE": {"untyped int", constant.MakeInt64(int64(q.F_PREALLOCATE))}, + "F_RDADVISE": {"untyped int", constant.MakeInt64(int64(q.F_RDADVISE))}, + "F_RDAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_RDAHEAD))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETBACKINGSTORE": {"untyped int", constant.MakeInt64(int64(q.F_SETBACKINGSTORE))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKWTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.F_SETLKWTIMEOUT))}, + "F_SETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_SETNOSIGPIPE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETPROTECTIONCLASS": {"untyped int", constant.MakeInt64(int64(q.F_SETPROTECTIONCLASS))}, + "F_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.F_SETSIZE))}, + "F_SINGLE_WRITER": {"untyped int", constant.MakeInt64(int64(q.F_SINGLE_WRITER))}, + "F_THAW_FS": {"untyped int", constant.MakeInt64(int64(q.F_THAW_FS))}, + "F_TRANSCODEKEY": {"untyped int", constant.MakeInt64(int64(q.F_TRANSCODEKEY))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_VOLPOSMODE": {"untyped int", constant.MakeInt64(int64(q.F_VOLPOSMODE))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CELLULAR": {"untyped int", constant.MakeInt64(int64(q.IFT_CELLULAR))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PDP": {"untyped int", constant.MakeInt64(int64(q.IFT_PDP))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LINKLOCALNETNUM": {"untyped int", constant.MakeInt64(int64(q.IN_LINKLOCALNETNUM))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292NEXTHOP))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_BOUND_IF))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXOPTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXOPTHDR))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_GROUP_SRC_FILTER))}, + "IPV6_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_MEMBERSHIPS))}, + "IPV6_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_SOCK_SRC_FILTER))}, + "IPV6_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIN_MEMBERSHIPS))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IP_BOUND_IF))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_GROUP_SRC_FILTER))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MAX_SOCK_MUTE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_MUTE_FILTER))}, + "IP_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_SRC_FILTER))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_IFINDEX": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IFINDEX))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_NAT__XXX": {"untyped int", constant.MakeInt64(int64(q.IP_NAT__XXX))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OLD_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_ADD))}, + "IP_OLD_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_DEL))}, + "IP_OLD_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_FLUSH))}, + "IP_OLD_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_GET))}, + "IP_OLD_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_RESETLOG))}, + "IP_OLD_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_ZERO))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_RECVPKTINFO))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_STRIPHDR": {"untyped int", constant.MakeInt64(int64(q.IP_STRIPHDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRAFFIC_MGT_BACKGROUND": {"untyped int", constant.MakeInt64(int64(q.IP_TRAFFIC_MGT_BACKGROUND))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_CAN_REUSE": {"untyped int", constant.MakeInt64(int64(q.MADV_CAN_REUSE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_FREE_REUSABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE_REUSABLE))}, + "MADV_FREE_REUSE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE_REUSE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MADV_ZERO_WIRED_PAGES": {"untyped int", constant.MakeInt64(int64(q.MADV_ZERO_WIRED_PAGES))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_JIT": {"untyped int", constant.MakeInt64(int64(q.MAP_JIT))}, + "MAP_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCACHE))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_RESERVED0080": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0080))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_FLUSH": {"untyped int", constant.MakeInt64(int64(q.MSG_FLUSH))}, + "MSG_HAVEMORE": {"untyped int", constant.MakeInt64(int64(q.MSG_HAVEMORE))}, + "MSG_HOLD": {"untyped int", constant.MakeInt64(int64(q.MSG_HOLD))}, + "MSG_NEEDSA": {"untyped int", constant.MakeInt64(int64(q.MSG_NEEDSA))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_RCVMORE": {"untyped int", constant.MakeInt64(int64(q.MSG_RCVMORE))}, + "MSG_SEND": {"untyped int", constant.MakeInt64(int64(q.MSG_SEND))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITSTREAM": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITSTREAM))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_DEACTIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_DEACTIVATE))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_KILLPAGES": {"untyped int", constant.MakeInt64(int64(q.MS_KILLPAGES))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_DUMP2": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP2))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFLIST2": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST2))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_STAT": {"untyped int", constant.MakeInt64(int64(q.NET_RT_STAT))}, + "NET_RT_TRASH": {"untyped int", constant.MakeInt64(int64(q.NET_RT_TRASH))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ABSOLUTE": {"untyped int", constant.MakeInt64(int64(q.NOTE_ABSOLUTE))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_BACKGROUND": {"untyped int", constant.MakeInt64(int64(q.NOTE_BACKGROUND))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_CRITICAL": {"untyped int", constant.MakeInt64(int64(q.NOTE_CRITICAL))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXITSTATUS": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXITSTATUS))}, + "NOTE_EXIT_CSERROR": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_CSERROR))}, + "NOTE_EXIT_DECRYPTFAIL": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_DECRYPTFAIL))}, + "NOTE_EXIT_DETAIL": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_DETAIL))}, + "NOTE_EXIT_DETAIL_MASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_DETAIL_MASK))}, + "NOTE_EXIT_MEMORY": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_MEMORY))}, + "NOTE_EXIT_REPARENTED": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_REPARENTED))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FFAND": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFAND))}, + "NOTE_FFCOPY": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCOPY))}, + "NOTE_FFCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCTRLMASK))}, + "NOTE_FFLAGSMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFLAGSMASK))}, + "NOTE_FFNOP": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFNOP))}, + "NOTE_FFOR": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFOR))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LEEWAY": {"untyped int", constant.MakeInt64(int64(q.NOTE_LEEWAY))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_NONE": {"untyped int", constant.MakeInt64(int64(q.NOTE_NONE))}, + "NOTE_NSECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_NSECONDS))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_REAP": {"untyped int", constant.MakeInt64(int64(q.NOTE_REAP))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_SECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_SECONDS))}, + "NOTE_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.NOTE_SIGNAL))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRIGGER": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRIGGER))}, + "NOTE_USECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_USECONDS))}, + "NOTE_VM_ERROR": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_ERROR))}, + "NOTE_VM_PRESSURE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE))}, + "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE_SUDDEN_TERMINATE))}, + "NOTE_VM_PRESSURE_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE_TERMINATE))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_ALERT": {"untyped int", constant.MakeInt64(int64(q.O_ALERT))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DP_GETRAWENCRYPTED": {"untyped int", constant.MakeInt64(int64(q.O_DP_GETRAWENCRYPTED))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EVTONLY": {"untyped int", constant.MakeInt64(int64(q.O_EVTONLY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_POPUP": {"untyped int", constant.MakeInt64(int64(q.O_POPUP))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.O_SYMLINK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PT_ATTACH))}, + "PT_ATTACHEXC": {"untyped int", constant.MakeInt64(int64(q.PT_ATTACHEXC))}, + "PT_CONTINUE": {"untyped int", constant.MakeInt64(int64(q.PT_CONTINUE))}, + "PT_DENY_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PT_DENY_ATTACH))}, + "PT_DETACH": {"untyped int", constant.MakeInt64(int64(q.PT_DETACH))}, + "PT_FIRSTMACH": {"untyped int", constant.MakeInt64(int64(q.PT_FIRSTMACH))}, + "PT_FORCEQUOTA": {"untyped int", constant.MakeInt64(int64(q.PT_FORCEQUOTA))}, + "PT_KILL": {"untyped int", constant.MakeInt64(int64(q.PT_KILL))}, + "PT_READ_D": {"untyped int", constant.MakeInt64(int64(q.PT_READ_D))}, + "PT_READ_I": {"untyped int", constant.MakeInt64(int64(q.PT_READ_I))}, + "PT_READ_U": {"untyped int", constant.MakeInt64(int64(q.PT_READ_U))}, + "PT_SIGEXC": {"untyped int", constant.MakeInt64(int64(q.PT_SIGEXC))}, + "PT_STEP": {"untyped int", constant.MakeInt64(int64(q.PT_STEP))}, + "PT_THUPDATE": {"untyped int", constant.MakeInt64(int64(q.PT_THUPDATE))}, + "PT_TRACE_ME": {"untyped int", constant.MakeInt64(int64(q.PT_TRACE_ME))}, + "PT_WRITE_D": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_D))}, + "PT_WRITE_I": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_I))}, + "PT_WRITE_U": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_U))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_CPU_USAGE_MONITOR": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU_USAGE_MONITOR))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_CONDEMNED": {"untyped int", constant.MakeInt64(int64(q.RTF_CONDEMNED))}, + "RTF_DELCLONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DELCLONE))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_IFREF": {"untyped int", constant.MakeInt64(int64(q.RTF_IFREF))}, + "RTF_IFSCOPE": {"untyped int", constant.MakeInt64(int64(q.RTF_IFSCOPE))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_PROXY": {"untyped int", constant.MakeInt64(int64(q.RTF_PROXY))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_ROUTER": {"untyped int", constant.MakeInt64(int64(q.RTF_ROUTER))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WASCLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_WASCLONED))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_GET2": {"untyped int", constant.MakeInt64(int64(q.RTM_GET2))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_IFINFO2": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO2))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_NEWMADDR2": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR2))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMP_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP_MONOTONIC))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCARPIPLL": {"untyped int", constant.MakeInt64(int64(q.SIOCARPIPLL))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCAUTOADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAUTOADDR))}, + "SIOCAUTONETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCAUTONETMASK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVLAN))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFALTMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFALTMTU))}, + "SIOCGIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFASYNCMAP))}, + "SIOCGIFBOND": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBOND))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDEVMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDEVMTU))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFKPI": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFKPI))}, + "SIOCGIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGIFVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFVLAN))}, + "SIOCGIFWAKEFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFWAKEFLAGS))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCRSLVMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCRSLVMULTI))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSETVLAN))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFALTMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFALTMTU))}, + "SIOCSIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFASYNCMAP))}, + "SIOCSIFBOND": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBOND))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFKPI": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFKPI))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFVLAN))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_DONTTRUNC": {"untyped int", constant.MakeInt64(int64(q.SO_DONTTRUNC))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LABEL": {"untyped int", constant.MakeInt64(int64(q.SO_LABEL))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LINGER_SEC": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER_SEC))}, + "SO_NKE": {"untyped int", constant.MakeInt64(int64(q.SO_NKE))}, + "SO_NOADDRERR": {"untyped int", constant.MakeInt64(int64(q.SO_NOADDRERR))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_NOTIFYCONFLICT": {"untyped int", constant.MakeInt64(int64(q.SO_NOTIFYCONFLICT))}, + "SO_NP_EXTENSIONS": {"untyped int", constant.MakeInt64(int64(q.SO_NP_EXTENSIONS))}, + "SO_NREAD": {"untyped int", constant.MakeInt64(int64(q.SO_NREAD))}, + "SO_NUMRCVPKT": {"untyped int", constant.MakeInt64(int64(q.SO_NUMRCVPKT))}, + "SO_NWRITE": {"untyped int", constant.MakeInt64(int64(q.SO_NWRITE))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERLABEL": {"untyped int", constant.MakeInt64(int64(q.SO_PEERLABEL))}, + "SO_RANDOMPORT": {"untyped int", constant.MakeInt64(int64(q.SO_RANDOMPORT))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_REUSESHAREUID": {"untyped int", constant.MakeInt64(int64(q.SO_REUSESHAREUID))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMP_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP_MONOTONIC))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_UPCALLCLOSEWAIT": {"untyped int", constant.MakeInt64(int64(q.SO_UPCALLCLOSEWAIT))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_WANTMORE": {"untyped int", constant.MakeInt64(int64(q.SO_WANTMORE))}, + "SO_WANTOOBFLAG": {"untyped int", constant.MakeInt64(int64(q.SO_WANTOOBFLAG))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT_NOCANCEL))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCESS_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS_EXTENDED))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AIO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_CANCEL))}, + "SYS_AIO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_ERROR))}, + "SYS_AIO_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_FSYNC))}, + "SYS_AIO_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_READ))}, + "SYS_AIO_RETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_RETURN))}, + "SYS_AIO_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND))}, + "SYS_AIO_SUSPEND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND_NOCANCEL))}, + "SYS_AIO_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WRITE))}, + "SYS_ATGETMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_ATGETMSG))}, + "SYS_ATPGETREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPGETREQ))}, + "SYS_ATPGETRSP": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPGETRSP))}, + "SYS_ATPSNDREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPSNDREQ))}, + "SYS_ATPSNDRSP": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPSNDRSP))}, + "SYS_ATPUTMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPUTMSG))}, + "SYS_ATSOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_ATSOCKET))}, + "SYS_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT))}, + "SYS_AUDITCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITCTL))}, + "SYS_AUDITON": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITON))}, + "SYS_AUDIT_SESSION_JOIN": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_JOIN))}, + "SYS_AUDIT_SESSION_PORT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_PORT))}, + "SYS_AUDIT_SESSION_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_SELF))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BSDTHREAD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_CREATE))}, + "SYS_BSDTHREAD_REGISTER": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_REGISTER))}, + "SYS_BSDTHREAD_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_TERMINATE))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHMOD_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD_EXTENDED))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CHUD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHUD))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE_NOCANCEL))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CONNECT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT_NOCANCEL))}, + "SYS_COPYFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_COPYFILE))}, + "SYS_CSOPS": {"untyped int", constant.MakeInt64(int64(q.SYS_CSOPS))}, + "SYS_CSOPS_AUDITTOKEN": {"untyped int", constant.MakeInt64(int64(q.SYS_CSOPS_AUDITTOKEN))}, + "SYS_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EXCHANGEDATA": {"untyped int", constant.MakeInt64(int64(q.SYS_EXCHANGEDATA))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMOD_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD_EXTENDED))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL_NOCANCEL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FFSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FFSCTL))}, + "SYS_FGETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETATTRLIST))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FILEPORT_MAKEFD": {"untyped int", constant.MakeInt64(int64(q.SYS_FILEPORT_MAKEFD))}, + "SYS_FILEPORT_MAKEPORT": {"untyped int", constant.MakeInt64(int64(q.SYS_FILEPORT_MAKEPORT))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FSCTL))}, + "SYS_FSETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETATTRLIST))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSGETPATH": {"untyped int", constant.MakeInt64(int64(q.SYS_FSGETPATH))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64_EXTENDED))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSTAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT_EXTENDED))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FSYNC_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC_NOCANCEL))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GETATTRLIST))}, + "SYS_GETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT_ADDR))}, + "SYS_GETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUID))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDIRENTRIES64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES64))}, + "SYS_GETDIRENTRIESATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIESATTR))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETFSSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT64))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETHOSTUUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETHOSTUUID))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLCID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLCID))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSGROUPS))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETWGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETWGROUPS))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_IDENTITYSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_IDENTITYSVC))}, + "SYS_INITGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_INITGROUPS))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPOLICYSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPOLICYSYS))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KAS_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_KAS_INFO))}, + "SYS_KDEBUG_TRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KDEBUG_TRACE))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KEVENT64": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT64))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LEDGER": {"untyped int", constant.MakeInt64(int64(q.SYS_LEDGER))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LIO_LISTIO": {"untyped int", constant.MakeInt64(int64(q.SYS_LIO_LISTIO))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_LSTAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64_EXTENDED))}, + "SYS_LSTAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT_EXTENDED))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MAXSYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MAXSYSCALL))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIR_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR_EXTENDED))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFO_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO_EXTENDED))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODWATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_MODWATCH))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGRCV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV_NOCANCEL))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSGSND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND_NOCANCEL))}, + "SYS_MSGSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSYS))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MSYNC_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC_NOCANCEL))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NFSCLNT": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSCLNT))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPEN_DPROTECTED_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_DPROTECTED_NP))}, + "SYS_OPEN_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_EXTENDED))}, + "SYS_OPEN_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_NOCANCEL))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PID_HIBERNATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_HIBERNATE))}, + "SYS_PID_RESUME": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_RESUME))}, + "SYS_PID_SHUTDOWN_SOCKETS": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_SHUTDOWN_SOCKETS))}, + "SYS_PID_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_SUSPEND))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POLL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL_NOCANCEL))}, + "SYS_POSIX_SPAWN": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_SPAWN))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREAD_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD_NOCANCEL))}, + "SYS_PROCESS_POLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_POLICY))}, + "SYS_PROC_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_PROC_INFO))}, + "SYS_PSYNCH_CVBROAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVBROAD))}, + "SYS_PSYNCH_CVCLRPREPOST": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVCLRPREPOST))}, + "SYS_PSYNCH_CVSIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVSIGNAL))}, + "SYS_PSYNCH_CVWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVWAIT))}, + "SYS_PSYNCH_MUTEXDROP": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_MUTEXDROP))}, + "SYS_PSYNCH_MUTEXWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_MUTEXWAIT))}, + "SYS_PSYNCH_RW_DOWNGRADE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_DOWNGRADE))}, + "SYS_PSYNCH_RW_LONGRDLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_LONGRDLOCK))}, + "SYS_PSYNCH_RW_RDLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_RDLOCK))}, + "SYS_PSYNCH_RW_UNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UNLOCK))}, + "SYS_PSYNCH_RW_UNLOCK2": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UNLOCK2))}, + "SYS_PSYNCH_RW_UPGRADE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UPGRADE))}, + "SYS_PSYNCH_RW_WRLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_WRLOCK))}, + "SYS_PSYNCH_RW_YIELDWRLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_YIELDWRLOCK))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE_NOCANCEL))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_READV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_READV_NOCANCEL))}, + "SYS_READ_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_READ_NOCANCEL))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVFROM_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM_NOCANCEL))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RECVMSG_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG_NOCANCEL))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SEARCHFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEARCHFS))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SELECT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT_NOCANCEL))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMSYS))}, + "SYS_SEM_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_CLOSE))}, + "SYS_SEM_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_DESTROY))}, + "SYS_SEM_GETVALUE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_GETVALUE))}, + "SYS_SEM_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_INIT))}, + "SYS_SEM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_OPEN))}, + "SYS_SEM_POST": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_POST))}, + "SYS_SEM_TRYWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_TRYWAIT))}, + "SYS_SEM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_UNLINK))}, + "SYS_SEM_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_WAIT))}, + "SYS_SEM_WAIT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_WAIT_NOCANCEL))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDMSG_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG_NOCANCEL))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SENDTO_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO_NOCANCEL))}, + "SYS_SETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SETATTRLIST))}, + "SYS_SETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT_ADDR))}, + "SYS_SETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUID))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLCID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLCID))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETPRIVEXEC": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIVEXEC))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSGROUPS))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTID))}, + "SYS_SETTID_WITH_PID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTID_WITH_PID))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETWGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETWGROUPS))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SHARED_REGION_CHECK_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_SHARED_REGION_CHECK_NP))}, + "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_SHARED_REGION_MAP_AND_SLIDE_NP))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMSYS))}, + "SYS_SHM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_OPEN))}, + "SYS_SHM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_UNLINK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGSUSPEND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND_NOCANCEL))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_STACK_SNAPSHOT": {"untyped int", constant.MakeInt64(int64(q.SYS_STACK_SNAPSHOT))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64_EXTENDED))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT_EXTENDED))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL))}, + "SYS_THREAD_SELFID": {"untyped int", constant.MakeInt64(int64(q.SYS_THREAD_SELFID))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMASK_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK_EXTENDED))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VM_PRESSURE_MONITOR": {"untyped int", constant.MakeInt64(int64(q.SYS_VM_PRESSURE_MONITOR))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT4_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4_NOCANCEL))}, + "SYS_WAITEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITEVENT))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITID_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID_NOCANCEL))}, + "SYS_WATCHEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_WATCHEVENT))}, + "SYS_WORKQ_KERNRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_WORKQ_KERNRETURN))}, + "SYS_WORKQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_WORKQ_OPEN))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_WRITEV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV_NOCANCEL))}, + "SYS_WRITE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE_NOCANCEL))}, + "SYS___DISABLE_THREADSIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___DISABLE_THREADSIGNAL))}, + "SYS___MAC_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_EXECVE))}, + "SYS___MAC_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GETFSSTAT))}, + "SYS___MAC_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FD))}, + "SYS___MAC_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FILE))}, + "SYS___MAC_GET_LCID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LCID))}, + "SYS___MAC_GET_LCTX": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LCTX))}, + "SYS___MAC_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LINK))}, + "SYS___MAC_GET_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_MOUNT))}, + "SYS___MAC_GET_PID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PID))}, + "SYS___MAC_GET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PROC))}, + "SYS___MAC_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_MOUNT))}, + "SYS___MAC_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FD))}, + "SYS___MAC_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FILE))}, + "SYS___MAC_SET_LCTX": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LCTX))}, + "SYS___MAC_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LINK))}, + "SYS___MAC_SET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_PROC))}, + "SYS___MAC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SYSCALL))}, + "SYS___OLD_SEMWAIT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___OLD_SEMWAIT_SIGNAL))}, + "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL))}, + "SYS___PTHREAD_CANCELED": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_CANCELED))}, + "SYS___PTHREAD_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_CHDIR))}, + "SYS___PTHREAD_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_FCHDIR))}, + "SYS___PTHREAD_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_KILL))}, + "SYS___PTHREAD_MARKCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_MARKCANCEL))}, + "SYS___PTHREAD_SIGMASK": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_SIGMASK))}, + "SYS___SEMWAIT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMWAIT_SIGNAL))}, + "SYS___SEMWAIT_SIGNAL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMWAIT_SIGNAL_NOCANCEL))}, + "SYS___SIGWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGWAIT))}, + "SYS___SIGWAIT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGWAIT_NOCANCEL))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFWHT": {"untyped int", constant.MakeInt64(int64(q.S_IFWHT))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISTXT": {"untyped int", constant.MakeInt64(int64(q.S_ISTXT))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofIfmaMsghdr2": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr2))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONNECTIONTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_CONNECTIONTIMEOUT))}, + "TCP_ENABLE_ECN": {"untyped int", constant.MakeInt64(int64(q.TCP_ENABLE_ECN))}, + "TCP_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_NOTSENT_LOWAT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOTSENT_LOWAT))}, + "TCP_RXT_CONNDROPTIME": {"untyped int", constant.MakeInt64(int64(q.TCP_RXT_CONNDROPTIME))}, + "TCP_RXT_FINDROP": {"untyped int", constant.MakeInt64(int64(q.TCP_RXT_FINDROP))}, + "TCP_SENDMOREACKS": {"untyped int", constant.MakeInt64(int64(q.TCP_SENDMOREACKS))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDCDTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCDCDTIMESTAMP))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCDSIMICROCODE": {"untyped int", constant.MakeInt64(int64(q.TIOCDSIMICROCODE))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCIXOFF": {"untyped int", constant.MakeInt64(int64(q.TIOCIXOFF))}, + "TIOCIXON": {"untyped int", constant.MakeInt64(int64(q.TIOCIXON))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTYGNAME": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYGNAME))}, + "TIOCPTYGRANT": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYGRANT))}, + "TIOCPTYUNLK": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYUNLK))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCSCONS))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_dragonfly_amd64.go b/pkg/syscall/go123_export_dragonfly_amd64.go new file mode 100755 index 00000000..e7dfd1c4 --- /dev/null +++ b/pkg/syscall/go123_export_dragonfly_amd64.go @@ -0,0 +1,2010 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EASYNC": {reflect.TypeOf(q.EASYNC), constant.MakeInt64(int64(q.EASYNC))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOOFUS": {reflect.TypeOf(q.EDOOFUS), constant.MakeInt64(int64(q.EDOOFUS))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUNUSED94": {reflect.TypeOf(q.EUNUSED94), constant.MakeInt64(int64(q.EUNUSED94))}, + "EUNUSED95": {reflect.TypeOf(q.EUNUSED95), constant.MakeInt64(int64(q.EUNUSED95))}, + "EUNUSED96": {reflect.TypeOf(q.EUNUSED96), constant.MakeInt64(int64(q.EUNUSED96))}, + "EUNUSED97": {reflect.TypeOf(q.EUNUSED97), constant.MakeInt64(int64(q.EUNUSED97))}, + "EUNUSED98": {reflect.TypeOf(q.EUNUSED98), constant.MakeInt64(int64(q.EUNUSED98))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCKPT": {reflect.TypeOf(q.SIGCKPT), constant.MakeInt64(int64(q.SIGCKPT))}, + "SIGCKPTEXIT": {reflect.TypeOf(q.SIGCKPTEXIT), constant.MakeInt64(int64(q.SIGCKPTEXIT))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ATM": {"untyped int", constant.MakeInt64(int64(q.AF_ATM))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NETGRAPH": {"untyped int", constant.MakeInt64(int64(q.AF_NETGRAPH))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DEFAULTBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_DEFAULTBUFSIZE))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MAX_CLONES": {"untyped int", constant.MakeInt64(int64(q.BPF_MAX_CLONES))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPFILTER": {"untyped int", constant.MakeInt64(int64(q.DLT_IPFILTER))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_REDBACK_SMARTEDGE": {"untyped int", constant.MakeInt64(int64(q.DLT_REDBACK_SMARTEDGE))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DBF": {"untyped int", constant.MakeInt64(int64(q.DT_DBF))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_EXCEPT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_EXCEPT))}, + "EVFILT_MARKER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_MARKER))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_NODATA": {"untyped int", constant.MakeInt64(int64(q.EV_NODATA))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTEXIT_LWP": {"untyped int", constant.MakeInt64(int64(q.EXTEXIT_LWP))}, + "EXTEXIT_PROC": {"untyped int", constant.MakeInt64(int64(q.EXTEXIT_PROC))}, + "EXTEXIT_SETINT": {"untyped int", constant.MakeInt64(int64(q.EXTEXIT_SETINT))}, + "EXTEXIT_SIMPLE": {"untyped int", constant.MakeInt64(int64(q.EXTEXIT_SIMPLE))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUP2FD": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD))}, + "F_DUP2FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD_CLOEXEC))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MONITOR": {"untyped int", constant.MakeInt64(int64(q.IFF_MONITOR))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NPOLLING": {"untyped int", constant.MakeInt64(int64(q.IFF_NPOLLING))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_OACTIVE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE_COMPAT))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_POLLING": {"untyped int", constant.MakeInt64(int64(q.IFF_POLLING))}, + "IFF_POLLING_COMPAT": {"untyped int", constant.MakeInt64(int64(q.IFF_POLLING_COMPAT))}, + "IFF_PPROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PPROMISC))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_SMART": {"untyped int", constant.MakeInt64(int64(q.IFF_SMART))}, + "IFF_STATICARP": {"untyped int", constant.MakeInt64(int64(q.IFF_STATICARP))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SKIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SKIP))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TLSP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UNKNOWN))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MSFILTER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTOPTIONS))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_PREFER_TEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_TEMPADDR))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_AUTOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_AUTOSYNC))}, + "MADV_CONTROL_END": {"untyped int", constant.MakeInt64(int64(q.MADV_CONTROL_END))}, + "MADV_CONTROL_START": {"untyped int", constant.MakeInt64(int64(q.MADV_CONTROL_START))}, + "MADV_CORE": {"untyped int", constant.MakeInt64(int64(q.MADV_CORE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_INVAL": {"untyped int", constant.MakeInt64(int64(q.MADV_INVAL))}, + "MADV_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOCORE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_NOSYNC))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SETMAP": {"untyped int", constant.MakeInt64(int64(q.MADV_SETMAP))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCORE))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MAP_NOSYNC))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_SIZEALIGN": {"untyped int", constant.MakeInt64(int64(q.MAP_SIZEALIGN))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MAP_VPAGETABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_VPAGETABLE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_FBLOCKING": {"untyped int", constant.MakeInt64(int64(q.MSG_FBLOCKING))}, + "MSG_FMASK": {"untyped int", constant.MakeInt64(int64(q.MSG_FMASK))}, + "MSG_FNONBLOCKING": {"untyped int", constant.MakeInt64(int64(q.MSG_FNONBLOCKING))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_NOTIFICATION": {"untyped int", constant.MakeInt64(int64(q.MSG_NOTIFICATION))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_SYNC": {"untyped int", constant.MakeInt64(int64(q.MSG_SYNC))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_OOB": {"untyped int", constant.MakeInt64(int64(q.NOTE_OOB))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FAPPEND": {"untyped int", constant.MakeInt64(int64(q.O_FAPPEND))}, + "O_FASYNCWRITE": {"untyped int", constant.MakeInt64(int64(q.O_FASYNCWRITE))}, + "O_FBLOCKING": {"untyped int", constant.MakeInt64(int64(q.O_FBLOCKING))}, + "O_FBUFFERED": {"untyped int", constant.MakeInt64(int64(q.O_FBUFFERED))}, + "O_FMASK": {"untyped int", constant.MakeInt64(int64(q.O_FMASK))}, + "O_FNONBLOCKING": {"untyped int", constant.MakeInt64(int64(q.O_FNONBLOCKING))}, + "O_FOFFSET": {"untyped int", constant.MakeInt64(int64(q.O_FOFFSET))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_FSYNCWRITE": {"untyped int", constant.MakeInt64(int64(q.O_FSYNCWRITE))}, + "O_FUNBUFFERED": {"untyped int", constant.MakeInt64(int64(q.O_FUNBUFFERED))}, + "O_MAPONREAD": {"untyped int", constant.MakeInt64(int64(q.O_MAPONREAD))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MPLS1": {"untyped int", constant.MakeInt64(int64(q.RTAX_MPLS1))}, + "RTAX_MPLS2": {"untyped int", constant.MakeInt64(int64(q.RTAX_MPLS2))}, + "RTAX_MPLS3": {"untyped int", constant.MakeInt64(int64(q.RTAX_MPLS3))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_MPLS1": {"untyped int", constant.MakeInt64(int64(q.RTA_MPLS1))}, + "RTA_MPLS2": {"untyped int", constant.MakeInt64(int64(q.RTA_MPLS2))}, + "RTA_MPLS3": {"untyped int", constant.MakeInt64(int64(q.RTA_MPLS3))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MPLSOPS": {"untyped int", constant.MakeInt64(int64(q.RTF_MPLSOPS))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WASCLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_WASCLONED))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_IWCAPSEGS": {"untyped int", constant.MakeInt64(int64(q.RTV_IWCAPSEGS))}, + "RTV_IWMAXSEGS": {"untyped int", constant.MakeInt64(int64(q.RTV_IWMAXSEGS))}, + "RTV_MSL": {"untyped int", constant.MakeInt64(int64(q.RTV_MSL))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPOLLCPU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPOLLCPU))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGIFTSOLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTSOLEN))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGPRIVATE_0": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_0))}, + "SIOCGPRIVATE_1": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_1))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFPOLLCPU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPOLLCPU))}, + "SIOCSIFTSOLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTSOLEN))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDSPACE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDSPACE))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AIO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_CANCEL))}, + "SYS_AIO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_ERROR))}, + "SYS_AIO_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_READ))}, + "SYS_AIO_RETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_RETURN))}, + "SYS_AIO_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND))}, + "SYS_AIO_WAITCOMPLETE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WAITCOMPLETE))}, + "SYS_AIO_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WRITE))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CHROOT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT_KERNEL))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_EACCESS))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXEC_SYS_REGISTER": {"untyped int", constant.MakeInt64(int64(q.SYS_EXEC_SYS_REGISTER))}, + "SYS_EXEC_SYS_UNREGISTER": {"untyped int", constant.MakeInt64(int64(q.SYS_EXEC_SYS_UNREGISTER))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTACCEPT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTCONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTCONNECT))}, + "SYS_EXTEXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTEXIT))}, + "SYS_EXTPREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTPREAD))}, + "SYS_EXTPREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTPREADV))}, + "SYS_EXTPWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTPWRITE))}, + "SYS_EXTPWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTPWRITEV))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FHSTATVFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATVFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATVFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATVFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDOMAINNAME))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETVFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETVFSSTAT))}, + "SYS_GET_TLS_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_TLS_AREA))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_JAIL": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL))}, + "SYS_JAIL_ATTACH": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_ATTACH))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KLDFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIND))}, + "SYS_KLDFIRSTMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIRSTMOD))}, + "SYS_KLDLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDLOAD))}, + "SYS_KLDNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDNEXT))}, + "SYS_KLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSTAT))}, + "SYS_KLDSYM": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSYM))}, + "SYS_KLDUNLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOAD))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LIO_LISTIO": {"untyped int", constant.MakeInt64(int64(q.SYS_LIO_LISTIO))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_LPATHCONF))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_LWP_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_LWP_CREATE))}, + "SYS_LWP_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_LWP_GETTID))}, + "SYS_LWP_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_LWP_KILL))}, + "SYS_LWP_RTPRIO": {"untyped int", constant.MakeInt64(int64(q.SYS_LWP_RTPRIO))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MCONTROL": {"untyped int", constant.MakeInt64(int64(q.SYS_MCONTROL))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFIND))}, + "SYS_MODFNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFNEXT))}, + "SYS_MODNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODNEXT))}, + "SYS_MODSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODSTAT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOUNTCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNTCTL))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_CLOSE))}, + "SYS_MQ_GETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_RECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_RECEIVE))}, + "SYS_MQ_SEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_SEND))}, + "SYS_MQ_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_SETATTR))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPENBSD_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENBSD_POLL))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_RFORK))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RTPRIO": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SCTP_PEELOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_PEELOFF))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SET_TLS_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TLS_AREA))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGTIMEDWAIT))}, + "SYS_SIGWAITINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAITINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATVFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATVFS))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_SYS_CHECKPOINT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYS_CHECKPOINT))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMTX_SLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_UMTX_SLEEP))}, + "SYS_UMTX_WAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS_UMTX_WAKEUP))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_USCHED_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_USCHED_SET))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VARSYM_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_VARSYM_GET))}, + "SYS_VARSYM_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_VARSYM_LIST))}, + "SYS_VARSYM_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_VARSYM_SET))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VMM_GUEST_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_VMM_GUEST_CTL))}, + "SYS_VMM_GUEST_SYNC_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_VMM_GUEST_SYNC_ADDR))}, + "SYS_VMSPACE_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPACE_CREATE))}, + "SYS_VMSPACE_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPACE_CTL))}, + "SYS_VMSPACE_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPACE_DESTROY))}, + "SYS_VMSPACE_MCONTROL": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPACE_MCONTROL))}, + "SYS_VMSPACE_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPACE_MMAP))}, + "SYS_VMSPACE_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPACE_MUNMAP))}, + "SYS_VMSPACE_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPACE_PREAD))}, + "SYS_VMSPACE_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPACE_PWRITE))}, + "SYS_VQUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_VQUOTACTL))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_YIELD))}, + "SYS___ACL_ACLCHECK_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FD))}, + "SYS___ACL_ACLCHECK_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FILE))}, + "SYS___ACL_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FD))}, + "SYS___ACL_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FILE))}, + "SYS___ACL_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FD))}, + "SYS___ACL_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FILE))}, + "SYS___ACL_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FD))}, + "SYS___ACL_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FILE))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_FASTKEEP": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTKEEP))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MIN_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MIN_WINSHIFT))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_SIGNATURE_ENABLE": {"untyped int", constant.MakeInt64(int64(q.TCP_SIGNATURE_ENABLE))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDCDTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCDCDTIMESTAMP))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGSIZE))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCISPTMASTER": {"untyped int", constant.MakeInt64(int64(q.TIOCISPTMASTER))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCSSIZE))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VCHECKPT": {"untyped int", constant.MakeInt64(int64(q.VCHECKPT))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VERASE2": {"untyped int", constant.MakeInt64(int64(q.VERASE2))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WLINUXCLONE": {"untyped int", constant.MakeInt64(int64(q.WLINUXCLONE))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_freebsd_386.go b/pkg/syscall/go123_export_freebsd_386.go new file mode 100755 index 00000000..054dee78 --- /dev/null +++ b/pkg/syscall/go123_export_freebsd_386.go @@ -0,0 +1,2249 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "BpfZbuf": reflect.TypeOf((*q.BpfZbuf)(nil)).Elem(), + "BpfZbufHeader": reflect.TypeOf((*q.BpfZbufHeader)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatat": reflect.ValueOf(q.Fstatat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECAPMODE": {reflect.TypeOf(q.ECAPMODE), constant.MakeInt64(int64(q.ECAPMODE))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOOFUS": {reflect.TypeOf(q.EDOOFUS), constant.MakeInt64(int64(q.EDOOFUS))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCAPABLE": {reflect.TypeOf(q.ENOTCAPABLE), constant.MakeInt64(int64(q.ENOTCAPABLE))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGLIBRT": {reflect.TypeOf(q.SIGLIBRT), constant.MakeInt64(int64(q.SIGLIBRT))}, + "SIGLWP": {reflect.TypeOf(q.SIGLWP), constant.MakeInt64(int64(q.SIGLWP))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ARP": {"untyped int", constant.MakeInt64(int64(q.AF_ARP))}, + "AF_ATM": {"untyped int", constant.MakeInt64(int64(q.AF_ATM))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_INET6_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET6_SDP))}, + "AF_INET_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET_SDP))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_NETGRAPH": {"untyped int", constant.MakeInt64(int64(q.AF_NETGRAPH))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SCLUSTER": {"untyped int", constant.MakeInt64(int64(q.AF_SCLUSTER))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SLOW": {"untyped int", constant.MakeInt64(int64(q.AF_SLOW))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VENDOR00": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR00))}, + "AF_VENDOR01": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR01))}, + "AF_VENDOR02": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR02))}, + "AF_VENDOR03": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR03))}, + "AF_VENDOR04": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR04))}, + "AF_VENDOR05": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR05))}, + "AF_VENDOR06": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR06))}, + "AF_VENDOR07": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR07))}, + "AF_VENDOR08": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR08))}, + "AF_VENDOR09": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR09))}, + "AF_VENDOR10": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR10))}, + "AF_VENDOR11": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR11))}, + "AF_VENDOR12": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR12))}, + "AF_VENDOR13": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR13))}, + "AF_VENDOR14": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR14))}, + "AF_VENDOR15": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR15))}, + "AF_VENDOR16": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR16))}, + "AF_VENDOR17": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR17))}, + "AF_VENDOR18": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR18))}, + "AF_VENDOR19": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR19))}, + "AF_VENDOR20": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR20))}, + "AF_VENDOR21": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR21))}, + "AF_VENDOR22": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR22))}, + "AF_VENDOR23": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR23))}, + "AF_VENDOR24": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR24))}, + "AF_VENDOR25": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR25))}, + "AF_VENDOR26": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR26))}, + "AF_VENDOR27": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR27))}, + "AF_VENDOR28": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR28))}, + "AF_VENDOR29": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR29))}, + "AF_VENDOR30": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR30))}, + "AF_VENDOR31": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR31))}, + "AF_VENDOR32": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR32))}, + "AF_VENDOR33": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR33))}, + "AF_VENDOR34": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR34))}, + "AF_VENDOR35": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR35))}, + "AF_VENDOR36": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR36))}, + "AF_VENDOR37": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR37))}, + "AF_VENDOR38": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR38))}, + "AF_VENDOR39": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR39))}, + "AF_VENDOR40": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR40))}, + "AF_VENDOR41": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR41))}, + "AF_VENDOR42": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR42))}, + "AF_VENDOR43": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR43))}, + "AF_VENDOR44": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR44))}, + "AF_VENDOR45": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR45))}, + "AF_VENDOR46": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR46))}, + "AF_VENDOR47": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR47))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCFEEDBACK))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRECTION))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCGETBUFMODE))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGETZMAX": {"untyped int", constant.MakeInt64(int64(q.BIOCGETZMAX))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCGTSTAMP))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCROTZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCROTZBUF))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRECTION))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCSETBUFMODE))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETFNR": {"untyped int", constant.MakeInt64(int64(q.BIOCSETFNR))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSETZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETZBUF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCSTSTAMP))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_BUFMODE_BUFFER": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_BUFFER))}, + "BPF_BUFMODE_ZBUF": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_ZBUF))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_T_BINTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME))}, + "BPF_T_BINTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_FAST))}, + "BPF_T_BINTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC))}, + "BPF_T_BINTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC_FAST))}, + "BPF_T_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FAST))}, + "BPF_T_FLAG_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FLAG_MASK))}, + "BPF_T_FORMAT_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FORMAT_MASK))}, + "BPF_T_MICROTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME))}, + "BPF_T_MICROTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_FAST))}, + "BPF_T_MICROTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC))}, + "BPF_T_MICROTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC_FAST))}, + "BPF_T_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC))}, + "BPF_T_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC_FAST))}, + "BPF_T_NANOTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME))}, + "BPF_T_NANOTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_FAST))}, + "BPF_T_NANOTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC))}, + "BPF_T_NANOTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC_FAST))}, + "BPF_T_NONE": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NONE))}, + "BPF_T_NORMAL": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NORMAL))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_AOS": {"untyped int", constant.MakeInt64(int64(q.DLT_AOS))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CAN_SOCKETCAN": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN_SOCKETCAN))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DBUS": {"untyped int", constant.MakeInt64(int64(q.DLT_DBUS))}, + "DLT_DECT": {"untyped int", constant.MakeInt64(int64(q.DLT_DECT))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_DVB_CI": {"untyped int", constant.MakeInt64(int64(q.DLT_DVB_CI))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FC_2": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2))}, + "DLT_FC_2_WITH_FRAME_DELIMS": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2_WITH_FRAME_DELIMS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_GSMTAP_ABIS": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_ABIS))}, + "DLT_GSMTAP_UM": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_UM))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NOFCS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NOFCS))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPFILTER": {"untyped int", constant.MakeInt64(int64(q.DLT_IPFILTER))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPOIB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPOIB))}, + "DLT_IPV4": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV4))}, + "DLT_IPV6": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV6))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_ATM_CEMIC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM_CEMIC))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FIBRECHANNEL))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_SRX_E2E": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SRX_E2E))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_JUNIPER_VS": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VS))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_EVDEV": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_EVDEV))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_PPP_WITHDIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_PPP_WITHDIRECTION))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MATCHING_MAX": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MAX))}, + "DLT_MATCHING_MIN": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MIN))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MPEG_2_TS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPEG_2_TS))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_MUX27010": {"untyped int", constant.MakeInt64(int64(q.DLT_MUX27010))}, + "DLT_NETANALYZER": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER))}, + "DLT_NETANALYZER_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER_TRANSPARENT))}, + "DLT_NFC_LLCP": {"untyped int", constant.MakeInt64(int64(q.DLT_NFC_LLCP))}, + "DLT_NFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_NFLOG))}, + "DLT_NG40": {"untyped int", constant.MakeInt64(int64(q.DLT_NG40))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PPP_WITH_DIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIRECTION))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_STANAG_5066_D_PDU": {"untyped int", constant.MakeInt64(int64(q.DLT_STANAG_5066_D_PDU))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_USB_LINUX_MMAPPED": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX_MMAPPED))}, + "DLT_USER0": {"untyped int", constant.MakeInt64(int64(q.DLT_USER0))}, + "DLT_USER1": {"untyped int", constant.MakeInt64(int64(q.DLT_USER1))}, + "DLT_USER10": {"untyped int", constant.MakeInt64(int64(q.DLT_USER10))}, + "DLT_USER11": {"untyped int", constant.MakeInt64(int64(q.DLT_USER11))}, + "DLT_USER12": {"untyped int", constant.MakeInt64(int64(q.DLT_USER12))}, + "DLT_USER13": {"untyped int", constant.MakeInt64(int64(q.DLT_USER13))}, + "DLT_USER14": {"untyped int", constant.MakeInt64(int64(q.DLT_USER14))}, + "DLT_USER15": {"untyped int", constant.MakeInt64(int64(q.DLT_USER15))}, + "DLT_USER2": {"untyped int", constant.MakeInt64(int64(q.DLT_USER2))}, + "DLT_USER3": {"untyped int", constant.MakeInt64(int64(q.DLT_USER3))}, + "DLT_USER4": {"untyped int", constant.MakeInt64(int64(q.DLT_USER4))}, + "DLT_USER5": {"untyped int", constant.MakeInt64(int64(q.DLT_USER5))}, + "DLT_USER6": {"untyped int", constant.MakeInt64(int64(q.DLT_USER6))}, + "DLT_USER7": {"untyped int", constant.MakeInt64(int64(q.DLT_USER7))}, + "DLT_USER8": {"untyped int", constant.MakeInt64(int64(q.DLT_USER8))}, + "DLT_USER9": {"untyped int", constant.MakeInt64(int64(q.DLT_USER9))}, + "DLT_WIHART": {"untyped int", constant.MakeInt64(int64(q.DLT_WIHART))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_FS": {"untyped int", constant.MakeInt64(int64(q.EVFILT_FS))}, + "EVFILT_LIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_LIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_USER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_USER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_DROP": {"untyped int", constant.MakeInt64(int64(q.EV_DROP))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_CANCEL": {"untyped int", constant.MakeInt64(int64(q.F_CANCEL))}, + "F_DUP2FD": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD))}, + "F_DUP2FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD_CLOEXEC))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_OGETLK": {"untyped int", constant.MakeInt64(int64(q.F_OGETLK))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_OSETLK": {"untyped int", constant.MakeInt64(int64(q.F_OSETLK))}, + "F_OSETLKW": {"untyped int", constant.MakeInt64(int64(q.F_OSETLKW))}, + "F_RDAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_RDAHEAD))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_READAHEAD))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLK_REMOTE": {"untyped int", constant.MakeInt64(int64(q.F_SETLK_REMOTE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_UNLCKSYS": {"untyped int", constant.MakeInt64(int64(q.F_UNLCKSYS))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_CANTCONFIG": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCONFIG))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DRV_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_OACTIVE))}, + "IFF_DRV_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_RUNNING))}, + "IFF_DYING": {"untyped int", constant.MakeInt64(int64(q.IFF_DYING))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MONITOR": {"untyped int", constant.MakeInt64(int64(q.IFF_MONITOR))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PPROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PPROMISC))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RENAMING": {"untyped int", constant.MakeInt64(int64(q.IFF_RENAMING))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_SMART": {"untyped int", constant.MakeInt64(int64(q.IFF_SMART))}, + "IFF_STATICARP": {"untyped int", constant.MakeInt64(int64(q.IFF_STATICARP))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_IPXIP": {"untyped int", constant.MakeInt64(int64(q.IFT_IPXIP))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_MASK))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OLD_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OLD_DIVERT))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEND))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SKIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SKIP))}, + "IPPROTO_SPACER": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SPACER))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TLSP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDANY))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXOPTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXOPTHDR))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_GROUP_SRC_FILTER))}, + "IPV6_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_MEMBERSHIPS))}, + "IPV6_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_SOCK_SRC_FILTER))}, + "IPV6_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIN_MEMBERSHIPS))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MSFILTER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_PREFER_TEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_TEMPADDR))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IP_BINDANY))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_DONTFRAG))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_DUMMYNET3": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET3))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW3": {"untyped int", constant.MakeInt64(int64(q.IP_FW3))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_NAT_CFG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_CFG))}, + "IP_FW_NAT_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_DEL))}, + "IP_FW_NAT_GET_CONFIG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_CONFIG))}, + "IP_FW_NAT_GET_LOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_LOG))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_TABLE_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_ADD))}, + "IP_FW_TABLE_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_DEL))}, + "IP_FW_TABLE_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_FLUSH))}, + "IP_FW_TABLE_GETSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_GETSIZE))}, + "IP_FW_TABLE_LIST": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_LIST))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_GROUP_SRC_FILTER))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MAX_SOCK_MUTE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_MUTE_FILTER))}, + "IP_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_SRC_FILTER))}, + "IP_MAX_SOURCE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOURCE_FILTER))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_ONESBCAST": {"untyped int", constant.MakeInt64(int64(q.IP_ONESBCAST))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_SENDSRCADDR": {"untyped int", constant.MakeInt64(int64(q.IP_SENDSRCADDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_AUTOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_AUTOSYNC))}, + "MADV_CORE": {"untyped int", constant.MakeInt64(int64(q.MADV_CORE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOCORE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_NOSYNC))}, + "MADV_PROTECT": {"untyped int", constant.MakeInt64(int64(q.MADV_PROTECT))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ALIGNED_SUPER": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNED_SUPER))}, + "MAP_ALIGNMENT_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_MASK))}, + "MAP_ALIGNMENT_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_SHIFT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCORE))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MAP_NOSYNC))}, + "MAP_PREFAULT_READ": {"untyped int", constant.MakeInt64(int64(q.MAP_PREFAULT_READ))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_RESERVED0080": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0080))}, + "MAP_RESERVED0100": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0100))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.MSG_COMPAT))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_NBIO": {"untyped int", constant.MakeInt64(int64(q.MSG_NBIO))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_NOTIFICATION": {"untyped int", constant.MakeInt64(int64(q.MSG_NOTIFICATION))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFLISTL": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLISTL))}, + "NET_RT_IFMALIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFMALIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FFAND": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFAND))}, + "NOTE_FFCOPY": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCOPY))}, + "NOTE_FFCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCTRLMASK))}, + "NOTE_FFLAGSMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFLAGSMASK))}, + "NOTE_FFNOP": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFNOP))}, + "NOTE_FFOR": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFOR))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRIGGER": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRIGGER))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXEC": {"untyped int", constant.MakeInt64(int64(q.O_EXEC))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_TTY_INIT": {"untyped int", constant.MakeInt64(int64(q.O_TTY_INIT))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_GWFLAG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RTF_GWFLAG_COMPAT))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLDATA": {"untyped int", constant.MakeInt64(int64(q.RTF_LLDATA))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_RNH_LOCKED": {"untyped int", constant.MakeInt64(int64(q.RTF_RNH_LOCKED))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_STICKY": {"untyped int", constant.MakeInt64(int64(q.RTF_STICKY))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RTV_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.RTV_WEIGHT))}, + "RT_CACHING_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.RT_CACHING_CONTEXT))}, + "RT_DEFAULT_FIB": {"untyped int", constant.MakeInt64(int64(q.RT_DEFAULT_FIB))}, + "RT_NORTREF": {"untyped int", constant.MakeInt64(int64(q.RT_NORTREF))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SCM_BINTIME))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFIB))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGPRIVATE_0": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_0))}, + "SIOCGPRIVATE_1": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_1))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFIB))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFRVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRVNET))}, + "SIOCSIFVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFVNET))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SO_BINTIME))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LABEL": {"untyped int", constant.MakeInt64(int64(q.SO_LABEL))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LISTENINCQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENINCQLEN))}, + "SO_LISTENQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLEN))}, + "SO_LISTENQLIMIT": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLIMIT))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_NO_DDP": {"untyped int", constant.MakeInt64(int64(q.SO_NO_DDP))}, + "SO_NO_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.SO_NO_OFFLOAD))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERLABEL": {"untyped int", constant.MakeInt64(int64(q.SO_PEERLABEL))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_PROTOTYPE": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOTYPE))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SO_SETFIB))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_USER_COOKIE": {"untyped int", constant.MakeInt64(int64(q.SO_USER_COOKIE))}, + "SO_VENDOR": {"untyped int", constant.MakeInt64(int64(q.SO_VENDOR))}, + "SYS_ABORT2": {"untyped int", constant.MakeInt64(int64(q.SYS_ABORT2))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT))}, + "SYS_AUDITCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITCTL))}, + "SYS_AUDITON": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITON))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BINDAT": {"untyped int", constant.MakeInt64(int64(q.SYS_BINDAT))}, + "SYS_CAP_ENTER": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_ENTER))}, + "SYS_CAP_GETMODE": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_GETMODE))}, + "SYS_CAP_GETRIGHTS": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_GETRIGHTS))}, + "SYS_CAP_NEW": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_NEW))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHFLAGSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGSAT))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETCPUCLOCKID2": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETCPUCLOCKID2))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CONNECTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECTAT))}, + "SYS_CPUSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET))}, + "SYS_CPUSET_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETAFFINITY))}, + "SYS_CPUSET_GETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETID))}, + "SYS_CPUSET_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETAFFINITY))}, + "SYS_CPUSET_SETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETID))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_EACCESS))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FD))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_LINK))}, + "SYS_EXTATTR_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FD))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_LINK))}, + "SYS_EXTATTR_LIST_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FD))}, + "SYS_EXTATTR_LIST_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FILE))}, + "SYS_EXTATTR_LIST_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_LINK))}, + "SYS_EXTATTR_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FD))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTATTR_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_LINK))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FEXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_FEXECVE))}, + "SYS_FFCLOCK_GETCOUNTER": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETCOUNTER))}, + "SYS_FFCLOCK_GETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETESTIMATE))}, + "SYS_FFCLOCK_SETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_SETESTIMATE))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREEBSD6_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_FTRUNCATE))}, + "SYS_FREEBSD6_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_LSEEK))}, + "SYS_FREEBSD6_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_MMAP))}, + "SYS_FREEBSD6_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_PREAD))}, + "SYS_FREEBSD6_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_PWRITE))}, + "SYS_FREEBSD6_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_TRUNCATE))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT))}, + "SYS_GETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT_ADDR))}, + "SYS_GETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUID))}, + "SYS_GETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCONTEXT))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGINCLASS))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_JAIL": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL))}, + "SYS_JAIL_ATTACH": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_ATTACH))}, + "SYS_JAIL_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_GET))}, + "SYS_JAIL_REMOVE": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_REMOVE))}, + "SYS_JAIL_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_SET))}, + "SYS_KENV": {"untyped int", constant.MakeInt64(int64(q.SYS_KENV))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KLDFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIND))}, + "SYS_KLDFIRSTMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIRSTMOD))}, + "SYS_KLDLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDLOAD))}, + "SYS_KLDNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDNEXT))}, + "SYS_KLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSTAT))}, + "SYS_KLDSYM": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSYM))}, + "SYS_KLDUNLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOAD))}, + "SYS_KLDUNLOADF": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOADF))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KTIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_CREATE))}, + "SYS_KTIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_DELETE))}, + "SYS_KTIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETOVERRUN))}, + "SYS_KTIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETTIME))}, + "SYS_KTIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_SETTIME))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETFH))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_LPATHCONF))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_MAC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MAC_SYSCALL))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFIND))}, + "SYS_MODFNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFNEXT))}, + "SYS_MODNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODNEXT))}, + "SYS_MODSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODSTAT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSTAT))}, + "SYS_NLSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NLSTAT))}, + "SYS_NMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_NMOUNT))}, + "SYS_NSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NSTAT))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_NTP_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_GETTIME))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPENBSD_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENBSD_POLL))}, + "SYS_OVADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_OVADVISE))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PDFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_PDFORK))}, + "SYS_PDGETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_PDGETPID))}, + "SYS_PDKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_PDKILL))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POSIX_FADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FADVISE))}, + "SYS_POSIX_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FALLOCATE))}, + "SYS_POSIX_OPENPT": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_OPENPT))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROCCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCCTL))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_RCTL_ADD_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_ADD_RULE))}, + "SYS_RCTL_GET_LIMITS": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_LIMITS))}, + "SYS_RCTL_GET_RACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RACCT))}, + "SYS_RCTL_GET_RULES": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RULES))}, + "SYS_RCTL_REMOVE_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_REMOVE_RULE))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_RFORK))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RTPRIO": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO))}, + "SYS_RTPRIO_THREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO_THREAD))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SCTP_GENERIC_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_RECVMSG))}, + "SYS_SCTP_GENERIC_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG))}, + "SYS_SCTP_GENERIC_SENDMSG_IOV": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG_IOV))}, + "SYS_SCTP_PEELOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_PEELOFF))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT))}, + "SYS_SETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT_ADDR))}, + "SYS_SETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUID))}, + "SYS_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETCONTEXT))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFIB))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGINCLASS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_OPEN))}, + "SYS_SHM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_UNLINK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGQUEUE))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGTIMEDWAIT))}, + "SYS_SIGWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAIT))}, + "SYS_SIGWAITINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAITINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCONTEXT))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_THR_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_CREATE))}, + "SYS_THR_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_EXIT))}, + "SYS_THR_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL))}, + "SYS_THR_KILL2": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL2))}, + "SYS_THR_NEW": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_NEW))}, + "SYS_THR_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SELF))}, + "SYS_THR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SET_NAME))}, + "SYS_THR_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SUSPEND))}, + "SYS_THR_WAKE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_WAKE))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_YIELD))}, + "SYS__UMTX_LOCK": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_LOCK))}, + "SYS__UMTX_OP": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_OP))}, + "SYS__UMTX_UNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_UNLOCK))}, + "SYS___ACL_ACLCHECK_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FD))}, + "SYS___ACL_ACLCHECK_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FILE))}, + "SYS___ACL_ACLCHECK_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_LINK))}, + "SYS___ACL_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FD))}, + "SYS___ACL_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FILE))}, + "SYS___ACL_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_LINK))}, + "SYS___ACL_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FD))}, + "SYS___ACL_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FILE))}, + "SYS___ACL_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_LINK))}, + "SYS___ACL_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FD))}, + "SYS___ACL_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FILE))}, + "SYS___ACL_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_LINK))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___MAC_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_EXECVE))}, + "SYS___MAC_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FD))}, + "SYS___MAC_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FILE))}, + "SYS___MAC_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LINK))}, + "SYS___MAC_GET_PID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PID))}, + "SYS___MAC_GET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PROC))}, + "SYS___MAC_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FD))}, + "SYS___MAC_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FILE))}, + "SYS___MAC_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LINK))}, + "SYS___MAC_SET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_PROC))}, + "SYS___SETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS___SETUGID))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofBpfZbuf": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbuf))}, + "SizeofBpfZbufHeader": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbufHeader))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CA_NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_CA_NAME_MAX))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_VENDOR": {"untyped int", constant.MakeInt64(int64(q.TCP_VENDOR))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DCD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DCD))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTMASTER": {"untyped int", constant.MakeInt64(int64(q.TIOCPTMASTER))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VERASE2": {"untyped int", constant.MakeInt64(int64(q.VERASE2))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WLINUXCLONE": {"untyped int", constant.MakeInt64(int64(q.WLINUXCLONE))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WTRAPPED": {"untyped int", constant.MakeInt64(int64(q.WTRAPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_freebsd_amd64.go b/pkg/syscall/go123_export_freebsd_amd64.go new file mode 100755 index 00000000..d7eef2bf --- /dev/null +++ b/pkg/syscall/go123_export_freebsd_amd64.go @@ -0,0 +1,2250 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "BpfZbuf": reflect.TypeOf((*q.BpfZbuf)(nil)).Elem(), + "BpfZbufHeader": reflect.TypeOf((*q.BpfZbufHeader)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatat": reflect.ValueOf(q.Fstatat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECAPMODE": {reflect.TypeOf(q.ECAPMODE), constant.MakeInt64(int64(q.ECAPMODE))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOOFUS": {reflect.TypeOf(q.EDOOFUS), constant.MakeInt64(int64(q.EDOOFUS))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCAPABLE": {reflect.TypeOf(q.ENOTCAPABLE), constant.MakeInt64(int64(q.ENOTCAPABLE))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGLIBRT": {reflect.TypeOf(q.SIGLIBRT), constant.MakeInt64(int64(q.SIGLIBRT))}, + "SIGLWP": {reflect.TypeOf(q.SIGLWP), constant.MakeInt64(int64(q.SIGLWP))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ARP": {"untyped int", constant.MakeInt64(int64(q.AF_ARP))}, + "AF_ATM": {"untyped int", constant.MakeInt64(int64(q.AF_ATM))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_INET6_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET6_SDP))}, + "AF_INET_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET_SDP))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_NETGRAPH": {"untyped int", constant.MakeInt64(int64(q.AF_NETGRAPH))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SCLUSTER": {"untyped int", constant.MakeInt64(int64(q.AF_SCLUSTER))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SLOW": {"untyped int", constant.MakeInt64(int64(q.AF_SLOW))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VENDOR00": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR00))}, + "AF_VENDOR01": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR01))}, + "AF_VENDOR02": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR02))}, + "AF_VENDOR03": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR03))}, + "AF_VENDOR04": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR04))}, + "AF_VENDOR05": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR05))}, + "AF_VENDOR06": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR06))}, + "AF_VENDOR07": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR07))}, + "AF_VENDOR08": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR08))}, + "AF_VENDOR09": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR09))}, + "AF_VENDOR10": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR10))}, + "AF_VENDOR11": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR11))}, + "AF_VENDOR12": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR12))}, + "AF_VENDOR13": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR13))}, + "AF_VENDOR14": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR14))}, + "AF_VENDOR15": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR15))}, + "AF_VENDOR16": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR16))}, + "AF_VENDOR17": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR17))}, + "AF_VENDOR18": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR18))}, + "AF_VENDOR19": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR19))}, + "AF_VENDOR20": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR20))}, + "AF_VENDOR21": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR21))}, + "AF_VENDOR22": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR22))}, + "AF_VENDOR23": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR23))}, + "AF_VENDOR24": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR24))}, + "AF_VENDOR25": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR25))}, + "AF_VENDOR26": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR26))}, + "AF_VENDOR27": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR27))}, + "AF_VENDOR28": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR28))}, + "AF_VENDOR29": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR29))}, + "AF_VENDOR30": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR30))}, + "AF_VENDOR31": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR31))}, + "AF_VENDOR32": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR32))}, + "AF_VENDOR33": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR33))}, + "AF_VENDOR34": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR34))}, + "AF_VENDOR35": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR35))}, + "AF_VENDOR36": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR36))}, + "AF_VENDOR37": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR37))}, + "AF_VENDOR38": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR38))}, + "AF_VENDOR39": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR39))}, + "AF_VENDOR40": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR40))}, + "AF_VENDOR41": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR41))}, + "AF_VENDOR42": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR42))}, + "AF_VENDOR43": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR43))}, + "AF_VENDOR44": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR44))}, + "AF_VENDOR45": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR45))}, + "AF_VENDOR46": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR46))}, + "AF_VENDOR47": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR47))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCFEEDBACK))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRECTION))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCGETBUFMODE))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGETZMAX": {"untyped int", constant.MakeInt64(int64(q.BIOCGETZMAX))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCGTSTAMP))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCROTZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCROTZBUF))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRECTION))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCSETBUFMODE))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETFNR": {"untyped int", constant.MakeInt64(int64(q.BIOCSETFNR))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSETZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETZBUF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCSTSTAMP))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_BUFMODE_BUFFER": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_BUFFER))}, + "BPF_BUFMODE_ZBUF": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_ZBUF))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_T_BINTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME))}, + "BPF_T_BINTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_FAST))}, + "BPF_T_BINTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC))}, + "BPF_T_BINTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC_FAST))}, + "BPF_T_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FAST))}, + "BPF_T_FLAG_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FLAG_MASK))}, + "BPF_T_FORMAT_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FORMAT_MASK))}, + "BPF_T_MICROTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME))}, + "BPF_T_MICROTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_FAST))}, + "BPF_T_MICROTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC))}, + "BPF_T_MICROTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC_FAST))}, + "BPF_T_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC))}, + "BPF_T_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC_FAST))}, + "BPF_T_NANOTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME))}, + "BPF_T_NANOTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_FAST))}, + "BPF_T_NANOTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC))}, + "BPF_T_NANOTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC_FAST))}, + "BPF_T_NONE": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NONE))}, + "BPF_T_NORMAL": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NORMAL))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_AOS": {"untyped int", constant.MakeInt64(int64(q.DLT_AOS))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CAN_SOCKETCAN": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN_SOCKETCAN))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DBUS": {"untyped int", constant.MakeInt64(int64(q.DLT_DBUS))}, + "DLT_DECT": {"untyped int", constant.MakeInt64(int64(q.DLT_DECT))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_DVB_CI": {"untyped int", constant.MakeInt64(int64(q.DLT_DVB_CI))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FC_2": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2))}, + "DLT_FC_2_WITH_FRAME_DELIMS": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2_WITH_FRAME_DELIMS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_GSMTAP_ABIS": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_ABIS))}, + "DLT_GSMTAP_UM": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_UM))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NOFCS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NOFCS))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPFILTER": {"untyped int", constant.MakeInt64(int64(q.DLT_IPFILTER))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPOIB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPOIB))}, + "DLT_IPV4": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV4))}, + "DLT_IPV6": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV6))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_ATM_CEMIC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM_CEMIC))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FIBRECHANNEL))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_SRX_E2E": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SRX_E2E))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_JUNIPER_VS": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VS))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_EVDEV": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_EVDEV))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_PPP_WITHDIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_PPP_WITHDIRECTION))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MATCHING_MAX": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MAX))}, + "DLT_MATCHING_MIN": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MIN))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MPEG_2_TS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPEG_2_TS))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_MUX27010": {"untyped int", constant.MakeInt64(int64(q.DLT_MUX27010))}, + "DLT_NETANALYZER": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER))}, + "DLT_NETANALYZER_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER_TRANSPARENT))}, + "DLT_NFC_LLCP": {"untyped int", constant.MakeInt64(int64(q.DLT_NFC_LLCP))}, + "DLT_NFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_NFLOG))}, + "DLT_NG40": {"untyped int", constant.MakeInt64(int64(q.DLT_NG40))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PPP_WITH_DIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIRECTION))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_STANAG_5066_D_PDU": {"untyped int", constant.MakeInt64(int64(q.DLT_STANAG_5066_D_PDU))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_USB_LINUX_MMAPPED": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX_MMAPPED))}, + "DLT_USER0": {"untyped int", constant.MakeInt64(int64(q.DLT_USER0))}, + "DLT_USER1": {"untyped int", constant.MakeInt64(int64(q.DLT_USER1))}, + "DLT_USER10": {"untyped int", constant.MakeInt64(int64(q.DLT_USER10))}, + "DLT_USER11": {"untyped int", constant.MakeInt64(int64(q.DLT_USER11))}, + "DLT_USER12": {"untyped int", constant.MakeInt64(int64(q.DLT_USER12))}, + "DLT_USER13": {"untyped int", constant.MakeInt64(int64(q.DLT_USER13))}, + "DLT_USER14": {"untyped int", constant.MakeInt64(int64(q.DLT_USER14))}, + "DLT_USER15": {"untyped int", constant.MakeInt64(int64(q.DLT_USER15))}, + "DLT_USER2": {"untyped int", constant.MakeInt64(int64(q.DLT_USER2))}, + "DLT_USER3": {"untyped int", constant.MakeInt64(int64(q.DLT_USER3))}, + "DLT_USER4": {"untyped int", constant.MakeInt64(int64(q.DLT_USER4))}, + "DLT_USER5": {"untyped int", constant.MakeInt64(int64(q.DLT_USER5))}, + "DLT_USER6": {"untyped int", constant.MakeInt64(int64(q.DLT_USER6))}, + "DLT_USER7": {"untyped int", constant.MakeInt64(int64(q.DLT_USER7))}, + "DLT_USER8": {"untyped int", constant.MakeInt64(int64(q.DLT_USER8))}, + "DLT_USER9": {"untyped int", constant.MakeInt64(int64(q.DLT_USER9))}, + "DLT_WIHART": {"untyped int", constant.MakeInt64(int64(q.DLT_WIHART))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_FS": {"untyped int", constant.MakeInt64(int64(q.EVFILT_FS))}, + "EVFILT_LIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_LIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_USER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_USER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_DROP": {"untyped int", constant.MakeInt64(int64(q.EV_DROP))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_CANCEL": {"untyped int", constant.MakeInt64(int64(q.F_CANCEL))}, + "F_DUP2FD": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD))}, + "F_DUP2FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD_CLOEXEC))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_OGETLK": {"untyped int", constant.MakeInt64(int64(q.F_OGETLK))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_OSETLK": {"untyped int", constant.MakeInt64(int64(q.F_OSETLK))}, + "F_OSETLKW": {"untyped int", constant.MakeInt64(int64(q.F_OSETLKW))}, + "F_RDAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_RDAHEAD))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_READAHEAD))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLK_REMOTE": {"untyped int", constant.MakeInt64(int64(q.F_SETLK_REMOTE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_UNLCKSYS": {"untyped int", constant.MakeInt64(int64(q.F_UNLCKSYS))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_CANTCONFIG": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCONFIG))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DRV_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_OACTIVE))}, + "IFF_DRV_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_RUNNING))}, + "IFF_DYING": {"untyped int", constant.MakeInt64(int64(q.IFF_DYING))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MONITOR": {"untyped int", constant.MakeInt64(int64(q.IFF_MONITOR))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PPROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PPROMISC))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RENAMING": {"untyped int", constant.MakeInt64(int64(q.IFF_RENAMING))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_SMART": {"untyped int", constant.MakeInt64(int64(q.IFF_SMART))}, + "IFF_STATICARP": {"untyped int", constant.MakeInt64(int64(q.IFF_STATICARP))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_IPXIP": {"untyped int", constant.MakeInt64(int64(q.IFT_IPXIP))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_MASK))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OLD_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OLD_DIVERT))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEND))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SKIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SKIP))}, + "IPPROTO_SPACER": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SPACER))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TLSP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDANY))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXOPTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXOPTHDR))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_GROUP_SRC_FILTER))}, + "IPV6_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_MEMBERSHIPS))}, + "IPV6_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_SOCK_SRC_FILTER))}, + "IPV6_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIN_MEMBERSHIPS))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MSFILTER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_PREFER_TEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_TEMPADDR))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IP_BINDANY))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_DONTFRAG))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_DUMMYNET3": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET3))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW3": {"untyped int", constant.MakeInt64(int64(q.IP_FW3))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_NAT_CFG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_CFG))}, + "IP_FW_NAT_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_DEL))}, + "IP_FW_NAT_GET_CONFIG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_CONFIG))}, + "IP_FW_NAT_GET_LOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_LOG))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_TABLE_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_ADD))}, + "IP_FW_TABLE_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_DEL))}, + "IP_FW_TABLE_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_FLUSH))}, + "IP_FW_TABLE_GETSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_GETSIZE))}, + "IP_FW_TABLE_LIST": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_LIST))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_GROUP_SRC_FILTER))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MAX_SOCK_MUTE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_MUTE_FILTER))}, + "IP_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_SRC_FILTER))}, + "IP_MAX_SOURCE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOURCE_FILTER))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_ONESBCAST": {"untyped int", constant.MakeInt64(int64(q.IP_ONESBCAST))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_SENDSRCADDR": {"untyped int", constant.MakeInt64(int64(q.IP_SENDSRCADDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_AUTOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_AUTOSYNC))}, + "MADV_CORE": {"untyped int", constant.MakeInt64(int64(q.MADV_CORE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOCORE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_NOSYNC))}, + "MADV_PROTECT": {"untyped int", constant.MakeInt64(int64(q.MADV_PROTECT))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_32BIT": {"untyped int", constant.MakeInt64(int64(q.MAP_32BIT))}, + "MAP_ALIGNED_SUPER": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNED_SUPER))}, + "MAP_ALIGNMENT_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_MASK))}, + "MAP_ALIGNMENT_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_SHIFT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCORE))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MAP_NOSYNC))}, + "MAP_PREFAULT_READ": {"untyped int", constant.MakeInt64(int64(q.MAP_PREFAULT_READ))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_RESERVED0080": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0080))}, + "MAP_RESERVED0100": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0100))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.MSG_COMPAT))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_NBIO": {"untyped int", constant.MakeInt64(int64(q.MSG_NBIO))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_NOTIFICATION": {"untyped int", constant.MakeInt64(int64(q.MSG_NOTIFICATION))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFLISTL": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLISTL))}, + "NET_RT_IFMALIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFMALIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FFAND": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFAND))}, + "NOTE_FFCOPY": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCOPY))}, + "NOTE_FFCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCTRLMASK))}, + "NOTE_FFLAGSMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFLAGSMASK))}, + "NOTE_FFNOP": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFNOP))}, + "NOTE_FFOR": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFOR))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRIGGER": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRIGGER))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXEC": {"untyped int", constant.MakeInt64(int64(q.O_EXEC))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_TTY_INIT": {"untyped int", constant.MakeInt64(int64(q.O_TTY_INIT))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_GWFLAG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RTF_GWFLAG_COMPAT))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLDATA": {"untyped int", constant.MakeInt64(int64(q.RTF_LLDATA))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_RNH_LOCKED": {"untyped int", constant.MakeInt64(int64(q.RTF_RNH_LOCKED))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_STICKY": {"untyped int", constant.MakeInt64(int64(q.RTF_STICKY))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RTV_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.RTV_WEIGHT))}, + "RT_CACHING_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.RT_CACHING_CONTEXT))}, + "RT_DEFAULT_FIB": {"untyped int", constant.MakeInt64(int64(q.RT_DEFAULT_FIB))}, + "RT_NORTREF": {"untyped int", constant.MakeInt64(int64(q.RT_NORTREF))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SCM_BINTIME))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFIB))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGPRIVATE_0": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_0))}, + "SIOCGPRIVATE_1": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_1))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFIB))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFRVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRVNET))}, + "SIOCSIFVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFVNET))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SO_BINTIME))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LABEL": {"untyped int", constant.MakeInt64(int64(q.SO_LABEL))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LISTENINCQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENINCQLEN))}, + "SO_LISTENQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLEN))}, + "SO_LISTENQLIMIT": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLIMIT))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_NO_DDP": {"untyped int", constant.MakeInt64(int64(q.SO_NO_DDP))}, + "SO_NO_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.SO_NO_OFFLOAD))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERLABEL": {"untyped int", constant.MakeInt64(int64(q.SO_PEERLABEL))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_PROTOTYPE": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOTYPE))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SO_SETFIB))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_USER_COOKIE": {"untyped int", constant.MakeInt64(int64(q.SO_USER_COOKIE))}, + "SO_VENDOR": {"untyped int", constant.MakeInt64(int64(q.SO_VENDOR))}, + "SYS_ABORT2": {"untyped int", constant.MakeInt64(int64(q.SYS_ABORT2))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT))}, + "SYS_AUDITCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITCTL))}, + "SYS_AUDITON": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITON))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BINDAT": {"untyped int", constant.MakeInt64(int64(q.SYS_BINDAT))}, + "SYS_CAP_ENTER": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_ENTER))}, + "SYS_CAP_GETMODE": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_GETMODE))}, + "SYS_CAP_GETRIGHTS": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_GETRIGHTS))}, + "SYS_CAP_NEW": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_NEW))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHFLAGSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGSAT))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETCPUCLOCKID2": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETCPUCLOCKID2))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CONNECTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECTAT))}, + "SYS_CPUSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET))}, + "SYS_CPUSET_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETAFFINITY))}, + "SYS_CPUSET_GETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETID))}, + "SYS_CPUSET_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETAFFINITY))}, + "SYS_CPUSET_SETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETID))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_EACCESS))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FD))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_LINK))}, + "SYS_EXTATTR_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FD))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_LINK))}, + "SYS_EXTATTR_LIST_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FD))}, + "SYS_EXTATTR_LIST_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FILE))}, + "SYS_EXTATTR_LIST_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_LINK))}, + "SYS_EXTATTR_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FD))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTATTR_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_LINK))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FEXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_FEXECVE))}, + "SYS_FFCLOCK_GETCOUNTER": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETCOUNTER))}, + "SYS_FFCLOCK_GETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETESTIMATE))}, + "SYS_FFCLOCK_SETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_SETESTIMATE))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREEBSD6_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_FTRUNCATE))}, + "SYS_FREEBSD6_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_LSEEK))}, + "SYS_FREEBSD6_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_MMAP))}, + "SYS_FREEBSD6_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_PREAD))}, + "SYS_FREEBSD6_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_PWRITE))}, + "SYS_FREEBSD6_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_TRUNCATE))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT))}, + "SYS_GETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT_ADDR))}, + "SYS_GETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUID))}, + "SYS_GETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCONTEXT))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGINCLASS))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_JAIL": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL))}, + "SYS_JAIL_ATTACH": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_ATTACH))}, + "SYS_JAIL_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_GET))}, + "SYS_JAIL_REMOVE": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_REMOVE))}, + "SYS_JAIL_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_SET))}, + "SYS_KENV": {"untyped int", constant.MakeInt64(int64(q.SYS_KENV))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KLDFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIND))}, + "SYS_KLDFIRSTMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIRSTMOD))}, + "SYS_KLDLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDLOAD))}, + "SYS_KLDNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDNEXT))}, + "SYS_KLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSTAT))}, + "SYS_KLDSYM": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSYM))}, + "SYS_KLDUNLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOAD))}, + "SYS_KLDUNLOADF": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOADF))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KTIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_CREATE))}, + "SYS_KTIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_DELETE))}, + "SYS_KTIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETOVERRUN))}, + "SYS_KTIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETTIME))}, + "SYS_KTIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_SETTIME))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETFH))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_LPATHCONF))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_MAC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MAC_SYSCALL))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFIND))}, + "SYS_MODFNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFNEXT))}, + "SYS_MODNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODNEXT))}, + "SYS_MODSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODSTAT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSTAT))}, + "SYS_NLSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NLSTAT))}, + "SYS_NMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_NMOUNT))}, + "SYS_NSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NSTAT))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_NTP_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_GETTIME))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPENBSD_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENBSD_POLL))}, + "SYS_OVADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_OVADVISE))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PDFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_PDFORK))}, + "SYS_PDGETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_PDGETPID))}, + "SYS_PDKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_PDKILL))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POSIX_FADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FADVISE))}, + "SYS_POSIX_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FALLOCATE))}, + "SYS_POSIX_OPENPT": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_OPENPT))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROCCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCCTL))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_RCTL_ADD_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_ADD_RULE))}, + "SYS_RCTL_GET_LIMITS": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_LIMITS))}, + "SYS_RCTL_GET_RACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RACCT))}, + "SYS_RCTL_GET_RULES": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RULES))}, + "SYS_RCTL_REMOVE_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_REMOVE_RULE))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_RFORK))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RTPRIO": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO))}, + "SYS_RTPRIO_THREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO_THREAD))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SCTP_GENERIC_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_RECVMSG))}, + "SYS_SCTP_GENERIC_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG))}, + "SYS_SCTP_GENERIC_SENDMSG_IOV": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG_IOV))}, + "SYS_SCTP_PEELOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_PEELOFF))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT))}, + "SYS_SETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT_ADDR))}, + "SYS_SETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUID))}, + "SYS_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETCONTEXT))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFIB))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGINCLASS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_OPEN))}, + "SYS_SHM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_UNLINK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGQUEUE))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGTIMEDWAIT))}, + "SYS_SIGWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAIT))}, + "SYS_SIGWAITINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAITINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCONTEXT))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_THR_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_CREATE))}, + "SYS_THR_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_EXIT))}, + "SYS_THR_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL))}, + "SYS_THR_KILL2": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL2))}, + "SYS_THR_NEW": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_NEW))}, + "SYS_THR_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SELF))}, + "SYS_THR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SET_NAME))}, + "SYS_THR_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SUSPEND))}, + "SYS_THR_WAKE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_WAKE))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_YIELD))}, + "SYS__UMTX_LOCK": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_LOCK))}, + "SYS__UMTX_OP": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_OP))}, + "SYS__UMTX_UNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_UNLOCK))}, + "SYS___ACL_ACLCHECK_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FD))}, + "SYS___ACL_ACLCHECK_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FILE))}, + "SYS___ACL_ACLCHECK_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_LINK))}, + "SYS___ACL_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FD))}, + "SYS___ACL_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FILE))}, + "SYS___ACL_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_LINK))}, + "SYS___ACL_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FD))}, + "SYS___ACL_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FILE))}, + "SYS___ACL_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_LINK))}, + "SYS___ACL_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FD))}, + "SYS___ACL_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FILE))}, + "SYS___ACL_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_LINK))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___MAC_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_EXECVE))}, + "SYS___MAC_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FD))}, + "SYS___MAC_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FILE))}, + "SYS___MAC_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LINK))}, + "SYS___MAC_GET_PID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PID))}, + "SYS___MAC_GET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PROC))}, + "SYS___MAC_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FD))}, + "SYS___MAC_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FILE))}, + "SYS___MAC_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LINK))}, + "SYS___MAC_SET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_PROC))}, + "SYS___SETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS___SETUGID))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofBpfZbuf": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbuf))}, + "SizeofBpfZbufHeader": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbufHeader))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CA_NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_CA_NAME_MAX))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_VENDOR": {"untyped int", constant.MakeInt64(int64(q.TCP_VENDOR))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DCD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DCD))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTMASTER": {"untyped int", constant.MakeInt64(int64(q.TIOCPTMASTER))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VERASE2": {"untyped int", constant.MakeInt64(int64(q.VERASE2))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WLINUXCLONE": {"untyped int", constant.MakeInt64(int64(q.WLINUXCLONE))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WTRAPPED": {"untyped int", constant.MakeInt64(int64(q.WTRAPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_freebsd_arm.go b/pkg/syscall/go123_export_freebsd_arm.go new file mode 100755 index 00000000..054dee78 --- /dev/null +++ b/pkg/syscall/go123_export_freebsd_arm.go @@ -0,0 +1,2249 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "BpfZbuf": reflect.TypeOf((*q.BpfZbuf)(nil)).Elem(), + "BpfZbufHeader": reflect.TypeOf((*q.BpfZbufHeader)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatat": reflect.ValueOf(q.Fstatat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECAPMODE": {reflect.TypeOf(q.ECAPMODE), constant.MakeInt64(int64(q.ECAPMODE))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOOFUS": {reflect.TypeOf(q.EDOOFUS), constant.MakeInt64(int64(q.EDOOFUS))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCAPABLE": {reflect.TypeOf(q.ENOTCAPABLE), constant.MakeInt64(int64(q.ENOTCAPABLE))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGLIBRT": {reflect.TypeOf(q.SIGLIBRT), constant.MakeInt64(int64(q.SIGLIBRT))}, + "SIGLWP": {reflect.TypeOf(q.SIGLWP), constant.MakeInt64(int64(q.SIGLWP))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ARP": {"untyped int", constant.MakeInt64(int64(q.AF_ARP))}, + "AF_ATM": {"untyped int", constant.MakeInt64(int64(q.AF_ATM))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_INET6_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET6_SDP))}, + "AF_INET_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET_SDP))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_NETGRAPH": {"untyped int", constant.MakeInt64(int64(q.AF_NETGRAPH))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SCLUSTER": {"untyped int", constant.MakeInt64(int64(q.AF_SCLUSTER))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SLOW": {"untyped int", constant.MakeInt64(int64(q.AF_SLOW))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VENDOR00": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR00))}, + "AF_VENDOR01": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR01))}, + "AF_VENDOR02": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR02))}, + "AF_VENDOR03": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR03))}, + "AF_VENDOR04": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR04))}, + "AF_VENDOR05": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR05))}, + "AF_VENDOR06": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR06))}, + "AF_VENDOR07": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR07))}, + "AF_VENDOR08": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR08))}, + "AF_VENDOR09": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR09))}, + "AF_VENDOR10": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR10))}, + "AF_VENDOR11": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR11))}, + "AF_VENDOR12": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR12))}, + "AF_VENDOR13": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR13))}, + "AF_VENDOR14": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR14))}, + "AF_VENDOR15": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR15))}, + "AF_VENDOR16": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR16))}, + "AF_VENDOR17": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR17))}, + "AF_VENDOR18": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR18))}, + "AF_VENDOR19": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR19))}, + "AF_VENDOR20": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR20))}, + "AF_VENDOR21": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR21))}, + "AF_VENDOR22": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR22))}, + "AF_VENDOR23": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR23))}, + "AF_VENDOR24": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR24))}, + "AF_VENDOR25": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR25))}, + "AF_VENDOR26": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR26))}, + "AF_VENDOR27": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR27))}, + "AF_VENDOR28": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR28))}, + "AF_VENDOR29": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR29))}, + "AF_VENDOR30": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR30))}, + "AF_VENDOR31": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR31))}, + "AF_VENDOR32": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR32))}, + "AF_VENDOR33": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR33))}, + "AF_VENDOR34": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR34))}, + "AF_VENDOR35": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR35))}, + "AF_VENDOR36": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR36))}, + "AF_VENDOR37": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR37))}, + "AF_VENDOR38": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR38))}, + "AF_VENDOR39": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR39))}, + "AF_VENDOR40": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR40))}, + "AF_VENDOR41": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR41))}, + "AF_VENDOR42": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR42))}, + "AF_VENDOR43": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR43))}, + "AF_VENDOR44": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR44))}, + "AF_VENDOR45": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR45))}, + "AF_VENDOR46": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR46))}, + "AF_VENDOR47": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR47))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCFEEDBACK))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRECTION))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCGETBUFMODE))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGETZMAX": {"untyped int", constant.MakeInt64(int64(q.BIOCGETZMAX))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCGTSTAMP))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCROTZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCROTZBUF))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRECTION))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCSETBUFMODE))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETFNR": {"untyped int", constant.MakeInt64(int64(q.BIOCSETFNR))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSETZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETZBUF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCSTSTAMP))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_BUFMODE_BUFFER": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_BUFFER))}, + "BPF_BUFMODE_ZBUF": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_ZBUF))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_T_BINTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME))}, + "BPF_T_BINTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_FAST))}, + "BPF_T_BINTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC))}, + "BPF_T_BINTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC_FAST))}, + "BPF_T_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FAST))}, + "BPF_T_FLAG_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FLAG_MASK))}, + "BPF_T_FORMAT_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FORMAT_MASK))}, + "BPF_T_MICROTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME))}, + "BPF_T_MICROTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_FAST))}, + "BPF_T_MICROTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC))}, + "BPF_T_MICROTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC_FAST))}, + "BPF_T_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC))}, + "BPF_T_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC_FAST))}, + "BPF_T_NANOTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME))}, + "BPF_T_NANOTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_FAST))}, + "BPF_T_NANOTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC))}, + "BPF_T_NANOTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC_FAST))}, + "BPF_T_NONE": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NONE))}, + "BPF_T_NORMAL": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NORMAL))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_AOS": {"untyped int", constant.MakeInt64(int64(q.DLT_AOS))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CAN_SOCKETCAN": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN_SOCKETCAN))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DBUS": {"untyped int", constant.MakeInt64(int64(q.DLT_DBUS))}, + "DLT_DECT": {"untyped int", constant.MakeInt64(int64(q.DLT_DECT))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_DVB_CI": {"untyped int", constant.MakeInt64(int64(q.DLT_DVB_CI))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FC_2": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2))}, + "DLT_FC_2_WITH_FRAME_DELIMS": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2_WITH_FRAME_DELIMS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_GSMTAP_ABIS": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_ABIS))}, + "DLT_GSMTAP_UM": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_UM))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NOFCS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NOFCS))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPFILTER": {"untyped int", constant.MakeInt64(int64(q.DLT_IPFILTER))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPOIB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPOIB))}, + "DLT_IPV4": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV4))}, + "DLT_IPV6": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV6))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_ATM_CEMIC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM_CEMIC))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FIBRECHANNEL))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_SRX_E2E": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SRX_E2E))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_JUNIPER_VS": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VS))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_EVDEV": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_EVDEV))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_PPP_WITHDIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_PPP_WITHDIRECTION))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MATCHING_MAX": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MAX))}, + "DLT_MATCHING_MIN": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MIN))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MPEG_2_TS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPEG_2_TS))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_MUX27010": {"untyped int", constant.MakeInt64(int64(q.DLT_MUX27010))}, + "DLT_NETANALYZER": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER))}, + "DLT_NETANALYZER_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER_TRANSPARENT))}, + "DLT_NFC_LLCP": {"untyped int", constant.MakeInt64(int64(q.DLT_NFC_LLCP))}, + "DLT_NFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_NFLOG))}, + "DLT_NG40": {"untyped int", constant.MakeInt64(int64(q.DLT_NG40))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PPP_WITH_DIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIRECTION))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_STANAG_5066_D_PDU": {"untyped int", constant.MakeInt64(int64(q.DLT_STANAG_5066_D_PDU))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_USB_LINUX_MMAPPED": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX_MMAPPED))}, + "DLT_USER0": {"untyped int", constant.MakeInt64(int64(q.DLT_USER0))}, + "DLT_USER1": {"untyped int", constant.MakeInt64(int64(q.DLT_USER1))}, + "DLT_USER10": {"untyped int", constant.MakeInt64(int64(q.DLT_USER10))}, + "DLT_USER11": {"untyped int", constant.MakeInt64(int64(q.DLT_USER11))}, + "DLT_USER12": {"untyped int", constant.MakeInt64(int64(q.DLT_USER12))}, + "DLT_USER13": {"untyped int", constant.MakeInt64(int64(q.DLT_USER13))}, + "DLT_USER14": {"untyped int", constant.MakeInt64(int64(q.DLT_USER14))}, + "DLT_USER15": {"untyped int", constant.MakeInt64(int64(q.DLT_USER15))}, + "DLT_USER2": {"untyped int", constant.MakeInt64(int64(q.DLT_USER2))}, + "DLT_USER3": {"untyped int", constant.MakeInt64(int64(q.DLT_USER3))}, + "DLT_USER4": {"untyped int", constant.MakeInt64(int64(q.DLT_USER4))}, + "DLT_USER5": {"untyped int", constant.MakeInt64(int64(q.DLT_USER5))}, + "DLT_USER6": {"untyped int", constant.MakeInt64(int64(q.DLT_USER6))}, + "DLT_USER7": {"untyped int", constant.MakeInt64(int64(q.DLT_USER7))}, + "DLT_USER8": {"untyped int", constant.MakeInt64(int64(q.DLT_USER8))}, + "DLT_USER9": {"untyped int", constant.MakeInt64(int64(q.DLT_USER9))}, + "DLT_WIHART": {"untyped int", constant.MakeInt64(int64(q.DLT_WIHART))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_FS": {"untyped int", constant.MakeInt64(int64(q.EVFILT_FS))}, + "EVFILT_LIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_LIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_USER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_USER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_DROP": {"untyped int", constant.MakeInt64(int64(q.EV_DROP))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_CANCEL": {"untyped int", constant.MakeInt64(int64(q.F_CANCEL))}, + "F_DUP2FD": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD))}, + "F_DUP2FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD_CLOEXEC))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_OGETLK": {"untyped int", constant.MakeInt64(int64(q.F_OGETLK))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_OSETLK": {"untyped int", constant.MakeInt64(int64(q.F_OSETLK))}, + "F_OSETLKW": {"untyped int", constant.MakeInt64(int64(q.F_OSETLKW))}, + "F_RDAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_RDAHEAD))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_READAHEAD))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLK_REMOTE": {"untyped int", constant.MakeInt64(int64(q.F_SETLK_REMOTE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_UNLCKSYS": {"untyped int", constant.MakeInt64(int64(q.F_UNLCKSYS))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_CANTCONFIG": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCONFIG))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DRV_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_OACTIVE))}, + "IFF_DRV_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_RUNNING))}, + "IFF_DYING": {"untyped int", constant.MakeInt64(int64(q.IFF_DYING))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MONITOR": {"untyped int", constant.MakeInt64(int64(q.IFF_MONITOR))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PPROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PPROMISC))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RENAMING": {"untyped int", constant.MakeInt64(int64(q.IFF_RENAMING))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_SMART": {"untyped int", constant.MakeInt64(int64(q.IFF_SMART))}, + "IFF_STATICARP": {"untyped int", constant.MakeInt64(int64(q.IFF_STATICARP))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_IPXIP": {"untyped int", constant.MakeInt64(int64(q.IFT_IPXIP))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_MASK))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OLD_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OLD_DIVERT))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEND))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SKIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SKIP))}, + "IPPROTO_SPACER": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SPACER))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TLSP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDANY))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXOPTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXOPTHDR))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_GROUP_SRC_FILTER))}, + "IPV6_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_MEMBERSHIPS))}, + "IPV6_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_SOCK_SRC_FILTER))}, + "IPV6_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIN_MEMBERSHIPS))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MSFILTER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_PREFER_TEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_TEMPADDR))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IP_BINDANY))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_DONTFRAG))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_DUMMYNET3": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET3))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW3": {"untyped int", constant.MakeInt64(int64(q.IP_FW3))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_NAT_CFG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_CFG))}, + "IP_FW_NAT_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_DEL))}, + "IP_FW_NAT_GET_CONFIG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_CONFIG))}, + "IP_FW_NAT_GET_LOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_LOG))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_TABLE_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_ADD))}, + "IP_FW_TABLE_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_DEL))}, + "IP_FW_TABLE_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_FLUSH))}, + "IP_FW_TABLE_GETSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_GETSIZE))}, + "IP_FW_TABLE_LIST": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_LIST))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_GROUP_SRC_FILTER))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MAX_SOCK_MUTE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_MUTE_FILTER))}, + "IP_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_SRC_FILTER))}, + "IP_MAX_SOURCE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOURCE_FILTER))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_ONESBCAST": {"untyped int", constant.MakeInt64(int64(q.IP_ONESBCAST))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_SENDSRCADDR": {"untyped int", constant.MakeInt64(int64(q.IP_SENDSRCADDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_AUTOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_AUTOSYNC))}, + "MADV_CORE": {"untyped int", constant.MakeInt64(int64(q.MADV_CORE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOCORE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_NOSYNC))}, + "MADV_PROTECT": {"untyped int", constant.MakeInt64(int64(q.MADV_PROTECT))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ALIGNED_SUPER": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNED_SUPER))}, + "MAP_ALIGNMENT_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_MASK))}, + "MAP_ALIGNMENT_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_SHIFT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCORE))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MAP_NOSYNC))}, + "MAP_PREFAULT_READ": {"untyped int", constant.MakeInt64(int64(q.MAP_PREFAULT_READ))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_RESERVED0080": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0080))}, + "MAP_RESERVED0100": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0100))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.MSG_COMPAT))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_NBIO": {"untyped int", constant.MakeInt64(int64(q.MSG_NBIO))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_NOTIFICATION": {"untyped int", constant.MakeInt64(int64(q.MSG_NOTIFICATION))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFLISTL": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLISTL))}, + "NET_RT_IFMALIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFMALIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FFAND": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFAND))}, + "NOTE_FFCOPY": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCOPY))}, + "NOTE_FFCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCTRLMASK))}, + "NOTE_FFLAGSMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFLAGSMASK))}, + "NOTE_FFNOP": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFNOP))}, + "NOTE_FFOR": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFOR))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRIGGER": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRIGGER))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXEC": {"untyped int", constant.MakeInt64(int64(q.O_EXEC))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_TTY_INIT": {"untyped int", constant.MakeInt64(int64(q.O_TTY_INIT))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_GWFLAG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RTF_GWFLAG_COMPAT))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLDATA": {"untyped int", constant.MakeInt64(int64(q.RTF_LLDATA))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_RNH_LOCKED": {"untyped int", constant.MakeInt64(int64(q.RTF_RNH_LOCKED))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_STICKY": {"untyped int", constant.MakeInt64(int64(q.RTF_STICKY))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RTV_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.RTV_WEIGHT))}, + "RT_CACHING_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.RT_CACHING_CONTEXT))}, + "RT_DEFAULT_FIB": {"untyped int", constant.MakeInt64(int64(q.RT_DEFAULT_FIB))}, + "RT_NORTREF": {"untyped int", constant.MakeInt64(int64(q.RT_NORTREF))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SCM_BINTIME))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFIB))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGPRIVATE_0": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_0))}, + "SIOCGPRIVATE_1": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_1))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFIB))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFRVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRVNET))}, + "SIOCSIFVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFVNET))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SO_BINTIME))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LABEL": {"untyped int", constant.MakeInt64(int64(q.SO_LABEL))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LISTENINCQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENINCQLEN))}, + "SO_LISTENQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLEN))}, + "SO_LISTENQLIMIT": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLIMIT))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_NO_DDP": {"untyped int", constant.MakeInt64(int64(q.SO_NO_DDP))}, + "SO_NO_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.SO_NO_OFFLOAD))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERLABEL": {"untyped int", constant.MakeInt64(int64(q.SO_PEERLABEL))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_PROTOTYPE": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOTYPE))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SO_SETFIB))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_USER_COOKIE": {"untyped int", constant.MakeInt64(int64(q.SO_USER_COOKIE))}, + "SO_VENDOR": {"untyped int", constant.MakeInt64(int64(q.SO_VENDOR))}, + "SYS_ABORT2": {"untyped int", constant.MakeInt64(int64(q.SYS_ABORT2))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT))}, + "SYS_AUDITCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITCTL))}, + "SYS_AUDITON": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITON))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BINDAT": {"untyped int", constant.MakeInt64(int64(q.SYS_BINDAT))}, + "SYS_CAP_ENTER": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_ENTER))}, + "SYS_CAP_GETMODE": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_GETMODE))}, + "SYS_CAP_GETRIGHTS": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_GETRIGHTS))}, + "SYS_CAP_NEW": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_NEW))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHFLAGSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGSAT))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETCPUCLOCKID2": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETCPUCLOCKID2))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CONNECTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECTAT))}, + "SYS_CPUSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET))}, + "SYS_CPUSET_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETAFFINITY))}, + "SYS_CPUSET_GETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETID))}, + "SYS_CPUSET_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETAFFINITY))}, + "SYS_CPUSET_SETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETID))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_EACCESS))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FD))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_LINK))}, + "SYS_EXTATTR_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FD))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_LINK))}, + "SYS_EXTATTR_LIST_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FD))}, + "SYS_EXTATTR_LIST_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FILE))}, + "SYS_EXTATTR_LIST_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_LINK))}, + "SYS_EXTATTR_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FD))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTATTR_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_LINK))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FEXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_FEXECVE))}, + "SYS_FFCLOCK_GETCOUNTER": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETCOUNTER))}, + "SYS_FFCLOCK_GETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETESTIMATE))}, + "SYS_FFCLOCK_SETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_SETESTIMATE))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREEBSD6_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_FTRUNCATE))}, + "SYS_FREEBSD6_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_LSEEK))}, + "SYS_FREEBSD6_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_MMAP))}, + "SYS_FREEBSD6_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_PREAD))}, + "SYS_FREEBSD6_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_PWRITE))}, + "SYS_FREEBSD6_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FREEBSD6_TRUNCATE))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT))}, + "SYS_GETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT_ADDR))}, + "SYS_GETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUID))}, + "SYS_GETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCONTEXT))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGINCLASS))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_JAIL": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL))}, + "SYS_JAIL_ATTACH": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_ATTACH))}, + "SYS_JAIL_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_GET))}, + "SYS_JAIL_REMOVE": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_REMOVE))}, + "SYS_JAIL_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_SET))}, + "SYS_KENV": {"untyped int", constant.MakeInt64(int64(q.SYS_KENV))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KLDFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIND))}, + "SYS_KLDFIRSTMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIRSTMOD))}, + "SYS_KLDLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDLOAD))}, + "SYS_KLDNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDNEXT))}, + "SYS_KLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSTAT))}, + "SYS_KLDSYM": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSYM))}, + "SYS_KLDUNLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOAD))}, + "SYS_KLDUNLOADF": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOADF))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KTIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_CREATE))}, + "SYS_KTIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_DELETE))}, + "SYS_KTIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETOVERRUN))}, + "SYS_KTIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETTIME))}, + "SYS_KTIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_SETTIME))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETFH))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_LPATHCONF))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_MAC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MAC_SYSCALL))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFIND))}, + "SYS_MODFNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFNEXT))}, + "SYS_MODNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODNEXT))}, + "SYS_MODSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODSTAT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSTAT))}, + "SYS_NLSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NLSTAT))}, + "SYS_NMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_NMOUNT))}, + "SYS_NSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NSTAT))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_NTP_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_GETTIME))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPENBSD_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENBSD_POLL))}, + "SYS_OVADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_OVADVISE))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PDFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_PDFORK))}, + "SYS_PDGETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_PDGETPID))}, + "SYS_PDKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_PDKILL))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POSIX_FADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FADVISE))}, + "SYS_POSIX_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FALLOCATE))}, + "SYS_POSIX_OPENPT": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_OPENPT))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROCCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCCTL))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_RCTL_ADD_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_ADD_RULE))}, + "SYS_RCTL_GET_LIMITS": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_LIMITS))}, + "SYS_RCTL_GET_RACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RACCT))}, + "SYS_RCTL_GET_RULES": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RULES))}, + "SYS_RCTL_REMOVE_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_REMOVE_RULE))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_RFORK))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RTPRIO": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO))}, + "SYS_RTPRIO_THREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO_THREAD))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SCTP_GENERIC_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_RECVMSG))}, + "SYS_SCTP_GENERIC_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG))}, + "SYS_SCTP_GENERIC_SENDMSG_IOV": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG_IOV))}, + "SYS_SCTP_PEELOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_PEELOFF))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT))}, + "SYS_SETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT_ADDR))}, + "SYS_SETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUID))}, + "SYS_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETCONTEXT))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFIB))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGINCLASS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_OPEN))}, + "SYS_SHM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_UNLINK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGQUEUE))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGTIMEDWAIT))}, + "SYS_SIGWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAIT))}, + "SYS_SIGWAITINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAITINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCONTEXT))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_THR_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_CREATE))}, + "SYS_THR_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_EXIT))}, + "SYS_THR_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL))}, + "SYS_THR_KILL2": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL2))}, + "SYS_THR_NEW": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_NEW))}, + "SYS_THR_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SELF))}, + "SYS_THR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SET_NAME))}, + "SYS_THR_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SUSPEND))}, + "SYS_THR_WAKE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_WAKE))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_YIELD))}, + "SYS__UMTX_LOCK": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_LOCK))}, + "SYS__UMTX_OP": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_OP))}, + "SYS__UMTX_UNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_UNLOCK))}, + "SYS___ACL_ACLCHECK_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FD))}, + "SYS___ACL_ACLCHECK_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FILE))}, + "SYS___ACL_ACLCHECK_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_LINK))}, + "SYS___ACL_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FD))}, + "SYS___ACL_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FILE))}, + "SYS___ACL_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_LINK))}, + "SYS___ACL_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FD))}, + "SYS___ACL_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FILE))}, + "SYS___ACL_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_LINK))}, + "SYS___ACL_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FD))}, + "SYS___ACL_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FILE))}, + "SYS___ACL_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_LINK))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___MAC_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_EXECVE))}, + "SYS___MAC_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FD))}, + "SYS___MAC_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FILE))}, + "SYS___MAC_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LINK))}, + "SYS___MAC_GET_PID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PID))}, + "SYS___MAC_GET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PROC))}, + "SYS___MAC_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FD))}, + "SYS___MAC_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FILE))}, + "SYS___MAC_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LINK))}, + "SYS___MAC_SET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_PROC))}, + "SYS___SETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS___SETUGID))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofBpfZbuf": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbuf))}, + "SizeofBpfZbufHeader": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbufHeader))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CA_NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_CA_NAME_MAX))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_VENDOR": {"untyped int", constant.MakeInt64(int64(q.TCP_VENDOR))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DCD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DCD))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTMASTER": {"untyped int", constant.MakeInt64(int64(q.TIOCPTMASTER))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VERASE2": {"untyped int", constant.MakeInt64(int64(q.VERASE2))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WLINUXCLONE": {"untyped int", constant.MakeInt64(int64(q.WLINUXCLONE))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WTRAPPED": {"untyped int", constant.MakeInt64(int64(q.WTRAPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_freebsd_arm64.go b/pkg/syscall/go123_export_freebsd_arm64.go new file mode 100755 index 00000000..ce1f62cf --- /dev/null +++ b/pkg/syscall/go123_export_freebsd_arm64.go @@ -0,0 +1,2295 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "BpfZbuf": reflect.TypeOf((*q.BpfZbuf)(nil)).Elem(), + "BpfZbufHeader": reflect.TypeOf((*q.BpfZbufHeader)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatat": reflect.ValueOf(q.Fstatat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECAPMODE": {reflect.TypeOf(q.ECAPMODE), constant.MakeInt64(int64(q.ECAPMODE))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOOFUS": {reflect.TypeOf(q.EDOOFUS), constant.MakeInt64(int64(q.EDOOFUS))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCAPABLE": {reflect.TypeOf(q.ENOTCAPABLE), constant.MakeInt64(int64(q.ENOTCAPABLE))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGLIBRT": {reflect.TypeOf(q.SIGLIBRT), constant.MakeInt64(int64(q.SIGLIBRT))}, + "SIGLWP": {reflect.TypeOf(q.SIGLWP), constant.MakeInt64(int64(q.SIGLWP))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ARP": {"untyped int", constant.MakeInt64(int64(q.AF_ARP))}, + "AF_ATM": {"untyped int", constant.MakeInt64(int64(q.AF_ATM))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_INET6_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET6_SDP))}, + "AF_INET_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET_SDP))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_NETGRAPH": {"untyped int", constant.MakeInt64(int64(q.AF_NETGRAPH))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SCLUSTER": {"untyped int", constant.MakeInt64(int64(q.AF_SCLUSTER))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SLOW": {"untyped int", constant.MakeInt64(int64(q.AF_SLOW))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VENDOR00": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR00))}, + "AF_VENDOR01": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR01))}, + "AF_VENDOR02": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR02))}, + "AF_VENDOR03": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR03))}, + "AF_VENDOR04": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR04))}, + "AF_VENDOR05": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR05))}, + "AF_VENDOR06": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR06))}, + "AF_VENDOR07": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR07))}, + "AF_VENDOR08": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR08))}, + "AF_VENDOR09": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR09))}, + "AF_VENDOR10": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR10))}, + "AF_VENDOR11": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR11))}, + "AF_VENDOR12": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR12))}, + "AF_VENDOR13": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR13))}, + "AF_VENDOR14": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR14))}, + "AF_VENDOR15": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR15))}, + "AF_VENDOR16": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR16))}, + "AF_VENDOR17": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR17))}, + "AF_VENDOR18": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR18))}, + "AF_VENDOR19": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR19))}, + "AF_VENDOR20": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR20))}, + "AF_VENDOR21": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR21))}, + "AF_VENDOR22": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR22))}, + "AF_VENDOR23": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR23))}, + "AF_VENDOR24": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR24))}, + "AF_VENDOR25": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR25))}, + "AF_VENDOR26": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR26))}, + "AF_VENDOR27": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR27))}, + "AF_VENDOR28": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR28))}, + "AF_VENDOR29": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR29))}, + "AF_VENDOR30": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR30))}, + "AF_VENDOR31": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR31))}, + "AF_VENDOR32": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR32))}, + "AF_VENDOR33": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR33))}, + "AF_VENDOR34": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR34))}, + "AF_VENDOR35": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR35))}, + "AF_VENDOR36": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR36))}, + "AF_VENDOR37": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR37))}, + "AF_VENDOR38": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR38))}, + "AF_VENDOR39": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR39))}, + "AF_VENDOR40": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR40))}, + "AF_VENDOR41": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR41))}, + "AF_VENDOR42": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR42))}, + "AF_VENDOR43": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR43))}, + "AF_VENDOR44": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR44))}, + "AF_VENDOR45": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR45))}, + "AF_VENDOR46": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR46))}, + "AF_VENDOR47": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR47))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCFEEDBACK))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRECTION))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCGETBUFMODE))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGETZMAX": {"untyped int", constant.MakeInt64(int64(q.BIOCGETZMAX))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCGTSTAMP))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCROTZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCROTZBUF))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRECTION))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCSETBUFMODE))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETFNR": {"untyped int", constant.MakeInt64(int64(q.BIOCSETFNR))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSETZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETZBUF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCSTSTAMP))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_BUFMODE_BUFFER": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_BUFFER))}, + "BPF_BUFMODE_ZBUF": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_ZBUF))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_T_BINTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME))}, + "BPF_T_BINTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_FAST))}, + "BPF_T_BINTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC))}, + "BPF_T_BINTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC_FAST))}, + "BPF_T_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FAST))}, + "BPF_T_FLAG_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FLAG_MASK))}, + "BPF_T_FORMAT_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FORMAT_MASK))}, + "BPF_T_MICROTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME))}, + "BPF_T_MICROTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_FAST))}, + "BPF_T_MICROTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC))}, + "BPF_T_MICROTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC_FAST))}, + "BPF_T_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC))}, + "BPF_T_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC_FAST))}, + "BPF_T_NANOTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME))}, + "BPF_T_NANOTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_FAST))}, + "BPF_T_NANOTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC))}, + "BPF_T_NANOTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC_FAST))}, + "BPF_T_NONE": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NONE))}, + "BPF_T_NORMAL": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NORMAL))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_AOS": {"untyped int", constant.MakeInt64(int64(q.DLT_AOS))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CAN_SOCKETCAN": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN_SOCKETCAN))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DBUS": {"untyped int", constant.MakeInt64(int64(q.DLT_DBUS))}, + "DLT_DECT": {"untyped int", constant.MakeInt64(int64(q.DLT_DECT))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_DVB_CI": {"untyped int", constant.MakeInt64(int64(q.DLT_DVB_CI))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FC_2": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2))}, + "DLT_FC_2_WITH_FRAME_DELIMS": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2_WITH_FRAME_DELIMS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_GSMTAP_ABIS": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_ABIS))}, + "DLT_GSMTAP_UM": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_UM))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NOFCS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NOFCS))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPFILTER": {"untyped int", constant.MakeInt64(int64(q.DLT_IPFILTER))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPOIB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPOIB))}, + "DLT_IPV4": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV4))}, + "DLT_IPV6": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV6))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_ATM_CEMIC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM_CEMIC))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FIBRECHANNEL))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_SRX_E2E": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SRX_E2E))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_JUNIPER_VS": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VS))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_EVDEV": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_EVDEV))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_PPP_WITHDIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_PPP_WITHDIRECTION))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MATCHING_MAX": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MAX))}, + "DLT_MATCHING_MIN": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MIN))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MPEG_2_TS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPEG_2_TS))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_MUX27010": {"untyped int", constant.MakeInt64(int64(q.DLT_MUX27010))}, + "DLT_NETANALYZER": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER))}, + "DLT_NETANALYZER_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER_TRANSPARENT))}, + "DLT_NFC_LLCP": {"untyped int", constant.MakeInt64(int64(q.DLT_NFC_LLCP))}, + "DLT_NFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_NFLOG))}, + "DLT_NG40": {"untyped int", constant.MakeInt64(int64(q.DLT_NG40))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PPP_WITH_DIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIRECTION))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_STANAG_5066_D_PDU": {"untyped int", constant.MakeInt64(int64(q.DLT_STANAG_5066_D_PDU))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_USB_LINUX_MMAPPED": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX_MMAPPED))}, + "DLT_USER0": {"untyped int", constant.MakeInt64(int64(q.DLT_USER0))}, + "DLT_USER1": {"untyped int", constant.MakeInt64(int64(q.DLT_USER1))}, + "DLT_USER10": {"untyped int", constant.MakeInt64(int64(q.DLT_USER10))}, + "DLT_USER11": {"untyped int", constant.MakeInt64(int64(q.DLT_USER11))}, + "DLT_USER12": {"untyped int", constant.MakeInt64(int64(q.DLT_USER12))}, + "DLT_USER13": {"untyped int", constant.MakeInt64(int64(q.DLT_USER13))}, + "DLT_USER14": {"untyped int", constant.MakeInt64(int64(q.DLT_USER14))}, + "DLT_USER15": {"untyped int", constant.MakeInt64(int64(q.DLT_USER15))}, + "DLT_USER2": {"untyped int", constant.MakeInt64(int64(q.DLT_USER2))}, + "DLT_USER3": {"untyped int", constant.MakeInt64(int64(q.DLT_USER3))}, + "DLT_USER4": {"untyped int", constant.MakeInt64(int64(q.DLT_USER4))}, + "DLT_USER5": {"untyped int", constant.MakeInt64(int64(q.DLT_USER5))}, + "DLT_USER6": {"untyped int", constant.MakeInt64(int64(q.DLT_USER6))}, + "DLT_USER7": {"untyped int", constant.MakeInt64(int64(q.DLT_USER7))}, + "DLT_USER8": {"untyped int", constant.MakeInt64(int64(q.DLT_USER8))}, + "DLT_USER9": {"untyped int", constant.MakeInt64(int64(q.DLT_USER9))}, + "DLT_WIHART": {"untyped int", constant.MakeInt64(int64(q.DLT_WIHART))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_FS": {"untyped int", constant.MakeInt64(int64(q.EVFILT_FS))}, + "EVFILT_LIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_LIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_USER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_USER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_DROP": {"untyped int", constant.MakeInt64(int64(q.EV_DROP))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_CANCEL": {"untyped int", constant.MakeInt64(int64(q.F_CANCEL))}, + "F_DUP2FD": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD))}, + "F_DUP2FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD_CLOEXEC))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_OGETLK": {"untyped int", constant.MakeInt64(int64(q.F_OGETLK))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_OSETLK": {"untyped int", constant.MakeInt64(int64(q.F_OSETLK))}, + "F_OSETLKW": {"untyped int", constant.MakeInt64(int64(q.F_OSETLKW))}, + "F_RDAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_RDAHEAD))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_READAHEAD))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLK_REMOTE": {"untyped int", constant.MakeInt64(int64(q.F_SETLK_REMOTE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_UNLCKSYS": {"untyped int", constant.MakeInt64(int64(q.F_UNLCKSYS))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_CANTCONFIG": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCONFIG))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DRV_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_OACTIVE))}, + "IFF_DRV_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_RUNNING))}, + "IFF_DYING": {"untyped int", constant.MakeInt64(int64(q.IFF_DYING))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MONITOR": {"untyped int", constant.MakeInt64(int64(q.IFF_MONITOR))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PPROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PPROMISC))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RENAMING": {"untyped int", constant.MakeInt64(int64(q.IFF_RENAMING))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_SMART": {"untyped int", constant.MakeInt64(int64(q.IFF_SMART))}, + "IFF_STATICARP": {"untyped int", constant.MakeInt64(int64(q.IFF_STATICARP))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_IPXIP": {"untyped int", constant.MakeInt64(int64(q.IFT_IPXIP))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_MASK))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OLD_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OLD_DIVERT))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEND))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SKIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SKIP))}, + "IPPROTO_SPACER": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SPACER))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TLSP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDANY))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXOPTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXOPTHDR))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_GROUP_SRC_FILTER))}, + "IPV6_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_MEMBERSHIPS))}, + "IPV6_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_SOCK_SRC_FILTER))}, + "IPV6_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIN_MEMBERSHIPS))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MSFILTER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_PREFER_TEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_TEMPADDR))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IP_BINDANY))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_DONTFRAG))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_DUMMYNET3": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET3))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW3": {"untyped int", constant.MakeInt64(int64(q.IP_FW3))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_NAT_CFG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_CFG))}, + "IP_FW_NAT_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_DEL))}, + "IP_FW_NAT_GET_CONFIG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_CONFIG))}, + "IP_FW_NAT_GET_LOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_LOG))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_TABLE_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_ADD))}, + "IP_FW_TABLE_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_DEL))}, + "IP_FW_TABLE_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_FLUSH))}, + "IP_FW_TABLE_GETSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_GETSIZE))}, + "IP_FW_TABLE_LIST": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_LIST))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_GROUP_SRC_FILTER))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MAX_SOCK_MUTE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_MUTE_FILTER))}, + "IP_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_SRC_FILTER))}, + "IP_MAX_SOURCE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOURCE_FILTER))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_ONESBCAST": {"untyped int", constant.MakeInt64(int64(q.IP_ONESBCAST))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_SENDSRCADDR": {"untyped int", constant.MakeInt64(int64(q.IP_SENDSRCADDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_AUTOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_AUTOSYNC))}, + "MADV_CORE": {"untyped int", constant.MakeInt64(int64(q.MADV_CORE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOCORE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_NOSYNC))}, + "MADV_PROTECT": {"untyped int", constant.MakeInt64(int64(q.MADV_PROTECT))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_32BIT": {"untyped int", constant.MakeInt64(int64(q.MAP_32BIT))}, + "MAP_ALIGNED_SUPER": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNED_SUPER))}, + "MAP_ALIGNMENT_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_MASK))}, + "MAP_ALIGNMENT_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_SHIFT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCORE))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MAP_NOSYNC))}, + "MAP_PREFAULT_READ": {"untyped int", constant.MakeInt64(int64(q.MAP_PREFAULT_READ))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_RESERVED0080": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0080))}, + "MAP_RESERVED0100": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0100))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.MSG_COMPAT))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_NBIO": {"untyped int", constant.MakeInt64(int64(q.MSG_NBIO))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_NOTIFICATION": {"untyped int", constant.MakeInt64(int64(q.MSG_NOTIFICATION))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFLISTL": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLISTL))}, + "NET_RT_IFMALIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFMALIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FFAND": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFAND))}, + "NOTE_FFCOPY": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCOPY))}, + "NOTE_FFCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCTRLMASK))}, + "NOTE_FFLAGSMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFLAGSMASK))}, + "NOTE_FFNOP": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFNOP))}, + "NOTE_FFOR": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFOR))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRIGGER": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRIGGER))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXEC": {"untyped int", constant.MakeInt64(int64(q.O_EXEC))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_TTY_INIT": {"untyped int", constant.MakeInt64(int64(q.O_TTY_INIT))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_GWFLAG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RTF_GWFLAG_COMPAT))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLDATA": {"untyped int", constant.MakeInt64(int64(q.RTF_LLDATA))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_RNH_LOCKED": {"untyped int", constant.MakeInt64(int64(q.RTF_RNH_LOCKED))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_STICKY": {"untyped int", constant.MakeInt64(int64(q.RTF_STICKY))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RTV_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.RTV_WEIGHT))}, + "RT_CACHING_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.RT_CACHING_CONTEXT))}, + "RT_DEFAULT_FIB": {"untyped int", constant.MakeInt64(int64(q.RT_DEFAULT_FIB))}, + "RT_NORTREF": {"untyped int", constant.MakeInt64(int64(q.RT_NORTREF))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SCM_BINTIME))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFIB))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGPRIVATE_0": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_0))}, + "SIOCGPRIVATE_1": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_1))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFIB))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFRVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRVNET))}, + "SIOCSIFVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFVNET))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SO_BINTIME))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LABEL": {"untyped int", constant.MakeInt64(int64(q.SO_LABEL))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LISTENINCQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENINCQLEN))}, + "SO_LISTENQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLEN))}, + "SO_LISTENQLIMIT": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLIMIT))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_NO_DDP": {"untyped int", constant.MakeInt64(int64(q.SO_NO_DDP))}, + "SO_NO_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.SO_NO_OFFLOAD))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERLABEL": {"untyped int", constant.MakeInt64(int64(q.SO_PEERLABEL))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_PROTOTYPE": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOTYPE))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SO_SETFIB))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_USER_COOKIE": {"untyped int", constant.MakeInt64(int64(q.SO_USER_COOKIE))}, + "SO_VENDOR": {"untyped int", constant.MakeInt64(int64(q.SO_VENDOR))}, + "SYS_ABORT2": {"untyped int", constant.MakeInt64(int64(q.SYS_ABORT2))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AIO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_CANCEL))}, + "SYS_AIO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_ERROR))}, + "SYS_AIO_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_FSYNC))}, + "SYS_AIO_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_MLOCK))}, + "SYS_AIO_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_READ))}, + "SYS_AIO_RETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_RETURN))}, + "SYS_AIO_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND))}, + "SYS_AIO_WAITCOMPLETE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WAITCOMPLETE))}, + "SYS_AIO_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WRITE))}, + "SYS_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT))}, + "SYS_AUDITCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITCTL))}, + "SYS_AUDITON": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITON))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BINDAT": {"untyped int", constant.MakeInt64(int64(q.SYS_BINDAT))}, + "SYS_CAP_ENTER": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_ENTER))}, + "SYS_CAP_FCNTLS_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_FCNTLS_GET))}, + "SYS_CAP_FCNTLS_LIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_FCNTLS_LIMIT))}, + "SYS_CAP_GETMODE": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_GETMODE))}, + "SYS_CAP_IOCTLS_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_IOCTLS_GET))}, + "SYS_CAP_IOCTLS_LIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_IOCTLS_LIMIT))}, + "SYS_CAP_RIGHTS_LIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_RIGHTS_LIMIT))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHFLAGSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGSAT))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETCPUCLOCKID2": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETCPUCLOCKID2))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CONNECTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECTAT))}, + "SYS_CPUSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET))}, + "SYS_CPUSET_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETAFFINITY))}, + "SYS_CPUSET_GETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETID))}, + "SYS_CPUSET_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETAFFINITY))}, + "SYS_CPUSET_SETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETID))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_EACCESS))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FD))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_LINK))}, + "SYS_EXTATTR_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FD))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_LINK))}, + "SYS_EXTATTR_LIST_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FD))}, + "SYS_EXTATTR_LIST_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FILE))}, + "SYS_EXTATTR_LIST_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_LINK))}, + "SYS_EXTATTR_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FD))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTATTR_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_LINK))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FEXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_FEXECVE))}, + "SYS_FFCLOCK_GETCOUNTER": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETCOUNTER))}, + "SYS_FFCLOCK_GETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETESTIMATE))}, + "SYS_FFCLOCK_SETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_SETESTIMATE))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT))}, + "SYS_GETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT_ADDR))}, + "SYS_GETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUID))}, + "SYS_GETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCONTEXT))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGINCLASS))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GSSD_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_GSSD_SYSCALL))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_JAIL": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL))}, + "SYS_JAIL_ATTACH": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_ATTACH))}, + "SYS_JAIL_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_GET))}, + "SYS_JAIL_REMOVE": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_REMOVE))}, + "SYS_JAIL_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_SET))}, + "SYS_KENV": {"untyped int", constant.MakeInt64(int64(q.SYS_KENV))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KLDFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIND))}, + "SYS_KLDFIRSTMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIRSTMOD))}, + "SYS_KLDLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDLOAD))}, + "SYS_KLDNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDNEXT))}, + "SYS_KLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSTAT))}, + "SYS_KLDSYM": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSYM))}, + "SYS_KLDUNLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOAD))}, + "SYS_KLDUNLOADF": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOADF))}, + "SYS_KMQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_NOTIFY))}, + "SYS_KMQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_OPEN))}, + "SYS_KMQ_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_SETATTR))}, + "SYS_KMQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_TIMEDRECEIVE))}, + "SYS_KMQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_TIMEDSEND))}, + "SYS_KMQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_UNLINK))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KSEM_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_CLOSE))}, + "SYS_KSEM_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_DESTROY))}, + "SYS_KSEM_GETVALUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_GETVALUE))}, + "SYS_KSEM_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_INIT))}, + "SYS_KSEM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_OPEN))}, + "SYS_KSEM_POST": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_POST))}, + "SYS_KSEM_TIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_TIMEDWAIT))}, + "SYS_KSEM_TRYWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_TRYWAIT))}, + "SYS_KSEM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_UNLINK))}, + "SYS_KSEM_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_WAIT))}, + "SYS_KTIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_CREATE))}, + "SYS_KTIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_DELETE))}, + "SYS_KTIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETOVERRUN))}, + "SYS_KTIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETTIME))}, + "SYS_KTIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_SETTIME))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETFH))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LIO_LISTIO": {"untyped int", constant.MakeInt64(int64(q.SYS_LIO_LISTIO))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_LPATHCONF))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_MAC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MAC_SYSCALL))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFIND))}, + "SYS_MODFNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFNEXT))}, + "SYS_MODNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODNEXT))}, + "SYS_MODSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODSTAT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSGSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSYS))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_NFSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSTAT))}, + "SYS_NLM_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_NLM_SYSCALL))}, + "SYS_NLSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NLSTAT))}, + "SYS_NMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_NMOUNT))}, + "SYS_NSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NSTAT))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_NTP_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_GETTIME))}, + "SYS_NUMA_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_NUMA_GETAFFINITY))}, + "SYS_NUMA_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_NUMA_SETAFFINITY))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPENBSD_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENBSD_POLL))}, + "SYS_OVADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_OVADVISE))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PDFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_PDFORK))}, + "SYS_PDGETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_PDGETPID))}, + "SYS_PDKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_PDKILL))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POSIX_FADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FADVISE))}, + "SYS_POSIX_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FALLOCATE))}, + "SYS_POSIX_OPENPT": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_OPENPT))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROCCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCCTL))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_RCTL_ADD_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_ADD_RULE))}, + "SYS_RCTL_GET_LIMITS": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_LIMITS))}, + "SYS_RCTL_GET_RACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RACCT))}, + "SYS_RCTL_GET_RULES": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RULES))}, + "SYS_RCTL_REMOVE_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_REMOVE_RULE))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_RFORK))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RTPRIO": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO))}, + "SYS_RTPRIO_THREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO_THREAD))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SCTP_GENERIC_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_RECVMSG))}, + "SYS_SCTP_GENERIC_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG))}, + "SYS_SCTP_GENERIC_SENDMSG_IOV": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG_IOV))}, + "SYS_SCTP_PEELOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_PEELOFF))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMSYS))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT))}, + "SYS_SETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT_ADDR))}, + "SYS_SETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUID))}, + "SYS_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETCONTEXT))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFIB))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGINCLASS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMSYS))}, + "SYS_SHM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_OPEN))}, + "SYS_SHM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_UNLINK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGQUEUE))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGTIMEDWAIT))}, + "SYS_SIGWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAIT))}, + "SYS_SIGWAITINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAITINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCONTEXT))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_THR_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_CREATE))}, + "SYS_THR_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_EXIT))}, + "SYS_THR_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL))}, + "SYS_THR_KILL2": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL2))}, + "SYS_THR_NEW": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_NEW))}, + "SYS_THR_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SELF))}, + "SYS_THR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SET_NAME))}, + "SYS_THR_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SUSPEND))}, + "SYS_THR_WAKE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_WAKE))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_YIELD))}, + "SYS__UMTX_OP": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_OP))}, + "SYS___ACL_ACLCHECK_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FD))}, + "SYS___ACL_ACLCHECK_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FILE))}, + "SYS___ACL_ACLCHECK_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_LINK))}, + "SYS___ACL_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FD))}, + "SYS___ACL_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FILE))}, + "SYS___ACL_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_LINK))}, + "SYS___ACL_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FD))}, + "SYS___ACL_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FILE))}, + "SYS___ACL_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_LINK))}, + "SYS___ACL_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FD))}, + "SYS___ACL_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FILE))}, + "SYS___ACL_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_LINK))}, + "SYS___CAP_RIGHTS_GET": {"untyped int", constant.MakeInt64(int64(q.SYS___CAP_RIGHTS_GET))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___MAC_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_EXECVE))}, + "SYS___MAC_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FD))}, + "SYS___MAC_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FILE))}, + "SYS___MAC_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LINK))}, + "SYS___MAC_GET_PID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PID))}, + "SYS___MAC_GET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PROC))}, + "SYS___MAC_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FD))}, + "SYS___MAC_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FILE))}, + "SYS___MAC_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LINK))}, + "SYS___MAC_SET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_PROC))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS___SETUGID))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofBpfZbuf": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbuf))}, + "SizeofBpfZbufHeader": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbufHeader))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CA_NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_CA_NAME_MAX))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_VENDOR": {"untyped int", constant.MakeInt64(int64(q.TCP_VENDOR))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DCD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DCD))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTMASTER": {"untyped int", constant.MakeInt64(int64(q.TIOCPTMASTER))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VERASE2": {"untyped int", constant.MakeInt64(int64(q.VERASE2))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WLINUXCLONE": {"untyped int", constant.MakeInt64(int64(q.WLINUXCLONE))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WTRAPPED": {"untyped int", constant.MakeInt64(int64(q.WTRAPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_freebsd_riscv64.go b/pkg/syscall/go123_export_freebsd_riscv64.go new file mode 100755 index 00000000..ce1f62cf --- /dev/null +++ b/pkg/syscall/go123_export_freebsd_riscv64.go @@ -0,0 +1,2295 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "BpfZbuf": reflect.TypeOf((*q.BpfZbuf)(nil)).Elem(), + "BpfZbufHeader": reflect.TypeOf((*q.BpfZbufHeader)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatat": reflect.ValueOf(q.Fstatat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECAPMODE": {reflect.TypeOf(q.ECAPMODE), constant.MakeInt64(int64(q.ECAPMODE))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOOFUS": {reflect.TypeOf(q.EDOOFUS), constant.MakeInt64(int64(q.EDOOFUS))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCAPABLE": {reflect.TypeOf(q.ENOTCAPABLE), constant.MakeInt64(int64(q.ENOTCAPABLE))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGLIBRT": {reflect.TypeOf(q.SIGLIBRT), constant.MakeInt64(int64(q.SIGLIBRT))}, + "SIGLWP": {reflect.TypeOf(q.SIGLWP), constant.MakeInt64(int64(q.SIGLWP))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ARP": {"untyped int", constant.MakeInt64(int64(q.AF_ARP))}, + "AF_ATM": {"untyped int", constant.MakeInt64(int64(q.AF_ATM))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_INET6_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET6_SDP))}, + "AF_INET_SDP": {"untyped int", constant.MakeInt64(int64(q.AF_INET_SDP))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_NETGRAPH": {"untyped int", constant.MakeInt64(int64(q.AF_NETGRAPH))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SCLUSTER": {"untyped int", constant.MakeInt64(int64(q.AF_SCLUSTER))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SLOW": {"untyped int", constant.MakeInt64(int64(q.AF_SLOW))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VENDOR00": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR00))}, + "AF_VENDOR01": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR01))}, + "AF_VENDOR02": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR02))}, + "AF_VENDOR03": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR03))}, + "AF_VENDOR04": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR04))}, + "AF_VENDOR05": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR05))}, + "AF_VENDOR06": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR06))}, + "AF_VENDOR07": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR07))}, + "AF_VENDOR08": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR08))}, + "AF_VENDOR09": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR09))}, + "AF_VENDOR10": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR10))}, + "AF_VENDOR11": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR11))}, + "AF_VENDOR12": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR12))}, + "AF_VENDOR13": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR13))}, + "AF_VENDOR14": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR14))}, + "AF_VENDOR15": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR15))}, + "AF_VENDOR16": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR16))}, + "AF_VENDOR17": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR17))}, + "AF_VENDOR18": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR18))}, + "AF_VENDOR19": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR19))}, + "AF_VENDOR20": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR20))}, + "AF_VENDOR21": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR21))}, + "AF_VENDOR22": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR22))}, + "AF_VENDOR23": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR23))}, + "AF_VENDOR24": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR24))}, + "AF_VENDOR25": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR25))}, + "AF_VENDOR26": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR26))}, + "AF_VENDOR27": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR27))}, + "AF_VENDOR28": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR28))}, + "AF_VENDOR29": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR29))}, + "AF_VENDOR30": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR30))}, + "AF_VENDOR31": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR31))}, + "AF_VENDOR32": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR32))}, + "AF_VENDOR33": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR33))}, + "AF_VENDOR34": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR34))}, + "AF_VENDOR35": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR35))}, + "AF_VENDOR36": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR36))}, + "AF_VENDOR37": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR37))}, + "AF_VENDOR38": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR38))}, + "AF_VENDOR39": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR39))}, + "AF_VENDOR40": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR40))}, + "AF_VENDOR41": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR41))}, + "AF_VENDOR42": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR42))}, + "AF_VENDOR43": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR43))}, + "AF_VENDOR44": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR44))}, + "AF_VENDOR45": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR45))}, + "AF_VENDOR46": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR46))}, + "AF_VENDOR47": {"untyped int", constant.MakeInt64(int64(q.AF_VENDOR47))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCFEEDBACK))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRECTION))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCGETBUFMODE))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGETZMAX": {"untyped int", constant.MakeInt64(int64(q.BIOCGETZMAX))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCGTSTAMP))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCROTZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCROTZBUF))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRECTION": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRECTION))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETBUFMODE": {"untyped int", constant.MakeInt64(int64(q.BIOCSETBUFMODE))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETFNR": {"untyped int", constant.MakeInt64(int64(q.BIOCSETFNR))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSETZBUF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETZBUF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.BIOCSTSTAMP))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_BUFMODE_BUFFER": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_BUFFER))}, + "BPF_BUFMODE_ZBUF": {"untyped int", constant.MakeInt64(int64(q.BPF_BUFMODE_ZBUF))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_T_BINTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME))}, + "BPF_T_BINTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_FAST))}, + "BPF_T_BINTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC))}, + "BPF_T_BINTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_BINTIME_MONOTONIC_FAST))}, + "BPF_T_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FAST))}, + "BPF_T_FLAG_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FLAG_MASK))}, + "BPF_T_FORMAT_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_T_FORMAT_MASK))}, + "BPF_T_MICROTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME))}, + "BPF_T_MICROTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_FAST))}, + "BPF_T_MICROTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC))}, + "BPF_T_MICROTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MICROTIME_MONOTONIC_FAST))}, + "BPF_T_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC))}, + "BPF_T_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_MONOTONIC_FAST))}, + "BPF_T_NANOTIME": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME))}, + "BPF_T_NANOTIME_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_FAST))}, + "BPF_T_NANOTIME_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC))}, + "BPF_T_NANOTIME_MONOTONIC_FAST": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NANOTIME_MONOTONIC_FAST))}, + "BPF_T_NONE": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NONE))}, + "BPF_T_NORMAL": {"untyped int", constant.MakeInt64(int64(q.BPF_T_NORMAL))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_AOS": {"untyped int", constant.MakeInt64(int64(q.DLT_AOS))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CAN_SOCKETCAN": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN_SOCKETCAN))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DBUS": {"untyped int", constant.MakeInt64(int64(q.DLT_DBUS))}, + "DLT_DECT": {"untyped int", constant.MakeInt64(int64(q.DLT_DECT))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_DVB_CI": {"untyped int", constant.MakeInt64(int64(q.DLT_DVB_CI))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FC_2": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2))}, + "DLT_FC_2_WITH_FRAME_DELIMS": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2_WITH_FRAME_DELIMS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_GSMTAP_ABIS": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_ABIS))}, + "DLT_GSMTAP_UM": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_UM))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NOFCS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NOFCS))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPFILTER": {"untyped int", constant.MakeInt64(int64(q.DLT_IPFILTER))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPOIB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPOIB))}, + "DLT_IPV4": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV4))}, + "DLT_IPV6": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV6))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_ATM_CEMIC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM_CEMIC))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FIBRECHANNEL))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_SRX_E2E": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SRX_E2E))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_JUNIPER_VS": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VS))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_EVDEV": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_EVDEV))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_PPP_WITHDIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_PPP_WITHDIRECTION))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MATCHING_MAX": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MAX))}, + "DLT_MATCHING_MIN": {"untyped int", constant.MakeInt64(int64(q.DLT_MATCHING_MIN))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MPEG_2_TS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPEG_2_TS))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_MUX27010": {"untyped int", constant.MakeInt64(int64(q.DLT_MUX27010))}, + "DLT_NETANALYZER": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER))}, + "DLT_NETANALYZER_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.DLT_NETANALYZER_TRANSPARENT))}, + "DLT_NFC_LLCP": {"untyped int", constant.MakeInt64(int64(q.DLT_NFC_LLCP))}, + "DLT_NFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_NFLOG))}, + "DLT_NG40": {"untyped int", constant.MakeInt64(int64(q.DLT_NG40))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PPP_WITH_DIRECTION": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIRECTION))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_STANAG_5066_D_PDU": {"untyped int", constant.MakeInt64(int64(q.DLT_STANAG_5066_D_PDU))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_USB_LINUX_MMAPPED": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX_MMAPPED))}, + "DLT_USER0": {"untyped int", constant.MakeInt64(int64(q.DLT_USER0))}, + "DLT_USER1": {"untyped int", constant.MakeInt64(int64(q.DLT_USER1))}, + "DLT_USER10": {"untyped int", constant.MakeInt64(int64(q.DLT_USER10))}, + "DLT_USER11": {"untyped int", constant.MakeInt64(int64(q.DLT_USER11))}, + "DLT_USER12": {"untyped int", constant.MakeInt64(int64(q.DLT_USER12))}, + "DLT_USER13": {"untyped int", constant.MakeInt64(int64(q.DLT_USER13))}, + "DLT_USER14": {"untyped int", constant.MakeInt64(int64(q.DLT_USER14))}, + "DLT_USER15": {"untyped int", constant.MakeInt64(int64(q.DLT_USER15))}, + "DLT_USER2": {"untyped int", constant.MakeInt64(int64(q.DLT_USER2))}, + "DLT_USER3": {"untyped int", constant.MakeInt64(int64(q.DLT_USER3))}, + "DLT_USER4": {"untyped int", constant.MakeInt64(int64(q.DLT_USER4))}, + "DLT_USER5": {"untyped int", constant.MakeInt64(int64(q.DLT_USER5))}, + "DLT_USER6": {"untyped int", constant.MakeInt64(int64(q.DLT_USER6))}, + "DLT_USER7": {"untyped int", constant.MakeInt64(int64(q.DLT_USER7))}, + "DLT_USER8": {"untyped int", constant.MakeInt64(int64(q.DLT_USER8))}, + "DLT_USER9": {"untyped int", constant.MakeInt64(int64(q.DLT_USER9))}, + "DLT_WIHART": {"untyped int", constant.MakeInt64(int64(q.DLT_WIHART))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_FS": {"untyped int", constant.MakeInt64(int64(q.EVFILT_FS))}, + "EVFILT_LIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_LIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_USER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_USER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_DROP": {"untyped int", constant.MakeInt64(int64(q.EV_DROP))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_CANCEL": {"untyped int", constant.MakeInt64(int64(q.F_CANCEL))}, + "F_DUP2FD": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD))}, + "F_DUP2FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD_CLOEXEC))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_OGETLK": {"untyped int", constant.MakeInt64(int64(q.F_OGETLK))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_OSETLK": {"untyped int", constant.MakeInt64(int64(q.F_OSETLK))}, + "F_OSETLKW": {"untyped int", constant.MakeInt64(int64(q.F_OSETLKW))}, + "F_RDAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_RDAHEAD))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_READAHEAD))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLK_REMOTE": {"untyped int", constant.MakeInt64(int64(q.F_SETLK_REMOTE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_UNLCKSYS": {"untyped int", constant.MakeInt64(int64(q.F_UNLCKSYS))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_CANTCONFIG": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCONFIG))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DRV_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_OACTIVE))}, + "IFF_DRV_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_DRV_RUNNING))}, + "IFF_DYING": {"untyped int", constant.MakeInt64(int64(q.IFF_DYING))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MONITOR": {"untyped int", constant.MakeInt64(int64(q.IFF_MONITOR))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PPROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PPROMISC))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RENAMING": {"untyped int", constant.MakeInt64(int64(q.IFF_RENAMING))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_SMART": {"untyped int", constant.MakeInt64(int64(q.IFF_SMART))}, + "IFF_STATICARP": {"untyped int", constant.MakeInt64(int64(q.IFF_STATICARP))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_IPXIP": {"untyped int", constant.MakeInt64(int64(q.IFT_IPXIP))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_MASK))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OLD_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OLD_DIVERT))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEND))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SKIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SKIP))}, + "IPPROTO_SPACER": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SPACER))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TLSP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDANY))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXOPTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXOPTHDR))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_GROUP_SRC_FILTER))}, + "IPV6_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_MEMBERSHIPS))}, + "IPV6_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_SOCK_SRC_FILTER))}, + "IPV6_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIN_MEMBERSHIPS))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MSFILTER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_PREFER_TEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_TEMPADDR))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BINDANY": {"untyped int", constant.MakeInt64(int64(q.IP_BINDANY))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_DONTFRAG))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_DUMMYNET3": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET3))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW3": {"untyped int", constant.MakeInt64(int64(q.IP_FW3))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_NAT_CFG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_CFG))}, + "IP_FW_NAT_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_DEL))}, + "IP_FW_NAT_GET_CONFIG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_CONFIG))}, + "IP_FW_NAT_GET_LOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_NAT_GET_LOG))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_TABLE_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_ADD))}, + "IP_FW_TABLE_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_DEL))}, + "IP_FW_TABLE_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_FLUSH))}, + "IP_FW_TABLE_GETSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_GETSIZE))}, + "IP_FW_TABLE_LIST": {"untyped int", constant.MakeInt64(int64(q.IP_FW_TABLE_LIST))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_GROUP_SRC_FILTER))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MAX_SOCK_MUTE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_MUTE_FILTER))}, + "IP_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_SRC_FILTER))}, + "IP_MAX_SOURCE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOURCE_FILTER))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_ONESBCAST": {"untyped int", constant.MakeInt64(int64(q.IP_ONESBCAST))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_SENDSRCADDR": {"untyped int", constant.MakeInt64(int64(q.IP_SENDSRCADDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_AUTOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_AUTOSYNC))}, + "MADV_CORE": {"untyped int", constant.MakeInt64(int64(q.MADV_CORE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOCORE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MADV_NOSYNC))}, + "MADV_PROTECT": {"untyped int", constant.MakeInt64(int64(q.MADV_PROTECT))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_32BIT": {"untyped int", constant.MakeInt64(int64(q.MAP_32BIT))}, + "MAP_ALIGNED_SUPER": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNED_SUPER))}, + "MAP_ALIGNMENT_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_MASK))}, + "MAP_ALIGNMENT_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_SHIFT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_NOCORE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCORE))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_NOSYNC": {"untyped int", constant.MakeInt64(int64(q.MAP_NOSYNC))}, + "MAP_PREFAULT_READ": {"untyped int", constant.MakeInt64(int64(q.MAP_PREFAULT_READ))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_RESERVED0080": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0080))}, + "MAP_RESERVED0100": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0100))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.MSG_COMPAT))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_NBIO": {"untyped int", constant.MakeInt64(int64(q.MSG_NBIO))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_NOTIFICATION": {"untyped int", constant.MakeInt64(int64(q.MSG_NOTIFICATION))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFLISTL": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLISTL))}, + "NET_RT_IFMALIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFMALIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FFAND": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFAND))}, + "NOTE_FFCOPY": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCOPY))}, + "NOTE_FFCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCTRLMASK))}, + "NOTE_FFLAGSMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFLAGSMASK))}, + "NOTE_FFNOP": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFNOP))}, + "NOTE_FFOR": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFOR))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRIGGER": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRIGGER))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXEC": {"untyped int", constant.MakeInt64(int64(q.O_EXEC))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_TTY_INIT": {"untyped int", constant.MakeInt64(int64(q.O_TTY_INIT))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_GWFLAG_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RTF_GWFLAG_COMPAT))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLDATA": {"untyped int", constant.MakeInt64(int64(q.RTF_LLDATA))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_RNH_LOCKED": {"untyped int", constant.MakeInt64(int64(q.RTF_RNH_LOCKED))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_STICKY": {"untyped int", constant.MakeInt64(int64(q.RTF_STICKY))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RTV_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.RTV_WEIGHT))}, + "RT_CACHING_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.RT_CACHING_CONTEXT))}, + "RT_DEFAULT_FIB": {"untyped int", constant.MakeInt64(int64(q.RT_DEFAULT_FIB))}, + "RT_NORTREF": {"untyped int", constant.MakeInt64(int64(q.RT_NORTREF))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SCM_BINTIME))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFIB))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGPRIVATE_0": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_0))}, + "SIOCGPRIVATE_1": {"untyped int", constant.MakeInt64(int64(q.SIOCGPRIVATE_1))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFIB": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFIB))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFRVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRVNET))}, + "SIOCSIFVNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFVNET))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BINTIME": {"untyped int", constant.MakeInt64(int64(q.SO_BINTIME))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LABEL": {"untyped int", constant.MakeInt64(int64(q.SO_LABEL))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LISTENINCQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENINCQLEN))}, + "SO_LISTENQLEN": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLEN))}, + "SO_LISTENQLIMIT": {"untyped int", constant.MakeInt64(int64(q.SO_LISTENQLIMIT))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_NO_DDP": {"untyped int", constant.MakeInt64(int64(q.SO_NO_DDP))}, + "SO_NO_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.SO_NO_OFFLOAD))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERLABEL": {"untyped int", constant.MakeInt64(int64(q.SO_PEERLABEL))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_PROTOTYPE": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOTYPE))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SO_SETFIB))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_USER_COOKIE": {"untyped int", constant.MakeInt64(int64(q.SO_USER_COOKIE))}, + "SO_VENDOR": {"untyped int", constant.MakeInt64(int64(q.SO_VENDOR))}, + "SYS_ABORT2": {"untyped int", constant.MakeInt64(int64(q.SYS_ABORT2))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AIO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_CANCEL))}, + "SYS_AIO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_ERROR))}, + "SYS_AIO_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_FSYNC))}, + "SYS_AIO_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_MLOCK))}, + "SYS_AIO_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_READ))}, + "SYS_AIO_RETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_RETURN))}, + "SYS_AIO_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND))}, + "SYS_AIO_WAITCOMPLETE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WAITCOMPLETE))}, + "SYS_AIO_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WRITE))}, + "SYS_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT))}, + "SYS_AUDITCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITCTL))}, + "SYS_AUDITON": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITON))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BINDAT": {"untyped int", constant.MakeInt64(int64(q.SYS_BINDAT))}, + "SYS_CAP_ENTER": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_ENTER))}, + "SYS_CAP_FCNTLS_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_FCNTLS_GET))}, + "SYS_CAP_FCNTLS_LIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_FCNTLS_LIMIT))}, + "SYS_CAP_GETMODE": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_GETMODE))}, + "SYS_CAP_IOCTLS_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_IOCTLS_GET))}, + "SYS_CAP_IOCTLS_LIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_IOCTLS_LIMIT))}, + "SYS_CAP_RIGHTS_LIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_CAP_RIGHTS_LIMIT))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHFLAGSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGSAT))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETCPUCLOCKID2": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETCPUCLOCKID2))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CONNECTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECTAT))}, + "SYS_CPUSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET))}, + "SYS_CPUSET_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETAFFINITY))}, + "SYS_CPUSET_GETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_GETID))}, + "SYS_CPUSET_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETAFFINITY))}, + "SYS_CPUSET_SETID": {"untyped int", constant.MakeInt64(int64(q.SYS_CPUSET_SETID))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_EACCESS))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FD))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_LINK))}, + "SYS_EXTATTR_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FD))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_LINK))}, + "SYS_EXTATTR_LIST_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FD))}, + "SYS_EXTATTR_LIST_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FILE))}, + "SYS_EXTATTR_LIST_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_LINK))}, + "SYS_EXTATTR_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FD))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTATTR_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_LINK))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FEXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_FEXECVE))}, + "SYS_FFCLOCK_GETCOUNTER": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETCOUNTER))}, + "SYS_FFCLOCK_GETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_GETESTIMATE))}, + "SYS_FFCLOCK_SETESTIMATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FFCLOCK_SETESTIMATE))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT))}, + "SYS_GETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT_ADDR))}, + "SYS_GETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUID))}, + "SYS_GETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCONTEXT))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGINCLASS))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GSSD_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_GSSD_SYSCALL))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_JAIL": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL))}, + "SYS_JAIL_ATTACH": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_ATTACH))}, + "SYS_JAIL_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_GET))}, + "SYS_JAIL_REMOVE": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_REMOVE))}, + "SYS_JAIL_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_JAIL_SET))}, + "SYS_KENV": {"untyped int", constant.MakeInt64(int64(q.SYS_KENV))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KLDFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIND))}, + "SYS_KLDFIRSTMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDFIRSTMOD))}, + "SYS_KLDLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDLOAD))}, + "SYS_KLDNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDNEXT))}, + "SYS_KLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSTAT))}, + "SYS_KLDSYM": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDSYM))}, + "SYS_KLDUNLOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOAD))}, + "SYS_KLDUNLOADF": {"untyped int", constant.MakeInt64(int64(q.SYS_KLDUNLOADF))}, + "SYS_KMQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_NOTIFY))}, + "SYS_KMQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_OPEN))}, + "SYS_KMQ_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_SETATTR))}, + "SYS_KMQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_TIMEDRECEIVE))}, + "SYS_KMQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_TIMEDSEND))}, + "SYS_KMQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_KMQ_UNLINK))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KSEM_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_CLOSE))}, + "SYS_KSEM_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_DESTROY))}, + "SYS_KSEM_GETVALUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_GETVALUE))}, + "SYS_KSEM_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_INIT))}, + "SYS_KSEM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_OPEN))}, + "SYS_KSEM_POST": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_POST))}, + "SYS_KSEM_TIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_TIMEDWAIT))}, + "SYS_KSEM_TRYWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_TRYWAIT))}, + "SYS_KSEM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_UNLINK))}, + "SYS_KSEM_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_KSEM_WAIT))}, + "SYS_KTIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_CREATE))}, + "SYS_KTIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_DELETE))}, + "SYS_KTIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETOVERRUN))}, + "SYS_KTIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_GETTIME))}, + "SYS_KTIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_KTIMER_SETTIME))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETFH))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LIO_LISTIO": {"untyped int", constant.MakeInt64(int64(q.SYS_LIO_LISTIO))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_LPATHCONF))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_MAC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MAC_SYSCALL))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODFIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFIND))}, + "SYS_MODFNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODFNEXT))}, + "SYS_MODNEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODNEXT))}, + "SYS_MODSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODSTAT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSGSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSYS))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_NFSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSTAT))}, + "SYS_NLM_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_NLM_SYSCALL))}, + "SYS_NLSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NLSTAT))}, + "SYS_NMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_NMOUNT))}, + "SYS_NSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NSTAT))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_NTP_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_GETTIME))}, + "SYS_NUMA_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_NUMA_GETAFFINITY))}, + "SYS_NUMA_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_NUMA_SETAFFINITY))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPENBSD_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENBSD_POLL))}, + "SYS_OVADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_OVADVISE))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PDFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_PDFORK))}, + "SYS_PDGETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_PDGETPID))}, + "SYS_PDKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_PDKILL))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POSIX_FADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FADVISE))}, + "SYS_POSIX_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FALLOCATE))}, + "SYS_POSIX_OPENPT": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_OPENPT))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROCCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCCTL))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_RCTL_ADD_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_ADD_RULE))}, + "SYS_RCTL_GET_LIMITS": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_LIMITS))}, + "SYS_RCTL_GET_RACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RACCT))}, + "SYS_RCTL_GET_RULES": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_GET_RULES))}, + "SYS_RCTL_REMOVE_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_RCTL_REMOVE_RULE))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_RFORK))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RTPRIO": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO))}, + "SYS_RTPRIO_THREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_RTPRIO_THREAD))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SCTP_GENERIC_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_RECVMSG))}, + "SYS_SCTP_GENERIC_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG))}, + "SYS_SCTP_GENERIC_SENDMSG_IOV": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_GENERIC_SENDMSG_IOV))}, + "SYS_SCTP_PEELOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SCTP_PEELOFF))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMSYS))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT))}, + "SYS_SETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT_ADDR))}, + "SYS_SETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUID))}, + "SYS_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETCONTEXT))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETFIB": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFIB))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETLOGINCLASS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGINCLASS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMSYS))}, + "SYS_SHM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_OPEN))}, + "SYS_SHM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_UNLINK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGQUEUE))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGTIMEDWAIT))}, + "SYS_SIGWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAIT))}, + "SYS_SIGWAITINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGWAITINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCONTEXT))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_THR_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_CREATE))}, + "SYS_THR_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_EXIT))}, + "SYS_THR_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL))}, + "SYS_THR_KILL2": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_KILL2))}, + "SYS_THR_NEW": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_NEW))}, + "SYS_THR_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SELF))}, + "SYS_THR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SET_NAME))}, + "SYS_THR_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_SUSPEND))}, + "SYS_THR_WAKE": {"untyped int", constant.MakeInt64(int64(q.SYS_THR_WAKE))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_YIELD))}, + "SYS__UMTX_OP": {"untyped int", constant.MakeInt64(int64(q.SYS__UMTX_OP))}, + "SYS___ACL_ACLCHECK_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FD))}, + "SYS___ACL_ACLCHECK_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_FILE))}, + "SYS___ACL_ACLCHECK_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_ACLCHECK_LINK))}, + "SYS___ACL_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FD))}, + "SYS___ACL_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_FILE))}, + "SYS___ACL_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_DELETE_LINK))}, + "SYS___ACL_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FD))}, + "SYS___ACL_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_FILE))}, + "SYS___ACL_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_GET_LINK))}, + "SYS___ACL_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FD))}, + "SYS___ACL_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_FILE))}, + "SYS___ACL_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___ACL_SET_LINK))}, + "SYS___CAP_RIGHTS_GET": {"untyped int", constant.MakeInt64(int64(q.SYS___CAP_RIGHTS_GET))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___MAC_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_EXECVE))}, + "SYS___MAC_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FD))}, + "SYS___MAC_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FILE))}, + "SYS___MAC_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LINK))}, + "SYS___MAC_GET_PID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PID))}, + "SYS___MAC_GET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PROC))}, + "SYS___MAC_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FD))}, + "SYS___MAC_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FILE))}, + "SYS___MAC_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LINK))}, + "SYS___MAC_SET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_PROC))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS___SETUGID))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofBpfZbuf": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbuf))}, + "SizeofBpfZbufHeader": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfZbufHeader))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CA_NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_CA_NAME_MAX))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_VENDOR": {"untyped int", constant.MakeInt64(int64(q.TCP_VENDOR))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DCD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DCD))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTMASTER": {"untyped int", constant.MakeInt64(int64(q.TIOCPTMASTER))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VERASE2": {"untyped int", constant.MakeInt64(int64(q.VERASE2))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WLINUXCLONE": {"untyped int", constant.MakeInt64(int64(q.WLINUXCLONE))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WTRAPPED": {"untyped int", constant.MakeInt64(int64(q.WTRAPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_illumos_amd64.go b/pkg/syscall/go123_export_illumos_amd64.go new file mode 100755 index 00000000..b96e02f6 --- /dev/null +++ b/pkg/syscall/go123_export_illumos_amd64.go @@ -0,0 +1,1514 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timeval32": reflect.TypeOf((*q.Timeval32)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getexecname": reflect.ValueOf(q.Getexecname), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Gethostname": reflect.ValueOf(q.Gethostname), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Kill": reflect.ValueOf(q.Kill), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOCKUNMAPPED": {reflect.TypeOf(q.ELOCKUNMAPPED), constant.MakeInt64(int64(q.ELOCKUNMAPPED))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTACTIVE": {reflect.TypeOf(q.ENOTACTIVE), constant.MakeInt64(int64(q.ENOTACTIVE))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCANCEL": {reflect.TypeOf(q.SIGCANCEL), constant.MakeInt64(int64(q.SIGCANCEL))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGFREEZE": {reflect.TypeOf(q.SIGFREEZE), constant.MakeInt64(int64(q.SIGFREEZE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGJVM1": {reflect.TypeOf(q.SIGJVM1), constant.MakeInt64(int64(q.SIGJVM1))}, + "SIGJVM2": {reflect.TypeOf(q.SIGJVM2), constant.MakeInt64(int64(q.SIGJVM2))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGLOST": {reflect.TypeOf(q.SIGLOST), constant.MakeInt64(int64(q.SIGLOST))}, + "SIGLWP": {reflect.TypeOf(q.SIGLWP), constant.MakeInt64(int64(q.SIGLWP))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHAW": {reflect.TypeOf(q.SIGTHAW), constant.MakeInt64(int64(q.SIGTHAW))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWAITING": {reflect.TypeOf(q.SIGWAITING), constant.MakeInt64(int64(q.SIGWAITING))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + "SIGXRES": {reflect.TypeOf(q.SIGXRES), constant.MakeInt64(int64(q.SIGXRES))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_802": {"untyped int", constant.MakeInt64(int64(q.AF_802))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_GOSIP": {"untyped int", constant.MakeInt64(int64(q.AF_GOSIP))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_INET_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.AF_INET_OFFLOAD))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NBS": {"untyped int", constant.MakeInt64(int64(q.AF_NBS))}, + "AF_NCA": {"untyped int", constant.MakeInt64(int64(q.AF_NCA))}, + "AF_NIT": {"untyped int", constant.MakeInt64(int64(q.AF_NIT))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_OSINET": {"untyped int", constant.MakeInt64(int64(q.AF_OSINET))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_POLICY": {"untyped int", constant.MakeInt64(int64(q.AF_POLICY))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TRILL": {"untyped int", constant.MakeInt64(int64(q.AF_TRILL))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FC))}, + "ARPHRD_FRAME": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAME))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_IB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IB))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IPATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPATM))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B153600": {"untyped int", constant.MakeInt64(int64(q.B153600))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B307200": {"untyped int", constant.MakeInt64(int64(q.B307200))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGDLTLIST32": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST32))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGETLIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETLIF))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGRTIMEOUT32": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT32))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGSTATSOLD": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATSOLD))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETF32": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF32))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETLIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETLIF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSRTIMEOUT32": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT32))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTCPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSTCPF))}, + "BIOCSUDPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSUDPF))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DFLTBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_DFLTBUFSIZE))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CSWTCH": {"untyped int", constant.MakeInt64(int64(q.CSWTCH))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HDLC))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.DLT_HIPPI))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPOIB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPOIB))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RAWAF_MASK": {"untyped int", constant.MakeInt64(int64(q.DLT_RAWAF_MASK))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMPTY_SET": {"untyped int", constant.MakeInt64(int64(q.EMPTY_SET))}, + "EMT_CPCOVF": {"untyped int", constant.MakeInt64(int64(q.EMT_CPCOVF))}, + "EQUALITY_CHECK": {"untyped int", constant.MakeInt64(int64(q.EQUALITY_CHECK))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_NFDBITS": {"untyped int", constant.MakeInt64(int64(q.FD_NFDBITS))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHALL": {"untyped int", constant.MakeInt64(int64(q.FLUSHALL))}, + "FLUSHDATA": {"untyped int", constant.MakeInt64(int64(q.FLUSHDATA))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_ALLOCSP": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCSP))}, + "F_ALLOCSP64": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCSP64))}, + "F_BADFD": {"untyped int", constant.MakeInt64(int64(q.F_BADFD))}, + "F_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.F_BLKSIZE))}, + "F_BLOCKS": {"untyped int", constant.MakeInt64(int64(q.F_BLOCKS))}, + "F_CHKFL": {"untyped int", constant.MakeInt64(int64(q.F_CHKFL))}, + "F_COMPAT": {"untyped int", constant.MakeInt64(int64(q.F_COMPAT))}, + "F_DUP2FD": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD))}, + "F_DUP2FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD_CLOEXEC))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FREESP": {"untyped int", constant.MakeInt64(int64(q.F_FREESP))}, + "F_FREESP64": {"untyped int", constant.MakeInt64(int64(q.F_FREESP64))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETXFL": {"untyped int", constant.MakeInt64(int64(q.F_GETXFL))}, + "F_HASREMOTELOCKS": {"untyped int", constant.MakeInt64(int64(q.F_HASREMOTELOCKS))}, + "F_ISSTREAM": {"untyped int", constant.MakeInt64(int64(q.F_ISSTREAM))}, + "F_MANDDNY": {"untyped int", constant.MakeInt64(int64(q.F_MANDDNY))}, + "F_MDACC": {"untyped int", constant.MakeInt64(int64(q.F_MDACC))}, + "F_NODNY": {"untyped int", constant.MakeInt64(int64(q.F_NODNY))}, + "F_NPRIV": {"untyped int", constant.MakeInt64(int64(q.F_NPRIV))}, + "F_PRIV": {"untyped int", constant.MakeInt64(int64(q.F_PRIV))}, + "F_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.F_QUOTACTL))}, + "F_RDACC": {"untyped int", constant.MakeInt64(int64(q.F_RDACC))}, + "F_RDDNY": {"untyped int", constant.MakeInt64(int64(q.F_RDDNY))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_REVOKE": {"untyped int", constant.MakeInt64(int64(q.F_REVOKE))}, + "F_RMACC": {"untyped int", constant.MakeInt64(int64(q.F_RMACC))}, + "F_RMDNY": {"untyped int", constant.MakeInt64(int64(q.F_RMDNY))}, + "F_RWACC": {"untyped int", constant.MakeInt64(int64(q.F_RWACC))}, + "F_RWDNY": {"untyped int", constant.MakeInt64(int64(q.F_RWDNY))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLK64_NBMAND": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64_NBMAND))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETLK_NBMAND": {"untyped int", constant.MakeInt64(int64(q.F_SETLK_NBMAND))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SHARE": {"untyped int", constant.MakeInt64(int64(q.F_SHARE))}, + "F_SHARE_NBMAND": {"untyped int", constant.MakeInt64(int64(q.F_SHARE_NBMAND))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_UNLKSYS": {"untyped int", constant.MakeInt64(int64(q.F_UNLKSYS))}, + "F_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.F_UNSHARE))}, + "F_WRACC": {"untyped int", constant.MakeInt64(int64(q.F_WRACC))}, + "F_WRDNY": {"untyped int", constant.MakeInt64(int64(q.F_WRDNY))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.IFF_ADDRCONF))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_ANYCAST))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_COS_ENABLED": {"untyped int", constant.MakeInt64(int64(q.IFF_COS_ENABLED))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFF_DEPRECATED))}, + "IFF_DHCPRUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_DHCPRUNNING))}, + "IFF_DUPLICATE": {"untyped int", constant.MakeInt64(int64(q.IFF_DUPLICATE))}, + "IFF_FAILED": {"untyped int", constant.MakeInt64(int64(q.IFF_FAILED))}, + "IFF_FIXEDMTU": {"untyped int", constant.MakeInt64(int64(q.IFF_FIXEDMTU))}, + "IFF_INACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_INACTIVE))}, + "IFF_INTELLIGENT": {"untyped int", constant.MakeInt64(int64(q.IFF_INTELLIGENT))}, + "IFF_IPMP": {"untyped int", constant.MakeInt64(int64(q.IFF_IPMP))}, + "IFF_IPMP_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_IPMP_CANTCHANGE))}, + "IFF_IPMP_INVALID": {"untyped int", constant.MakeInt64(int64(q.IFF_IPMP_INVALID))}, + "IFF_IPV4": {"untyped int", constant.MakeInt64(int64(q.IFF_IPV4))}, + "IFF_IPV6": {"untyped int", constant.MakeInt64(int64(q.IFF_IPV6))}, + "IFF_L3PROTECT": {"untyped int", constant.MakeInt64(int64(q.IFF_L3PROTECT))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_BCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_BCAST))}, + "IFF_NOACCEPT": {"untyped int", constant.MakeInt64(int64(q.IFF_NOACCEPT))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFAILOVER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFAILOVER))}, + "IFF_NOLINKLOCAL": {"untyped int", constant.MakeInt64(int64(q.IFF_NOLINKLOCAL))}, + "IFF_NOLOCAL": {"untyped int", constant.MakeInt64(int64(q.IFF_NOLOCAL))}, + "IFF_NONUD": {"untyped int", constant.MakeInt64(int64(q.IFF_NONUD))}, + "IFF_NORTEXCH": {"untyped int", constant.MakeInt64(int64(q.IFF_NORTEXCH))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NOXMIT": {"untyped int", constant.MakeInt64(int64(q.IFF_NOXMIT))}, + "IFF_OFFLINE": {"untyped int", constant.MakeInt64(int64(q.IFF_OFFLINE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PREFERRED": {"untyped int", constant.MakeInt64(int64(q.IFF_PREFERRED))}, + "IFF_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.IFF_PRIVATE))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_ROUTER": {"untyped int", constant.MakeInt64(int64(q.IFF_ROUTER))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_STANDBY": {"untyped int", constant.MakeInt64(int64(q.IFF_STANDBY))}, + "IFF_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFF_TEMPORARY))}, + "IFF_UNNUMBERED": {"untyped int", constant.MakeInt64(int64(q.IFF_UNNUMBERED))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFF_VIRTUAL))}, + "IFF_VRRP": {"untyped int", constant.MakeInt64(int64(q.IFF_VRRP))}, + "IFF_XRESOLV": {"untyped int", constant.MakeInt64(int64(q.IFF_XRESOLV))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_6TO4": {"untyped int", constant.MakeInt64(int64(q.IFT_6TO4))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IB": {"untyped int", constant.MakeInt64(int64(q.IFT_IB))}, + "IFT_IPV4": {"untyped int", constant.MakeInt64(int64(q.IFT_IPV4))}, + "IFT_IPV6": {"untyped int", constant.MakeInt64(int64(q.IFT_IPV6))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_AUTOCONF_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_AUTOCONF_MASK))}, + "IN_AUTOCONF_NET": {"untyped int", constant.MakeInt64(int64(q.IN_AUTOCONF_NET))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_CLASSE_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSE_NET))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_PRIVATE12_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE12_MASK))}, + "IN_PRIVATE12_NET": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE12_NET))}, + "IN_PRIVATE16_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE16_MASK))}, + "IN_PRIVATE16_NET": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE16_NET))}, + "IN_PRIVATE8_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE8_MASK))}, + "IN_PRIVATE8_NET": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE8_NET))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_OSPF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPF))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_BOUND_IF))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FLOWINFO_FLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_FLOWLABEL))}, + "IPV6_FLOWINFO_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_TCLASS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PAD1_OPT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PAD1_OPT))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PREFER_SRC_CGA": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_CGA))}, + "IPV6_PREFER_SRC_CGADEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_CGADEFAULT))}, + "IPV6_PREFER_SRC_CGAMASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_CGAMASK))}, + "IPV6_PREFER_SRC_COA": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_COA))}, + "IPV6_PREFER_SRC_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_DEFAULT))}, + "IPV6_PREFER_SRC_HOME": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_HOME))}, + "IPV6_PREFER_SRC_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_MASK))}, + "IPV6_PREFER_SRC_MIPDEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_MIPDEFAULT))}, + "IPV6_PREFER_SRC_MIPMASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_MIPMASK))}, + "IPV6_PREFER_SRC_NONCGA": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_NONCGA))}, + "IPV6_PREFER_SRC_PUBLIC": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_PUBLIC))}, + "IPV6_PREFER_SRC_TMP": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_TMP))}, + "IPV6_PREFER_SRC_TMPDEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_TMPDEFAULT))}, + "IPV6_PREFER_SRC_TMPMASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_TMPMASK))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVRTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDRDSTOPTS))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SEC_OPT": {"untyped int", constant.MakeInt64(int64(q.IPV6_SEC_OPT))}, + "IPV6_SRC_PREFERENCES": {"untyped int", constant.MakeInt64(int64(q.IPV6_SRC_PREFERENCES))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_UNSPEC_SRC": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNSPEC_SRC))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IP_BOUND_IF))}, + "IP_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IP_BROADCAST))}, + "IP_BROADCAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_BROADCAST_TTL))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DHCPINIT_IF": {"untyped int", constant.MakeInt64(int64(q.IP_DHCPINIT_IF))}, + "IP_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_DONTFRAG))}, + "IP_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.IP_DONTROUTE))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IP_NEXTHOP))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_RECVPKTINFO))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVSLLA": {"untyped int", constant.MakeInt64(int64(q.IP_RECVSLLA))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.IP_REUSEADDR))}, + "IP_SEC_OPT": {"untyped int", constant.MakeInt64(int64(q.IP_SEC_OPT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNSPEC_SRC": {"untyped int", constant.MakeInt64(int64(q.IP_UNSPEC_SRC))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_ACCESS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.MADV_ACCESS_DEFAULT))}, + "MADV_ACCESS_LWP": {"untyped int", constant.MakeInt64(int64(q.MADV_ACCESS_LWP))}, + "MADV_ACCESS_MANY": {"untyped int", constant.MakeInt64(int64(q.MADV_ACCESS_MANY))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_32BIT": {"untyped int", constant.MakeInt64(int64(q.MAP_32BIT))}, + "MAP_ALIGN": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGN))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_INITDATA": {"untyped int", constant.MakeInt64(int64(q.MAP_INITDATA))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_TEXT": {"untyped int", constant.MakeInt64(int64(q.MAP_TEXT))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_DUPCTRL": {"untyped int", constant.MakeInt64(int64(q.MSG_DUPCTRL))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_MAXIOVLEN": {"untyped int", constant.MakeInt64(int64(q.MSG_MAXIOVLEN))}, + "MSG_NOTIFICATION": {"untyped int", constant.MakeInt64(int64(q.MSG_NOTIFICATION))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_XPG4_2": {"untyped int", constant.MakeInt64(int64(q.MSG_XPG4_2))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_OLDSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_OLDSYNC))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "M_FLUSH": {"untyped int", constant.MakeInt64(int64(q.M_FLUSH))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPENFAIL": {"untyped int", constant.MakeInt64(int64(q.OPENFAIL))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXEC": {"untyped int", constant.MakeInt64(int64(q.O_EXEC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NOLINKS": {"untyped int", constant.MakeInt64(int64(q.O_NOLINKS))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SEARCH": {"untyped int", constant.MakeInt64(int64(q.O_SEARCH))}, + "O_SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.O_SIOCGIFCONF))}, + "O_SIOCGLIFCONF": {"untyped int", constant.MakeInt64(int64(q.O_SIOCGLIFCONF))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "O_XATTR": {"untyped int", constant.MakeInt64(int64(q.O_XATTR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PAREXT": {"untyped int", constant.MakeInt64(int64(q.PAREXT))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_SRC": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRC))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_NUMBITS": {"untyped int", constant.MakeInt64(int64(q.RTA_NUMBITS))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTF_INDIRECT))}, + "RTF_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTF_KERNEL))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTIRT": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTIRT))}, + "RTF_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.RTF_PRIVATE))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_SETSRC": {"untyped int", constant.MakeInt64(int64(q.RTF_SETSRC))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTF_ZONE": {"untyped int", constant.MakeInt64(int64(q.RTF_ZONE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_CHGADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_CHGADDR))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_FREEADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_FREEADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RT_AWARE": {"untyped int", constant.MakeInt64(int64(q.RT_AWARE))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_UCRED": {"untyped int", constant.MakeInt64(int64(q.SCM_UCRED))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIG2STR_MAX": {"untyped int", constant.MakeInt64(int64(q.SIG2STR_MAX))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIPSECONFIG": {"untyped int", constant.MakeInt64(int64(q.SIOCDIPSECONFIG))}, + "SIOCDXARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDXARP))}, + "SIOCFIPSECONFIG": {"untyped int", constant.MakeInt64(int64(q.SIOCFIPSECONFIG))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGDSTINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCGDSTINFO))}, + "SIOCGENADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGENADDR))}, + "SIOCGENPSTATS": {"untyped int", constant.MakeInt64(int64(q.SIOCGENPSTATS))}, + "SIOCGETLSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETLSGCNT))}, + "SIOCGETNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGETNAME))}, + "SIOCGETPEER": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPEER))}, + "SIOCGETPROP": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPROP))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSYNC))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFMUXID": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMUXID))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFNUM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNUM))}, + "SIOCGIP6ADDRPOLICY": {"untyped int", constant.MakeInt64(int64(q.SIOCGIP6ADDRPOLICY))}, + "SIOCGIPMSFILTER": {"untyped int", constant.MakeInt64(int64(q.SIOCGIPMSFILTER))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFBINDING": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFBINDING))}, + "SIOCGLIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFBRDADDR))}, + "SIOCGLIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFCONF))}, + "SIOCGLIFDADSTATE": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFDADSTATE))}, + "SIOCGLIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFDSTADDR))}, + "SIOCGLIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFFLAGS))}, + "SIOCGLIFGROUPINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFGROUPINFO))}, + "SIOCGLIFGROUPNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFGROUPNAME))}, + "SIOCGLIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFHWADDR))}, + "SIOCGLIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFINDEX))}, + "SIOCGLIFLNKINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFLNKINFO))}, + "SIOCGLIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFMETRIC))}, + "SIOCGLIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFMTU))}, + "SIOCGLIFMUXID": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFMUXID))}, + "SIOCGLIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFNETMASK))}, + "SIOCGLIFNUM": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFNUM))}, + "SIOCGLIFSRCOF": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFSRCOF))}, + "SIOCGLIFSUBNET": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFSUBNET))}, + "SIOCGLIFTOKEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFTOKEN))}, + "SIOCGLIFUSESRC": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFUSESRC))}, + "SIOCGLIFZONE": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFZONE))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGMSFILTER": {"untyped int", constant.MakeInt64(int64(q.SIOCGMSFILTER))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGXARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGXARP))}, + "SIOCIFDETACH": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDETACH))}, + "SIOCILB": {"untyped int", constant.MakeInt64(int64(q.SIOCILB))}, + "SIOCLIFADDIF": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFADDIF))}, + "SIOCLIFDELND": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFDELND))}, + "SIOCLIFGETND": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFGETND))}, + "SIOCLIFREMOVEIF": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFREMOVEIF))}, + "SIOCLIFSETND": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFSETND))}, + "SIOCLIPSECONFIG": {"untyped int", constant.MakeInt64(int64(q.SIOCLIPSECONFIG))}, + "SIOCLOWER": {"untyped int", constant.MakeInt64(int64(q.SIOCLOWER))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSCTPGOPT": {"untyped int", constant.MakeInt64(int64(q.SIOCSCTPGOPT))}, + "SIOCSCTPPEELOFF": {"untyped int", constant.MakeInt64(int64(q.SIOCSCTPPEELOFF))}, + "SIOCSCTPSOPT": {"untyped int", constant.MakeInt64(int64(q.SIOCSCTPSOPT))}, + "SIOCSENABLESDP": {"untyped int", constant.MakeInt64(int64(q.SIOCSENABLESDP))}, + "SIOCSETPROP": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPROP))}, + "SIOCSETSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETSYNC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFINDEX))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFMUXID": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMUXID))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIP6ADDRPOLICY": {"untyped int", constant.MakeInt64(int64(q.SIOCSIP6ADDRPOLICY))}, + "SIOCSIPMSFILTER": {"untyped int", constant.MakeInt64(int64(q.SIOCSIPMSFILTER))}, + "SIOCSIPSECONFIG": {"untyped int", constant.MakeInt64(int64(q.SIOCSIPSECONFIG))}, + "SIOCSLGETREQ": {"untyped int", constant.MakeInt64(int64(q.SIOCSLGETREQ))}, + "SIOCSLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFADDR))}, + "SIOCSLIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFBRDADDR))}, + "SIOCSLIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFDSTADDR))}, + "SIOCSLIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFFLAGS))}, + "SIOCSLIFGROUPNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFGROUPNAME))}, + "SIOCSLIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFINDEX))}, + "SIOCSLIFLNKINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFLNKINFO))}, + "SIOCSLIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFMETRIC))}, + "SIOCSLIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFMTU))}, + "SIOCSLIFMUXID": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFMUXID))}, + "SIOCSLIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFNAME))}, + "SIOCSLIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFNETMASK))}, + "SIOCSLIFPREFIX": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPREFIX))}, + "SIOCSLIFSUBNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFSUBNET))}, + "SIOCSLIFTOKEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFTOKEN))}, + "SIOCSLIFUSESRC": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFUSESRC))}, + "SIOCSLIFZONE": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFZONE))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSLSTAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLSTAT))}, + "SIOCSMSFILTER": {"untyped int", constant.MakeInt64(int64(q.SIOCSMSFILTER))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSPROMISC": {"untyped int", constant.MakeInt64(int64(q.SIOCSPROMISC))}, + "SIOCSQPTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSQPTR))}, + "SIOCSSDSTATS": {"untyped int", constant.MakeInt64(int64(q.SIOCSSDSTATS))}, + "SIOCSSESTATS": {"untyped int", constant.MakeInt64(int64(q.SIOCSSESTATS))}, + "SIOCSXARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSXARP))}, + "SIOCTMYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCTMYADDR))}, + "SIOCTMYSITE": {"untyped int", constant.MakeInt64(int64(q.SIOCTMYSITE))}, + "SIOCTONLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCTONLINK))}, + "SIOCUPPER": {"untyped int", constant.MakeInt64(int64(q.SIOCUPPER))}, + "SIOCX25RCV": {"untyped int", constant.MakeInt64(int64(q.SIOCX25RCV))}, + "SIOCX25TBL": {"untyped int", constant.MakeInt64(int64(q.SIOCX25TBL))}, + "SIOCX25XMT": {"untyped int", constant.MakeInt64(int64(q.SIOCX25XMT))}, + "SIOCXPROTO": {"untyped int", constant.MakeInt64(int64(q.SIOCXPROTO))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NDELAY": {"untyped int", constant.MakeInt64(int64(q.SOCK_NDELAY))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOCK_TYPE_MASK": {"untyped int", constant.MakeInt64(int64(q.SOCK_TYPE_MASK))}, + "SOL_FILTER": {"untyped int", constant.MakeInt64(int64(q.SOL_FILTER))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_ROUTE": {"untyped int", constant.MakeInt64(int64(q.SOL_ROUTE))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ALL": {"untyped int", constant.MakeInt64(int64(q.SO_ALL))}, + "SO_ALLZONES": {"untyped int", constant.MakeInt64(int64(q.SO_ALLZONES))}, + "SO_ANON_MLP": {"untyped int", constant.MakeInt64(int64(q.SO_ANON_MLP))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BAND": {"untyped int", constant.MakeInt64(int64(q.SO_BAND))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_COPYOPT": {"untyped int", constant.MakeInt64(int64(q.SO_COPYOPT))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DELIM": {"untyped int", constant.MakeInt64(int64(q.SO_DELIM))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DGRAM_ERRIND": {"untyped int", constant.MakeInt64(int64(q.SO_DGRAM_ERRIND))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTLINGER": {"untyped int", constant.MakeInt64(int64(q.SO_DONTLINGER))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROPT": {"untyped int", constant.MakeInt64(int64(q.SO_ERROPT))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_EXCLBIND": {"untyped int", constant.MakeInt64(int64(q.SO_EXCLBIND))}, + "SO_HIWAT": {"untyped int", constant.MakeInt64(int64(q.SO_HIWAT))}, + "SO_ISNTTY": {"untyped int", constant.MakeInt64(int64(q.SO_ISNTTY))}, + "SO_ISTTY": {"untyped int", constant.MakeInt64(int64(q.SO_ISTTY))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_LOWAT))}, + "SO_MAC_EXEMPT": {"untyped int", constant.MakeInt64(int64(q.SO_MAC_EXEMPT))}, + "SO_MAC_IMPLICIT": {"untyped int", constant.MakeInt64(int64(q.SO_MAC_IMPLICIT))}, + "SO_MAXBLK": {"untyped int", constant.MakeInt64(int64(q.SO_MAXBLK))}, + "SO_MAXPSZ": {"untyped int", constant.MakeInt64(int64(q.SO_MAXPSZ))}, + "SO_MINPSZ": {"untyped int", constant.MakeInt64(int64(q.SO_MINPSZ))}, + "SO_MREADOFF": {"untyped int", constant.MakeInt64(int64(q.SO_MREADOFF))}, + "SO_MREADON": {"untyped int", constant.MakeInt64(int64(q.SO_MREADON))}, + "SO_NDELOFF": {"untyped int", constant.MakeInt64(int64(q.SO_NDELOFF))}, + "SO_NDELON": {"untyped int", constant.MakeInt64(int64(q.SO_NDELON))}, + "SO_NODELIM": {"untyped int", constant.MakeInt64(int64(q.SO_NODELIM))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PROTOTYPE": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOTYPE))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVPSH": {"untyped int", constant.MakeInt64(int64(q.SO_RCVPSH))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_READOPT": {"untyped int", constant.MakeInt64(int64(q.SO_READOPT))}, + "SO_RECVUCRED": {"untyped int", constant.MakeInt64(int64(q.SO_RECVUCRED))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_SECATTR": {"untyped int", constant.MakeInt64(int64(q.SO_SECATTR))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_STRHOLD": {"untyped int", constant.MakeInt64(int64(q.SO_STRHOLD))}, + "SO_TAIL": {"untyped int", constant.MakeInt64(int64(q.SO_TAIL))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TONSTOP": {"untyped int", constant.MakeInt64(int64(q.SO_TONSTOP))}, + "SO_TOSTOP": {"untyped int", constant.MakeInt64(int64(q.SO_TOSTOP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_VRRP": {"untyped int", constant.MakeInt64(int64(q.SO_VRRP))}, + "SO_WROFF": {"untyped int", constant.MakeInt64(int64(q.SO_WROFF))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_ABORT_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_ABORT_THRESHOLD))}, + "TCP_ANONPRIVBIND": {"untyped int", constant.MakeInt64(int64(q.TCP_ANONPRIVBIND))}, + "TCP_CONN_ABORT_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_CONN_ABORT_THRESHOLD))}, + "TCP_CONN_NOTIFY_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_CONN_NOTIFY_THRESHOLD))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_EXCLBIND": {"untyped int", constant.MakeInt64(int64(q.TCP_EXCLBIND))}, + "TCP_INIT_CWND": {"untyped int", constant.MakeInt64(int64(q.TCP_INIT_CWND))}, + "TCP_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE))}, + "TCP_KEEPALIVE_ABORT_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE_ABORT_THRESHOLD))}, + "TCP_KEEPALIVE_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE_THRESHOLD))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOTIFY_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_NOTIFY_THRESHOLD))}, + "TCP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.TCP_RECVDSTADDR))}, + "TCP_RTO_INITIAL": {"untyped int", constant.MakeInt64(int64(q.TCP_RTO_INITIAL))}, + "TCP_RTO_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_RTO_MAX))}, + "TCP_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_RTO_MIN))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOC": {"untyped int", constant.MakeInt64(int64(q.TIOC))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCILOOP": {"untyped int", constant.MakeInt64(int64(q.TIOCCILOOP))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETC": {"untyped int", constant.MakeInt64(int64(q.TIOCGETC))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGETP": {"untyped int", constant.MakeInt64(int64(q.TIOCGETP))}, + "TIOCGLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCGLTC))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPPS": {"untyped int", constant.MakeInt64(int64(q.TIOCGPPS))}, + "TIOCGPPSEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGPPSEV))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCHPCL": {"untyped int", constant.MakeInt64(int64(q.TIOCHPCL))}, + "TIOCKBOF": {"untyped int", constant.MakeInt64(int64(q.TIOCKBOF))}, + "TIOCKBON": {"untyped int", constant.MakeInt64(int64(q.TIOCKBON))}, + "TIOCLBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCLBIC))}, + "TIOCLBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCLBIS))}, + "TIOCLGET": {"untyped int", constant.MakeInt64(int64(q.TIOCLGET))}, + "TIOCLSET": {"untyped int", constant.MakeInt64(int64(q.TIOCLSET))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETC": {"untyped int", constant.MakeInt64(int64(q.TIOCSETC))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETN": {"untyped int", constant.MakeInt64(int64(q.TIOCSETN))}, + "TIOCSETP": {"untyped int", constant.MakeInt64(int64(q.TIOCSETP))}, + "TIOCSIGNAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSIGNAL))}, + "TIOCSILOOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSILOOP))}, + "TIOCSLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCSLTC))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPPS": {"untyped int", constant.MakeInt64(int64(q.TIOCSPPS))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VCEOF": {"untyped int", constant.MakeInt64(int64(q.VCEOF))}, + "VCEOL": {"untyped int", constant.MakeInt64(int64(q.VCEOL))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTCH": {"untyped int", constant.MakeInt64(int64(q.VSWTCH))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTFLG": {"untyped int", constant.MakeInt64(int64(q.WCONTFLG))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WOPTMASK": {"untyped int", constant.MakeInt64(int64(q.WOPTMASK))}, + "WRAP": {"untyped int", constant.MakeInt64(int64(q.WRAP))}, + "WSIGMASK": {"untyped int", constant.MakeInt64(int64(q.WSIGMASK))}, + "WSTOPFLG": {"untyped int", constant.MakeInt64(int64(q.WSTOPFLG))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WTRAPPED": {"untyped int", constant.MakeInt64(int64(q.WTRAPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_ios_amd64.go b/pkg/syscall/go123_export_ios_amd64.go new file mode 100755 index 00000000..53cbc7ae --- /dev/null +++ b/pkg/syscall/go123_export_ios_amd64.go @@ -0,0 +1,1950 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "Fbootstraptransfer_t": reflect.TypeOf((*q.Fbootstraptransfer_t)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "Fstore_t": reflect.TypeOf((*q.Fstore_t)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "IfmaMsghdr2": reflect.TypeOf((*q.IfmaMsghdr2)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Log2phys_t": reflect.TypeOf((*q.Log2phys_t)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Radvisory_t": reflect.TypeOf((*q.Radvisory_t)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timeval32": reflect.TypeOf((*q.Timeval32)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exchangedata": reflect.ValueOf(q.Exchangedata), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setprivexec": reflect.ValueOf(q.Setprivexec), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADARCH": {reflect.TypeOf(q.EBADARCH), constant.MakeInt64(int64(q.EBADARCH))}, + "EBADEXEC": {reflect.TypeOf(q.EBADEXEC), constant.MakeInt64(int64(q.EBADEXEC))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMACHO": {reflect.TypeOf(q.EBADMACHO), constant.MakeInt64(int64(q.EBADMACHO))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDEVERR": {reflect.TypeOf(q.EDEVERR), constant.MakeInt64(int64(q.EDEVERR))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPOLICY": {reflect.TypeOf(q.ENOPOLICY), constant.MakeInt64(int64(q.ENOPOLICY))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "EPWROFF": {reflect.TypeOf(q.EPWROFF), constant.MakeInt64(int64(q.EPWROFF))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHLIBVERS": {reflect.TypeOf(q.ESHLIBVERS), constant.MakeInt64(int64(q.ESHLIBVERS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NDRV": {"untyped int", constant.MakeInt64(int64(q.AF_NDRV))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PPP": {"untyped int", constant.MakeInt64(int64(q.AF_PPP))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_RESERVED_36": {"untyped int", constant.MakeInt64(int64(q.AF_RESERVED_36))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.AF_SYSTEM))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_FS": {"untyped int", constant.MakeInt64(int64(q.EVFILT_FS))}, + "EVFILT_MACHPORT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_MACHPORT))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_THREADMARKER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_THREADMARKER))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_USER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_USER))}, + "EVFILT_VM": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VM))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG0": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG0))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_OOBAND": {"untyped int", constant.MakeInt64(int64(q.EV_OOBAND))}, + "EV_POLL": {"untyped int", constant.MakeInt64(int64(q.EV_POLL))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_ADDFILESIGS": {"untyped int", constant.MakeInt64(int64(q.F_ADDFILESIGS))}, + "F_ADDSIGS": {"untyped int", constant.MakeInt64(int64(q.F_ADDSIGS))}, + "F_ALLOCATEALL": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCATEALL))}, + "F_ALLOCATECONTIG": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCATECONTIG))}, + "F_CHKCLEAN": {"untyped int", constant.MakeInt64(int64(q.F_CHKCLEAN))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FLUSH_DATA": {"untyped int", constant.MakeInt64(int64(q.F_FLUSH_DATA))}, + "F_FREEZE_FS": {"untyped int", constant.MakeInt64(int64(q.F_FREEZE_FS))}, + "F_FULLFSYNC": {"untyped int", constant.MakeInt64(int64(q.F_FULLFSYNC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLKPID": {"untyped int", constant.MakeInt64(int64(q.F_GETLKPID))}, + "F_GETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_GETNOSIGPIPE))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETPATH": {"untyped int", constant.MakeInt64(int64(q.F_GETPATH))}, + "F_GETPATH_MTMINFO": {"untyped int", constant.MakeInt64(int64(q.F_GETPATH_MTMINFO))}, + "F_GETPROTECTIONCLASS": {"untyped int", constant.MakeInt64(int64(q.F_GETPROTECTIONCLASS))}, + "F_GLOBAL_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.F_GLOBAL_NOCACHE))}, + "F_LOG2PHYS": {"untyped int", constant.MakeInt64(int64(q.F_LOG2PHYS))}, + "F_LOG2PHYS_EXT": {"untyped int", constant.MakeInt64(int64(q.F_LOG2PHYS_EXT))}, + "F_MARKDEPENDENCY": {"untyped int", constant.MakeInt64(int64(q.F_MARKDEPENDENCY))}, + "F_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.F_NOCACHE))}, + "F_NODIRECT": {"untyped int", constant.MakeInt64(int64(q.F_NODIRECT))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_PATHPKG_CHECK": {"untyped int", constant.MakeInt64(int64(q.F_PATHPKG_CHECK))}, + "F_PEOFPOSMODE": {"untyped int", constant.MakeInt64(int64(q.F_PEOFPOSMODE))}, + "F_PREALLOCATE": {"untyped int", constant.MakeInt64(int64(q.F_PREALLOCATE))}, + "F_RDADVISE": {"untyped int", constant.MakeInt64(int64(q.F_RDADVISE))}, + "F_RDAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_RDAHEAD))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_READBOOTSTRAP": {"untyped int", constant.MakeInt64(int64(q.F_READBOOTSTRAP))}, + "F_SETBACKINGSTORE": {"untyped int", constant.MakeInt64(int64(q.F_SETBACKINGSTORE))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_SETNOSIGPIPE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETPROTECTIONCLASS": {"untyped int", constant.MakeInt64(int64(q.F_SETPROTECTIONCLASS))}, + "F_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.F_SETSIZE))}, + "F_THAW_FS": {"untyped int", constant.MakeInt64(int64(q.F_THAW_FS))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_VOLPOSMODE": {"untyped int", constant.MakeInt64(int64(q.F_VOLPOSMODE))}, + "F_WRITEBOOTSTRAP": {"untyped int", constant.MakeInt64(int64(q.F_WRITEBOOTSTRAP))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CELLULAR": {"untyped int", constant.MakeInt64(int64(q.IFT_CELLULAR))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PDP": {"untyped int", constant.MakeInt64(int64(q.IFT_PDP))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LINKLOCALNETNUM": {"untyped int", constant.MakeInt64(int64(q.IN_LINKLOCALNETNUM))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292NEXTHOP))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_BOUND_IF))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXOPTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXOPTHDR))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_GROUP_SRC_FILTER))}, + "IPV6_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_MEMBERSHIPS))}, + "IPV6_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_SOCK_SRC_FILTER))}, + "IPV6_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIN_MEMBERSHIPS))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IP_BOUND_IF))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_GROUP_SRC_FILTER))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MAX_SOCK_MUTE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_MUTE_FILTER))}, + "IP_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_SRC_FILTER))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_IFINDEX": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IFINDEX))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_NAT__XXX": {"untyped int", constant.MakeInt64(int64(q.IP_NAT__XXX))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OLD_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_ADD))}, + "IP_OLD_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_DEL))}, + "IP_OLD_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_FLUSH))}, + "IP_OLD_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_GET))}, + "IP_OLD_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_RESETLOG))}, + "IP_OLD_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_ZERO))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_RECVPKTINFO))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_STRIPHDR": {"untyped int", constant.MakeInt64(int64(q.IP_STRIPHDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRAFFIC_MGT_BACKGROUND": {"untyped int", constant.MakeInt64(int64(q.IP_TRAFFIC_MGT_BACKGROUND))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_CAN_REUSE": {"untyped int", constant.MakeInt64(int64(q.MADV_CAN_REUSE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_FREE_REUSABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE_REUSABLE))}, + "MADV_FREE_REUSE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE_REUSE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MADV_ZERO_WIRED_PAGES": {"untyped int", constant.MakeInt64(int64(q.MADV_ZERO_WIRED_PAGES))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_JIT": {"untyped int", constant.MakeInt64(int64(q.MAP_JIT))}, + "MAP_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCACHE))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_RESERVED0080": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0080))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_FLUSH": {"untyped int", constant.MakeInt64(int64(q.MSG_FLUSH))}, + "MSG_HAVEMORE": {"untyped int", constant.MakeInt64(int64(q.MSG_HAVEMORE))}, + "MSG_HOLD": {"untyped int", constant.MakeInt64(int64(q.MSG_HOLD))}, + "MSG_NEEDSA": {"untyped int", constant.MakeInt64(int64(q.MSG_NEEDSA))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_RCVMORE": {"untyped int", constant.MakeInt64(int64(q.MSG_RCVMORE))}, + "MSG_SEND": {"untyped int", constant.MakeInt64(int64(q.MSG_SEND))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITSTREAM": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITSTREAM))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_DEACTIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_DEACTIVATE))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_KILLPAGES": {"untyped int", constant.MakeInt64(int64(q.MS_KILLPAGES))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_DUMP2": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP2))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFLIST2": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST2))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_STAT": {"untyped int", constant.MakeInt64(int64(q.NET_RT_STAT))}, + "NET_RT_TRASH": {"untyped int", constant.MakeInt64(int64(q.NET_RT_TRASH))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ABSOLUTE": {"untyped int", constant.MakeInt64(int64(q.NOTE_ABSOLUTE))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXITSTATUS": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXITSTATUS))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FFAND": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFAND))}, + "NOTE_FFCOPY": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCOPY))}, + "NOTE_FFCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCTRLMASK))}, + "NOTE_FFLAGSMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFLAGSMASK))}, + "NOTE_FFNOP": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFNOP))}, + "NOTE_FFOR": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFOR))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_NONE": {"untyped int", constant.MakeInt64(int64(q.NOTE_NONE))}, + "NOTE_NSECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_NSECONDS))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_REAP": {"untyped int", constant.MakeInt64(int64(q.NOTE_REAP))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_RESOURCEEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_RESOURCEEND))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_SECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_SECONDS))}, + "NOTE_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.NOTE_SIGNAL))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRIGGER": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRIGGER))}, + "NOTE_USECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_USECONDS))}, + "NOTE_VM_ERROR": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_ERROR))}, + "NOTE_VM_PRESSURE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE))}, + "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE_SUDDEN_TERMINATE))}, + "NOTE_VM_PRESSURE_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE_TERMINATE))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_ALERT": {"untyped int", constant.MakeInt64(int64(q.O_ALERT))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EVTONLY": {"untyped int", constant.MakeInt64(int64(q.O_EVTONLY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_POPUP": {"untyped int", constant.MakeInt64(int64(q.O_POPUP))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.O_SYMLINK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PT_ATTACH))}, + "PT_ATTACHEXC": {"untyped int", constant.MakeInt64(int64(q.PT_ATTACHEXC))}, + "PT_CONTINUE": {"untyped int", constant.MakeInt64(int64(q.PT_CONTINUE))}, + "PT_DENY_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PT_DENY_ATTACH))}, + "PT_DETACH": {"untyped int", constant.MakeInt64(int64(q.PT_DETACH))}, + "PT_FIRSTMACH": {"untyped int", constant.MakeInt64(int64(q.PT_FIRSTMACH))}, + "PT_FORCEQUOTA": {"untyped int", constant.MakeInt64(int64(q.PT_FORCEQUOTA))}, + "PT_KILL": {"untyped int", constant.MakeInt64(int64(q.PT_KILL))}, + "PT_READ_D": {"untyped int", constant.MakeInt64(int64(q.PT_READ_D))}, + "PT_READ_I": {"untyped int", constant.MakeInt64(int64(q.PT_READ_I))}, + "PT_READ_U": {"untyped int", constant.MakeInt64(int64(q.PT_READ_U))}, + "PT_SIGEXC": {"untyped int", constant.MakeInt64(int64(q.PT_SIGEXC))}, + "PT_STEP": {"untyped int", constant.MakeInt64(int64(q.PT_STEP))}, + "PT_THUPDATE": {"untyped int", constant.MakeInt64(int64(q.PT_THUPDATE))}, + "PT_TRACE_ME": {"untyped int", constant.MakeInt64(int64(q.PT_TRACE_ME))}, + "PT_WRITE_D": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_D))}, + "PT_WRITE_I": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_I))}, + "PT_WRITE_U": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_U))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_CONDEMNED": {"untyped int", constant.MakeInt64(int64(q.RTF_CONDEMNED))}, + "RTF_DELCLONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DELCLONE))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_IFREF": {"untyped int", constant.MakeInt64(int64(q.RTF_IFREF))}, + "RTF_IFSCOPE": {"untyped int", constant.MakeInt64(int64(q.RTF_IFSCOPE))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WASCLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_WASCLONED))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_GET2": {"untyped int", constant.MakeInt64(int64(q.RTM_GET2))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_IFINFO2": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO2))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_NEWMADDR2": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR2))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMP_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP_MONOTONIC))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCARPIPLL": {"untyped int", constant.MakeInt64(int64(q.SIOCARPIPLL))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCAUTOADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAUTOADDR))}, + "SIOCAUTONETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCAUTONETMASK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVLAN))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFALTMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFALTMTU))}, + "SIOCGIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFASYNCMAP))}, + "SIOCGIFBOND": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBOND))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDEVMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDEVMTU))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFKPI": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFKPI))}, + "SIOCGIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGIFVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFVLAN))}, + "SIOCGIFWAKEFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFWAKEFLAGS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCRSLVMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCRSLVMULTI))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSETVLAN))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFALTMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFALTMTU))}, + "SIOCSIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFASYNCMAP))}, + "SIOCSIFBOND": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBOND))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFKPI": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFKPI))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFVLAN))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_DONTTRUNC": {"untyped int", constant.MakeInt64(int64(q.SO_DONTTRUNC))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LABEL": {"untyped int", constant.MakeInt64(int64(q.SO_LABEL))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LINGER_SEC": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER_SEC))}, + "SO_NKE": {"untyped int", constant.MakeInt64(int64(q.SO_NKE))}, + "SO_NOADDRERR": {"untyped int", constant.MakeInt64(int64(q.SO_NOADDRERR))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_NOTIFYCONFLICT": {"untyped int", constant.MakeInt64(int64(q.SO_NOTIFYCONFLICT))}, + "SO_NP_EXTENSIONS": {"untyped int", constant.MakeInt64(int64(q.SO_NP_EXTENSIONS))}, + "SO_NREAD": {"untyped int", constant.MakeInt64(int64(q.SO_NREAD))}, + "SO_NWRITE": {"untyped int", constant.MakeInt64(int64(q.SO_NWRITE))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERLABEL": {"untyped int", constant.MakeInt64(int64(q.SO_PEERLABEL))}, + "SO_RANDOMPORT": {"untyped int", constant.MakeInt64(int64(q.SO_RANDOMPORT))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_RESTRICTIONS": {"untyped int", constant.MakeInt64(int64(q.SO_RESTRICTIONS))}, + "SO_RESTRICT_DENYIN": {"untyped int", constant.MakeInt64(int64(q.SO_RESTRICT_DENYIN))}, + "SO_RESTRICT_DENYOUT": {"untyped int", constant.MakeInt64(int64(q.SO_RESTRICT_DENYOUT))}, + "SO_RESTRICT_DENYSET": {"untyped int", constant.MakeInt64(int64(q.SO_RESTRICT_DENYSET))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_REUSESHAREUID": {"untyped int", constant.MakeInt64(int64(q.SO_REUSESHAREUID))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMP_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP_MONOTONIC))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_UPCALLCLOSEWAIT": {"untyped int", constant.MakeInt64(int64(q.SO_UPCALLCLOSEWAIT))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_WANTMORE": {"untyped int", constant.MakeInt64(int64(q.SO_WANTMORE))}, + "SO_WANTOOBFLAG": {"untyped int", constant.MakeInt64(int64(q.SO_WANTOOBFLAG))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT_NOCANCEL))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCESS_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS_EXTENDED))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_PROFIL))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AIO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_CANCEL))}, + "SYS_AIO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_ERROR))}, + "SYS_AIO_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_FSYNC))}, + "SYS_AIO_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_READ))}, + "SYS_AIO_RETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_RETURN))}, + "SYS_AIO_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND))}, + "SYS_AIO_SUSPEND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND_NOCANCEL))}, + "SYS_AIO_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WRITE))}, + "SYS_ATGETMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_ATGETMSG))}, + "SYS_ATPGETREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPGETREQ))}, + "SYS_ATPGETRSP": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPGETRSP))}, + "SYS_ATPSNDREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPSNDREQ))}, + "SYS_ATPSNDRSP": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPSNDRSP))}, + "SYS_ATPUTMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPUTMSG))}, + "SYS_ATSOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_ATSOCKET))}, + "SYS_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT))}, + "SYS_AUDITCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITCTL))}, + "SYS_AUDITON": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITON))}, + "SYS_AUDIT_SESSION_JOIN": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_JOIN))}, + "SYS_AUDIT_SESSION_PORT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_PORT))}, + "SYS_AUDIT_SESSION_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_SELF))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BSDTHREAD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_CREATE))}, + "SYS_BSDTHREAD_REGISTER": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_REGISTER))}, + "SYS_BSDTHREAD_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_TERMINATE))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHMOD_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD_EXTENDED))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CHUD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHUD))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE_NOCANCEL))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CONNECT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT_NOCANCEL))}, + "SYS_COPYFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_COPYFILE))}, + "SYS_CSOPS": {"untyped int", constant.MakeInt64(int64(q.SYS_CSOPS))}, + "SYS_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EXCHANGEDATA": {"untyped int", constant.MakeInt64(int64(q.SYS_EXCHANGEDATA))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMOD_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD_EXTENDED))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL_NOCANCEL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FFSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FFSCTL))}, + "SYS_FGETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETATTRLIST))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FILEPORT_MAKEFD": {"untyped int", constant.MakeInt64(int64(q.SYS_FILEPORT_MAKEFD))}, + "SYS_FILEPORT_MAKEPORT": {"untyped int", constant.MakeInt64(int64(q.SYS_FILEPORT_MAKEPORT))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FSCTL))}, + "SYS_FSETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETATTRLIST))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSGETPATH": {"untyped int", constant.MakeInt64(int64(q.SYS_FSGETPATH))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64_EXTENDED))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSTATV": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATV))}, + "SYS_FSTAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT_EXTENDED))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FSYNC_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC_NOCANCEL))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GETATTRLIST))}, + "SYS_GETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT))}, + "SYS_GETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT_ADDR))}, + "SYS_GETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUID))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDIRENTRIES64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES64))}, + "SYS_GETDIRENTRIESATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIESATTR))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETFSSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT64))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETHOSTUUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETHOSTUUID))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLCID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLCID))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSGROUPS))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETWGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETWGROUPS))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_IDENTITYSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_IDENTITYSVC))}, + "SYS_INITGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_INITGROUPS))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPOLICYSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPOLICYSYS))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KDEBUG_TRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KDEBUG_TRACE))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KEVENT64": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT64))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LIO_LISTIO": {"untyped int", constant.MakeInt64(int64(q.SYS_LIO_LISTIO))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_LSTAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64_EXTENDED))}, + "SYS_LSTATV": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTATV))}, + "SYS_LSTAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT_EXTENDED))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MAXSYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MAXSYSCALL))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKCOMPLEX": {"untyped int", constant.MakeInt64(int64(q.SYS_MKCOMPLEX))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIR_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR_EXTENDED))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFO_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO_EXTENDED))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODWATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_MODWATCH))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGRCV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV_NOCANCEL))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSGSND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND_NOCANCEL))}, + "SYS_MSGSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSYS))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MSYNC_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC_NOCANCEL))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NFSCLNT": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSCLNT))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPEN_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_EXTENDED))}, + "SYS_OPEN_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_NOCANCEL))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PID_HIBERNATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_HIBERNATE))}, + "SYS_PID_RESUME": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_RESUME))}, + "SYS_PID_SHUTDOWN_SOCKETS": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_SHUTDOWN_SOCKETS))}, + "SYS_PID_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_SUSPEND))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POLL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL_NOCANCEL))}, + "SYS_POSIX_SPAWN": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_SPAWN))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREAD_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD_NOCANCEL))}, + "SYS_PROCESS_POLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_POLICY))}, + "SYS_PROC_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_PROC_INFO))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSYNCH_CVBROAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVBROAD))}, + "SYS_PSYNCH_CVCLRPREPOST": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVCLRPREPOST))}, + "SYS_PSYNCH_CVSIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVSIGNAL))}, + "SYS_PSYNCH_CVWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVWAIT))}, + "SYS_PSYNCH_MUTEXDROP": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_MUTEXDROP))}, + "SYS_PSYNCH_MUTEXWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_MUTEXWAIT))}, + "SYS_PSYNCH_RW_DOWNGRADE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_DOWNGRADE))}, + "SYS_PSYNCH_RW_LONGRDLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_LONGRDLOCK))}, + "SYS_PSYNCH_RW_RDLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_RDLOCK))}, + "SYS_PSYNCH_RW_UNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UNLOCK))}, + "SYS_PSYNCH_RW_UNLOCK2": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UNLOCK2))}, + "SYS_PSYNCH_RW_UPGRADE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UPGRADE))}, + "SYS_PSYNCH_RW_WRLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_WRLOCK))}, + "SYS_PSYNCH_RW_YIELDWRLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_YIELDWRLOCK))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE_NOCANCEL))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_READV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_READV_NOCANCEL))}, + "SYS_READ_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_READ_NOCANCEL))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVFROM_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM_NOCANCEL))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RECVMSG_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG_NOCANCEL))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SEARCHFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEARCHFS))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SELECT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT_NOCANCEL))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMSYS))}, + "SYS_SEM_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_CLOSE))}, + "SYS_SEM_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_DESTROY))}, + "SYS_SEM_GETVALUE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_GETVALUE))}, + "SYS_SEM_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_INIT))}, + "SYS_SEM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_OPEN))}, + "SYS_SEM_POST": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_POST))}, + "SYS_SEM_TRYWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_TRYWAIT))}, + "SYS_SEM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_UNLINK))}, + "SYS_SEM_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_WAIT))}, + "SYS_SEM_WAIT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_WAIT_NOCANCEL))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDMSG_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG_NOCANCEL))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SENDTO_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO_NOCANCEL))}, + "SYS_SETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SETATTRLIST))}, + "SYS_SETAUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT))}, + "SYS_SETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT_ADDR))}, + "SYS_SETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUID))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLCID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLCID))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETPRIVEXEC": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIVEXEC))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSGROUPS))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTID))}, + "SYS_SETTID_WITH_PID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTID_WITH_PID))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETWGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETWGROUPS))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SHARED_REGION_CHECK_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_SHARED_REGION_CHECK_NP))}, + "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_SHARED_REGION_MAP_AND_SLIDE_NP))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMSYS))}, + "SYS_SHM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_OPEN))}, + "SYS_SHM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_UNLINK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGSUSPEND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND_NOCANCEL))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_STACK_SNAPSHOT": {"untyped int", constant.MakeInt64(int64(q.SYS_STACK_SNAPSHOT))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64_EXTENDED))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STATV": {"untyped int", constant.MakeInt64(int64(q.SYS_STATV))}, + "SYS_STAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT_EXTENDED))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL))}, + "SYS_THREAD_SELFID": {"untyped int", constant.MakeInt64(int64(q.SYS_THREAD_SELFID))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMASK_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK_EXTENDED))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VM_PRESSURE_MONITOR": {"untyped int", constant.MakeInt64(int64(q.SYS_VM_PRESSURE_MONITOR))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT4_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4_NOCANCEL))}, + "SYS_WAITEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITEVENT))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITID_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID_NOCANCEL))}, + "SYS_WATCHEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_WATCHEVENT))}, + "SYS_WORKQ_KERNRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_WORKQ_KERNRETURN))}, + "SYS_WORKQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_WORKQ_OPEN))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_WRITEV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV_NOCANCEL))}, + "SYS_WRITE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE_NOCANCEL))}, + "SYS___DISABLE_THREADSIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___DISABLE_THREADSIGNAL))}, + "SYS___MAC_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_EXECVE))}, + "SYS___MAC_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GETFSSTAT))}, + "SYS___MAC_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FD))}, + "SYS___MAC_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FILE))}, + "SYS___MAC_GET_LCID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LCID))}, + "SYS___MAC_GET_LCTX": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LCTX))}, + "SYS___MAC_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LINK))}, + "SYS___MAC_GET_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_MOUNT))}, + "SYS___MAC_GET_PID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PID))}, + "SYS___MAC_GET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PROC))}, + "SYS___MAC_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_MOUNT))}, + "SYS___MAC_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FD))}, + "SYS___MAC_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FILE))}, + "SYS___MAC_SET_LCTX": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LCTX))}, + "SYS___MAC_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LINK))}, + "SYS___MAC_SET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_PROC))}, + "SYS___MAC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SYSCALL))}, + "SYS___OLD_SEMWAIT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___OLD_SEMWAIT_SIGNAL))}, + "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL))}, + "SYS___PTHREAD_CANCELED": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_CANCELED))}, + "SYS___PTHREAD_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_CHDIR))}, + "SYS___PTHREAD_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_FCHDIR))}, + "SYS___PTHREAD_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_KILL))}, + "SYS___PTHREAD_MARKCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_MARKCANCEL))}, + "SYS___PTHREAD_SIGMASK": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_SIGMASK))}, + "SYS___SEMWAIT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMWAIT_SIGNAL))}, + "SYS___SEMWAIT_SIGNAL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMWAIT_SIGNAL_NOCANCEL))}, + "SYS___SIGWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGWAIT))}, + "SYS___SIGWAIT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGWAIT_NOCANCEL))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFWHT": {"untyped int", constant.MakeInt64(int64(q.S_IFWHT))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISTXT": {"untyped int", constant.MakeInt64(int64(q.S_ISTXT))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofIfmaMsghdr2": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr2))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONNECTIONTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_CONNECTIONTIMEOUT))}, + "TCP_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MINMSSOVERLOAD": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSSOVERLOAD))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_RXT_CONNDROPTIME": {"untyped int", constant.MakeInt64(int64(q.TCP_RXT_CONNDROPTIME))}, + "TCP_RXT_FINDROP": {"untyped int", constant.MakeInt64(int64(q.TCP_RXT_FINDROP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDCDTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCDCDTIMESTAMP))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCDSIMICROCODE": {"untyped int", constant.MakeInt64(int64(q.TIOCDSIMICROCODE))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCIXOFF": {"untyped int", constant.MakeInt64(int64(q.TIOCIXOFF))}, + "TIOCIXON": {"untyped int", constant.MakeInt64(int64(q.TIOCIXON))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTYGNAME": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYGNAME))}, + "TIOCPTYGRANT": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYGRANT))}, + "TIOCPTYUNLK": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYUNLK))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCSCONS))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_ios_arm64.go b/pkg/syscall/go123_export_ios_arm64.go new file mode 100755 index 00000000..29e371e2 --- /dev/null +++ b/pkg/syscall/go123_export_ios_arm64.go @@ -0,0 +1,1958 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "Fbootstraptransfer_t": reflect.TypeOf((*q.Fbootstraptransfer_t)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "Fstore_t": reflect.TypeOf((*q.Fstore_t)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "IfmaMsghdr": reflect.TypeOf((*q.IfmaMsghdr)(nil)).Elem(), + "IfmaMsghdr2": reflect.TypeOf((*q.IfmaMsghdr2)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "InterfaceMulticastAddrMessage": reflect.TypeOf((*q.InterfaceMulticastAddrMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Log2phys_t": reflect.TypeOf((*q.Log2phys_t)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Radvisory_t": reflect.TypeOf((*q.Radvisory_t)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timeval32": reflect.TypeOf((*q.Timeval32)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exchangedata": reflect.ValueOf(q.Exchangedata), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getdtablesize": reflect.ValueOf(q.Getdtablesize), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setprivexec": reflect.ValueOf(q.Setprivexec), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Undelete": reflect.ValueOf(q.Undelete), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADARCH": {reflect.TypeOf(q.EBADARCH), constant.MakeInt64(int64(q.EBADARCH))}, + "EBADEXEC": {reflect.TypeOf(q.EBADEXEC), constant.MakeInt64(int64(q.EBADEXEC))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMACHO": {reflect.TypeOf(q.EBADMACHO), constant.MakeInt64(int64(q.EBADMACHO))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDEVERR": {reflect.TypeOf(q.EDEVERR), constant.MakeInt64(int64(q.EDEVERR))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPOLICY": {reflect.TypeOf(q.ENOPOLICY), constant.MakeInt64(int64(q.ENOPOLICY))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "EPWROFF": {reflect.TypeOf(q.EPWROFF), constant.MakeInt64(int64(q.EPWROFF))}, + "EQFULL": {reflect.TypeOf(q.EQFULL), constant.MakeInt64(int64(q.EQFULL))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHLIBVERS": {reflect.TypeOf(q.ESHLIBVERS), constant.MakeInt64(int64(q.ESHLIBVERS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NDRV": {"untyped int", constant.MakeInt64(int64(q.AF_NDRV))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PPP": {"untyped int", constant.MakeInt64(int64(q.AF_PPP))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_RESERVED_36": {"untyped int", constant.MakeInt64(int64(q.AF_RESERVED_36))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.AF_SYSTEM))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_UTUN": {"untyped int", constant.MakeInt64(int64(q.AF_UTUN))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_CHDLC))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_FS": {"untyped int", constant.MakeInt64(int64(q.EVFILT_FS))}, + "EVFILT_MACHPORT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_MACHPORT))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_THREADMARKER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_THREADMARKER))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_USER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_USER))}, + "EVFILT_VM": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VM))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG0": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG0))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_OOBAND": {"untyped int", constant.MakeInt64(int64(q.EV_OOBAND))}, + "EV_POLL": {"untyped int", constant.MakeInt64(int64(q.EV_POLL))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_ADDFILESIGS": {"untyped int", constant.MakeInt64(int64(q.F_ADDFILESIGS))}, + "F_ADDSIGS": {"untyped int", constant.MakeInt64(int64(q.F_ADDSIGS))}, + "F_ALLOCATEALL": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCATEALL))}, + "F_ALLOCATECONTIG": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCATECONTIG))}, + "F_CHKCLEAN": {"untyped int", constant.MakeInt64(int64(q.F_CHKCLEAN))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FINDSIGS": {"untyped int", constant.MakeInt64(int64(q.F_FINDSIGS))}, + "F_FLUSH_DATA": {"untyped int", constant.MakeInt64(int64(q.F_FLUSH_DATA))}, + "F_FREEZE_FS": {"untyped int", constant.MakeInt64(int64(q.F_FREEZE_FS))}, + "F_FULLFSYNC": {"untyped int", constant.MakeInt64(int64(q.F_FULLFSYNC))}, + "F_GETCODEDIR": {"untyped int", constant.MakeInt64(int64(q.F_GETCODEDIR))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLKPID": {"untyped int", constant.MakeInt64(int64(q.F_GETLKPID))}, + "F_GETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_GETNOSIGPIPE))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETPATH": {"untyped int", constant.MakeInt64(int64(q.F_GETPATH))}, + "F_GETPATH_MTMINFO": {"untyped int", constant.MakeInt64(int64(q.F_GETPATH_MTMINFO))}, + "F_GETPROTECTIONCLASS": {"untyped int", constant.MakeInt64(int64(q.F_GETPROTECTIONCLASS))}, + "F_GETPROTECTIONLEVEL": {"untyped int", constant.MakeInt64(int64(q.F_GETPROTECTIONLEVEL))}, + "F_GLOBAL_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.F_GLOBAL_NOCACHE))}, + "F_LOG2PHYS": {"untyped int", constant.MakeInt64(int64(q.F_LOG2PHYS))}, + "F_LOG2PHYS_EXT": {"untyped int", constant.MakeInt64(int64(q.F_LOG2PHYS_EXT))}, + "F_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.F_NOCACHE))}, + "F_NODIRECT": {"untyped int", constant.MakeInt64(int64(q.F_NODIRECT))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_PATHPKG_CHECK": {"untyped int", constant.MakeInt64(int64(q.F_PATHPKG_CHECK))}, + "F_PEOFPOSMODE": {"untyped int", constant.MakeInt64(int64(q.F_PEOFPOSMODE))}, + "F_PREALLOCATE": {"untyped int", constant.MakeInt64(int64(q.F_PREALLOCATE))}, + "F_RDADVISE": {"untyped int", constant.MakeInt64(int64(q.F_RDADVISE))}, + "F_RDAHEAD": {"untyped int", constant.MakeInt64(int64(q.F_RDAHEAD))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETBACKINGSTORE": {"untyped int", constant.MakeInt64(int64(q.F_SETBACKINGSTORE))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKWTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.F_SETLKWTIMEOUT))}, + "F_SETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_SETNOSIGPIPE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETPROTECTIONCLASS": {"untyped int", constant.MakeInt64(int64(q.F_SETPROTECTIONCLASS))}, + "F_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.F_SETSIZE))}, + "F_SINGLE_WRITER": {"untyped int", constant.MakeInt64(int64(q.F_SINGLE_WRITER))}, + "F_THAW_FS": {"untyped int", constant.MakeInt64(int64(q.F_THAW_FS))}, + "F_TRANSCODEKEY": {"untyped int", constant.MakeInt64(int64(q.F_TRANSCODEKEY))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_VOLPOSMODE": {"untyped int", constant.MakeInt64(int64(q.F_VOLPOSMODE))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ALTPHYS": {"untyped int", constant.MakeInt64(int64(q.IFF_ALTPHYS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CELLULAR": {"untyped int", constant.MakeInt64(int64(q.IFT_CELLULAR))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PDP": {"untyped int", constant.MakeInt64(int64(q.IFT_PDP))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LINKLOCALNETNUM": {"untyped int", constant.MakeInt64(int64(q.IN_LINKLOCALNETNUM))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IPPROTO_3PC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_3PC))}, + "IPPROTO_ADFS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ADFS))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_AHIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AHIP))}, + "IPPROTO_APES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_APES))}, + "IPPROTO_ARGUS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ARGUS))}, + "IPPROTO_AX25": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AX25))}, + "IPPROTO_BHA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BHA))}, + "IPPROTO_BLT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BLT))}, + "IPPROTO_BRSATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BRSATMON))}, + "IPPROTO_CFTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CFTP))}, + "IPPROTO_CHAOS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CHAOS))}, + "IPPROTO_CMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CMTP))}, + "IPPROTO_CPHB": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPHB))}, + "IPPROTO_CPNX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CPNX))}, + "IPPROTO_DDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DDP))}, + "IPPROTO_DGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DGP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_EMCON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EMCON))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GMTP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HMP))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IDPR": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDPR))}, + "IPPROTO_IDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDRP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGP))}, + "IPPROTO_IGRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGRP))}, + "IPPROTO_IL": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IL))}, + "IPPROTO_INLSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INLSP))}, + "IPPROTO_INP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_INP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPCV": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCV))}, + "IPPROTO_IPEIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPEIP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPPC))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IRTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IRTP))}, + "IPPROTO_KRYPTOLAN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_KRYPTOLAN))}, + "IPPROTO_LARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LARP))}, + "IPPROTO_LEAF1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF1))}, + "IPPROTO_LEAF2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_LEAF2))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MEAS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MEAS))}, + "IPPROTO_MHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MHRP))}, + "IPPROTO_MICP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MICP))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_MUX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MUX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NHRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NHRP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_NSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NSP))}, + "IPPROTO_NVPII": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NVPII))}, + "IPPROTO_OSPFIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPFIGP))}, + "IPPROTO_PGM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PGM))}, + "IPPROTO_PIGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIGP))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PRM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PRM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_PVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PVP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_RCCMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RCCMON))}, + "IPPROTO_RDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RDP))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_RVD": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RVD))}, + "IPPROTO_SATEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATEXPAK))}, + "IPPROTO_SATMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SATMON))}, + "IPPROTO_SCCSP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCCSP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_SDRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SDRP))}, + "IPPROTO_SEP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SEP))}, + "IPPROTO_SRPC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SRPC))}, + "IPPROTO_ST": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ST))}, + "IPPROTO_SVMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SVMTP))}, + "IPPROTO_SWIPE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SWIPE))}, + "IPPROTO_TCF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCF))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_TPXX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TPXX))}, + "IPPROTO_TRUNK1": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK1))}, + "IPPROTO_TRUNK2": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TRUNK2))}, + "IPPROTO_TTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TTP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VINES": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VINES))}, + "IPPROTO_VISA": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VISA))}, + "IPPROTO_VMTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VMTP))}, + "IPPROTO_WBEXPAK": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBEXPAK))}, + "IPPROTO_WBMON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WBMON))}, + "IPPROTO_WSN": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_WSN))}, + "IPPROTO_XNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XNET))}, + "IPPROTO_XTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_XTP))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292NEXTHOP))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_BINDV6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_BINDV6ONLY))}, + "IPV6_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_BOUND_IF))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ADD))}, + "IPV6_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_DEL))}, + "IPV6_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_FLUSH))}, + "IPV6_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_GET))}, + "IPV6_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IPV6_FW_ZERO))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXOPTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXOPTHDR))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_GROUP_SRC_FILTER))}, + "IPV6_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_MEMBERSHIPS))}, + "IPV6_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAX_SOCK_SRC_FILTER))}, + "IPV6_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MIN_MEMBERSHIPS))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IP_BOUND_IF))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_DUMMYNET_CONFIGURE": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_CONFIGURE))}, + "IP_DUMMYNET_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_DEL))}, + "IP_DUMMYNET_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_FLUSH))}, + "IP_DUMMYNET_GET": {"untyped int", constant.MakeInt64(int64(q.IP_DUMMYNET_GET))}, + "IP_FAITH": {"untyped int", constant.MakeInt64(int64(q.IP_FAITH))}, + "IP_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ADD))}, + "IP_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_FW_DEL))}, + "IP_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_FW_FLUSH))}, + "IP_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_FW_GET))}, + "IP_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_FW_RESETLOG))}, + "IP_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_FW_ZERO))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_GROUP_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_GROUP_SRC_FILTER))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MAX_SOCK_MUTE_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_MUTE_FILTER))}, + "IP_MAX_SOCK_SRC_FILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_SOCK_SRC_FILTER))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_IFINDEX": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IFINDEX))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_MULTICAST_VIF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_VIF))}, + "IP_NAT__XXX": {"untyped int", constant.MakeInt64(int64(q.IP_NAT__XXX))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OLD_FW_ADD": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_ADD))}, + "IP_OLD_FW_DEL": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_DEL))}, + "IP_OLD_FW_FLUSH": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_FLUSH))}, + "IP_OLD_FW_GET": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_GET))}, + "IP_OLD_FW_RESETLOG": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_RESETLOG))}, + "IP_OLD_FW_ZERO": {"untyped int", constant.MakeInt64(int64(q.IP_OLD_FW_ZERO))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_RECVPKTINFO))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RSVP_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_OFF))}, + "IP_RSVP_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_ON))}, + "IP_RSVP_VIF_OFF": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_OFF))}, + "IP_RSVP_VIF_ON": {"untyped int", constant.MakeInt64(int64(q.IP_RSVP_VIF_ON))}, + "IP_STRIPHDR": {"untyped int", constant.MakeInt64(int64(q.IP_STRIPHDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRAFFIC_MGT_BACKGROUND": {"untyped int", constant.MakeInt64(int64(q.IP_TRAFFIC_MGT_BACKGROUND))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_CAN_REUSE": {"untyped int", constant.MakeInt64(int64(q.MADV_CAN_REUSE))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_FREE_REUSABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE_REUSABLE))}, + "MADV_FREE_REUSE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE_REUSE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MADV_ZERO_WIRED_PAGES": {"untyped int", constant.MakeInt64(int64(q.MADV_ZERO_WIRED_PAGES))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_JIT": {"untyped int", constant.MakeInt64(int64(q.MAP_JIT))}, + "MAP_NOCACHE": {"untyped int", constant.MakeInt64(int64(q.MAP_NOCACHE))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_RESERVED0080": {"untyped int", constant.MakeInt64(int64(q.MAP_RESERVED0080))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOF": {"untyped int", constant.MakeInt64(int64(q.MSG_EOF))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_FLUSH": {"untyped int", constant.MakeInt64(int64(q.MSG_FLUSH))}, + "MSG_HAVEMORE": {"untyped int", constant.MakeInt64(int64(q.MSG_HAVEMORE))}, + "MSG_HOLD": {"untyped int", constant.MakeInt64(int64(q.MSG_HOLD))}, + "MSG_NEEDSA": {"untyped int", constant.MakeInt64(int64(q.MSG_NEEDSA))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_RCVMORE": {"untyped int", constant.MakeInt64(int64(q.MSG_RCVMORE))}, + "MSG_SEND": {"untyped int", constant.MakeInt64(int64(q.MSG_SEND))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITSTREAM": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITSTREAM))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_DEACTIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_DEACTIVATE))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_KILLPAGES": {"untyped int", constant.MakeInt64(int64(q.MS_KILLPAGES))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_DUMP2": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP2))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFLIST2": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST2))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_STAT": {"untyped int", constant.MakeInt64(int64(q.NET_RT_STAT))}, + "NET_RT_TRASH": {"untyped int", constant.MakeInt64(int64(q.NET_RT_TRASH))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ABSOLUTE": {"untyped int", constant.MakeInt64(int64(q.NOTE_ABSOLUTE))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_BACKGROUND": {"untyped int", constant.MakeInt64(int64(q.NOTE_BACKGROUND))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_CRITICAL": {"untyped int", constant.MakeInt64(int64(q.NOTE_CRITICAL))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXITSTATUS": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXITSTATUS))}, + "NOTE_EXIT_CSERROR": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_CSERROR))}, + "NOTE_EXIT_DECRYPTFAIL": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_DECRYPTFAIL))}, + "NOTE_EXIT_DETAIL": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_DETAIL))}, + "NOTE_EXIT_DETAIL_MASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_DETAIL_MASK))}, + "NOTE_EXIT_MEMORY": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_MEMORY))}, + "NOTE_EXIT_REPARENTED": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT_REPARENTED))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FFAND": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFAND))}, + "NOTE_FFCOPY": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCOPY))}, + "NOTE_FFCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFCTRLMASK))}, + "NOTE_FFLAGSMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFLAGSMASK))}, + "NOTE_FFNOP": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFNOP))}, + "NOTE_FFOR": {"untyped int", constant.MakeInt64(int64(q.NOTE_FFOR))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LEEWAY": {"untyped int", constant.MakeInt64(int64(q.NOTE_LEEWAY))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_NONE": {"untyped int", constant.MakeInt64(int64(q.NOTE_NONE))}, + "NOTE_NSECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_NSECONDS))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_REAP": {"untyped int", constant.MakeInt64(int64(q.NOTE_REAP))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_SECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_SECONDS))}, + "NOTE_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.NOTE_SIGNAL))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRIGGER": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRIGGER))}, + "NOTE_USECONDS": {"untyped int", constant.MakeInt64(int64(q.NOTE_USECONDS))}, + "NOTE_VM_ERROR": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_ERROR))}, + "NOTE_VM_PRESSURE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE))}, + "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE_SUDDEN_TERMINATE))}, + "NOTE_VM_PRESSURE_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_VM_PRESSURE_TERMINATE))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_ALERT": {"untyped int", constant.MakeInt64(int64(q.O_ALERT))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DP_GETRAWENCRYPTED": {"untyped int", constant.MakeInt64(int64(q.O_DP_GETRAWENCRYPTED))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EVTONLY": {"untyped int", constant.MakeInt64(int64(q.O_EVTONLY))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_POPUP": {"untyped int", constant.MakeInt64(int64(q.O_POPUP))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.O_SYMLINK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PT_ATTACH))}, + "PT_ATTACHEXC": {"untyped int", constant.MakeInt64(int64(q.PT_ATTACHEXC))}, + "PT_CONTINUE": {"untyped int", constant.MakeInt64(int64(q.PT_CONTINUE))}, + "PT_DENY_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PT_DENY_ATTACH))}, + "PT_DETACH": {"untyped int", constant.MakeInt64(int64(q.PT_DETACH))}, + "PT_FIRSTMACH": {"untyped int", constant.MakeInt64(int64(q.PT_FIRSTMACH))}, + "PT_FORCEQUOTA": {"untyped int", constant.MakeInt64(int64(q.PT_FORCEQUOTA))}, + "PT_KILL": {"untyped int", constant.MakeInt64(int64(q.PT_KILL))}, + "PT_READ_D": {"untyped int", constant.MakeInt64(int64(q.PT_READ_D))}, + "PT_READ_I": {"untyped int", constant.MakeInt64(int64(q.PT_READ_I))}, + "PT_READ_U": {"untyped int", constant.MakeInt64(int64(q.PT_READ_U))}, + "PT_SIGEXC": {"untyped int", constant.MakeInt64(int64(q.PT_SIGEXC))}, + "PT_STEP": {"untyped int", constant.MakeInt64(int64(q.PT_STEP))}, + "PT_THUPDATE": {"untyped int", constant.MakeInt64(int64(q.PT_THUPDATE))}, + "PT_TRACE_ME": {"untyped int", constant.MakeInt64(int64(q.PT_TRACE_ME))}, + "PT_WRITE_D": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_D))}, + "PT_WRITE_I": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_I))}, + "PT_WRITE_U": {"untyped int", constant.MakeInt64(int64(q.PT_WRITE_U))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_CPU_USAGE_MONITOR": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU_USAGE_MONITOR))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_CONDEMNED": {"untyped int", constant.MakeInt64(int64(q.RTF_CONDEMNED))}, + "RTF_DELCLONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DELCLONE))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_IFREF": {"untyped int", constant.MakeInt64(int64(q.RTF_IFREF))}, + "RTF_IFSCOPE": {"untyped int", constant.MakeInt64(int64(q.RTF_IFSCOPE))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PINNED": {"untyped int", constant.MakeInt64(int64(q.RTF_PINNED))}, + "RTF_PRCLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_PRCLONING))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_PROXY": {"untyped int", constant.MakeInt64(int64(q.RTF_PROXY))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_ROUTER": {"untyped int", constant.MakeInt64(int64(q.RTF_ROUTER))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WASCLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_WASCLONED))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DELMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_GET2": {"untyped int", constant.MakeInt64(int64(q.RTM_GET2))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_IFINFO2": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO2))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWMADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR))}, + "RTM_NEWMADDR2": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMADDR2))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMP_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP_MONOTONIC))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCARPIPLL": {"untyped int", constant.MakeInt64(int64(q.SIOCARPIPLL))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCAUTOADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAUTOADDR))}, + "SIOCAUTONETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCAUTONETMASK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVLAN))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFALTMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFALTMTU))}, + "SIOCGIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFASYNCMAP))}, + "SIOCGIFBOND": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBOND))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDEVMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDEVMTU))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFKPI": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFKPI))}, + "SIOCGIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPHYS))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFSTATUS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSTATUS))}, + "SIOCGIFVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFVLAN))}, + "SIOCGIFWAKEFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFWAKEFLAGS))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFCREATE2": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE2))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCRSLVMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCRSLVMULTI))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSETVLAN))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFALTMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFALTMTU))}, + "SIOCSIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFASYNCMAP))}, + "SIOCSIFBOND": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBOND))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFKPI": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFKPI))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMAC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPHYS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYS))}, + "SIOCSIFVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFVLAN))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_MAXADDRLEN": {"untyped int", constant.MakeInt64(int64(q.SOCK_MAXADDRLEN))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_DONTTRUNC": {"untyped int", constant.MakeInt64(int64(q.SO_DONTTRUNC))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LABEL": {"untyped int", constant.MakeInt64(int64(q.SO_LABEL))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LINGER_SEC": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER_SEC))}, + "SO_NKE": {"untyped int", constant.MakeInt64(int64(q.SO_NKE))}, + "SO_NOADDRERR": {"untyped int", constant.MakeInt64(int64(q.SO_NOADDRERR))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_NOTIFYCONFLICT": {"untyped int", constant.MakeInt64(int64(q.SO_NOTIFYCONFLICT))}, + "SO_NP_EXTENSIONS": {"untyped int", constant.MakeInt64(int64(q.SO_NP_EXTENSIONS))}, + "SO_NREAD": {"untyped int", constant.MakeInt64(int64(q.SO_NREAD))}, + "SO_NUMRCVPKT": {"untyped int", constant.MakeInt64(int64(q.SO_NUMRCVPKT))}, + "SO_NWRITE": {"untyped int", constant.MakeInt64(int64(q.SO_NWRITE))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERLABEL": {"untyped int", constant.MakeInt64(int64(q.SO_PEERLABEL))}, + "SO_RANDOMPORT": {"untyped int", constant.MakeInt64(int64(q.SO_RANDOMPORT))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_REUSESHAREUID": {"untyped int", constant.MakeInt64(int64(q.SO_REUSESHAREUID))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMP_MONOTONIC": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP_MONOTONIC))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_UPCALLCLOSEWAIT": {"untyped int", constant.MakeInt64(int64(q.SO_UPCALLCLOSEWAIT))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_WANTMORE": {"untyped int", constant.MakeInt64(int64(q.SO_WANTMORE))}, + "SO_WANTOOBFLAG": {"untyped int", constant.MakeInt64(int64(q.SO_WANTOOBFLAG))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT_NOCANCEL))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCESS_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS_EXTENDED))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_AIO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_CANCEL))}, + "SYS_AIO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_ERROR))}, + "SYS_AIO_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_FSYNC))}, + "SYS_AIO_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_READ))}, + "SYS_AIO_RETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_RETURN))}, + "SYS_AIO_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND))}, + "SYS_AIO_SUSPEND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_SUSPEND_NOCANCEL))}, + "SYS_AIO_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_AIO_WRITE))}, + "SYS_ATGETMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_ATGETMSG))}, + "SYS_ATPGETREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPGETREQ))}, + "SYS_ATPGETRSP": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPGETRSP))}, + "SYS_ATPSNDREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPSNDREQ))}, + "SYS_ATPSNDRSP": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPSNDRSP))}, + "SYS_ATPUTMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_ATPUTMSG))}, + "SYS_ATSOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_ATSOCKET))}, + "SYS_AUDIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT))}, + "SYS_AUDITCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITCTL))}, + "SYS_AUDITON": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDITON))}, + "SYS_AUDIT_SESSION_JOIN": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_JOIN))}, + "SYS_AUDIT_SESSION_PORT": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_PORT))}, + "SYS_AUDIT_SESSION_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_AUDIT_SESSION_SELF))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BSDTHREAD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_CREATE))}, + "SYS_BSDTHREAD_REGISTER": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_REGISTER))}, + "SYS_BSDTHREAD_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.SYS_BSDTHREAD_TERMINATE))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHMOD_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD_EXTENDED))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CHUD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHUD))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE_NOCANCEL))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CONNECT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT_NOCANCEL))}, + "SYS_COPYFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_COPYFILE))}, + "SYS_CSOPS": {"untyped int", constant.MakeInt64(int64(q.SYS_CSOPS))}, + "SYS_CSOPS_AUDITTOKEN": {"untyped int", constant.MakeInt64(int64(q.SYS_CSOPS_AUDITTOKEN))}, + "SYS_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EXCHANGEDATA": {"untyped int", constant.MakeInt64(int64(q.SYS_EXCHANGEDATA))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMOD_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD_EXTENDED))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL_NOCANCEL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FFSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FFSCTL))}, + "SYS_FGETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETATTRLIST))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FILEPORT_MAKEFD": {"untyped int", constant.MakeInt64(int64(q.SYS_FILEPORT_MAKEFD))}, + "SYS_FILEPORT_MAKEPORT": {"untyped int", constant.MakeInt64(int64(q.SYS_FILEPORT_MAKEPORT))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FSCTL))}, + "SYS_FSETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETATTRLIST))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSGETPATH": {"untyped int", constant.MakeInt64(int64(q.SYS_FSGETPATH))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64_EXTENDED))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSTAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT_EXTENDED))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FSYNC_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC_NOCANCEL))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GETATTRLIST))}, + "SYS_GETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUDIT_ADDR))}, + "SYS_GETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETAUID))}, + "SYS_GETDIRENTRIES": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES))}, + "SYS_GETDIRENTRIES64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIES64))}, + "SYS_GETDIRENTRIESATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDIRENTRIESATTR))}, + "SYS_GETDTABLESIZE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLESIZE))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETFSSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT64))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETHOSTUUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETHOSTUUID))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLCID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLCID))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSGROUPS))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETWGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETWGROUPS))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_IDENTITYSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_IDENTITYSVC))}, + "SYS_INITGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_INITGROUPS))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPOLICYSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPOLICYSYS))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KAS_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_KAS_INFO))}, + "SYS_KDEBUG_TRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KDEBUG_TRACE))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KEVENT64": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT64))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LEDGER": {"untyped int", constant.MakeInt64(int64(q.SYS_LEDGER))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LIO_LISTIO": {"untyped int", constant.MakeInt64(int64(q.SYS_LIO_LISTIO))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_LSTAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64_EXTENDED))}, + "SYS_LSTAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT_EXTENDED))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MAXSYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MAXSYSCALL))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIR_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR_EXTENDED))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFO_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO_EXTENDED))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODWATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_MODWATCH))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGRCV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV_NOCANCEL))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSGSND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND_NOCANCEL))}, + "SYS_MSGSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSYS))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MSYNC_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC_NOCANCEL))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NFSCLNT": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSCLNT))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPEN_DPROTECTED_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_DPROTECTED_NP))}, + "SYS_OPEN_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_EXTENDED))}, + "SYS_OPEN_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_NOCANCEL))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PID_HIBERNATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_HIBERNATE))}, + "SYS_PID_RESUME": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_RESUME))}, + "SYS_PID_SHUTDOWN_SOCKETS": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_SHUTDOWN_SOCKETS))}, + "SYS_PID_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_PID_SUSPEND))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POLL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL_NOCANCEL))}, + "SYS_POSIX_SPAWN": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_SPAWN))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREAD_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD_NOCANCEL))}, + "SYS_PROCESS_POLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_POLICY))}, + "SYS_PROC_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_PROC_INFO))}, + "SYS_PSYNCH_CVBROAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVBROAD))}, + "SYS_PSYNCH_CVCLRPREPOST": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVCLRPREPOST))}, + "SYS_PSYNCH_CVSIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVSIGNAL))}, + "SYS_PSYNCH_CVWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_CVWAIT))}, + "SYS_PSYNCH_MUTEXDROP": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_MUTEXDROP))}, + "SYS_PSYNCH_MUTEXWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_MUTEXWAIT))}, + "SYS_PSYNCH_RW_DOWNGRADE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_DOWNGRADE))}, + "SYS_PSYNCH_RW_LONGRDLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_LONGRDLOCK))}, + "SYS_PSYNCH_RW_RDLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_RDLOCK))}, + "SYS_PSYNCH_RW_UNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UNLOCK))}, + "SYS_PSYNCH_RW_UNLOCK2": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UNLOCK2))}, + "SYS_PSYNCH_RW_UPGRADE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_UPGRADE))}, + "SYS_PSYNCH_RW_WRLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_WRLOCK))}, + "SYS_PSYNCH_RW_YIELDWRLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_PSYNCH_RW_YIELDWRLOCK))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE_NOCANCEL))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_READV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_READV_NOCANCEL))}, + "SYS_READ_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_READ_NOCANCEL))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVFROM_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM_NOCANCEL))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RECVMSG_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG_NOCANCEL))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SEARCHFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEARCHFS))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SELECT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT_NOCANCEL))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMSYS))}, + "SYS_SEM_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_CLOSE))}, + "SYS_SEM_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_DESTROY))}, + "SYS_SEM_GETVALUE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_GETVALUE))}, + "SYS_SEM_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_INIT))}, + "SYS_SEM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_OPEN))}, + "SYS_SEM_POST": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_POST))}, + "SYS_SEM_TRYWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_TRYWAIT))}, + "SYS_SEM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_UNLINK))}, + "SYS_SEM_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_WAIT))}, + "SYS_SEM_WAIT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEM_WAIT_NOCANCEL))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDMSG_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG_NOCANCEL))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SENDTO_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO_NOCANCEL))}, + "SYS_SETATTRLIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SETATTRLIST))}, + "SYS_SETAUDIT_ADDR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUDIT_ADDR))}, + "SYS_SETAUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETAUID))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLCID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLCID))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETPRIVEXEC": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIVEXEC))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSGROUPS))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTID))}, + "SYS_SETTID_WITH_PID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTID_WITH_PID))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETWGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETWGROUPS))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SHARED_REGION_CHECK_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_SHARED_REGION_CHECK_NP))}, + "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": {"untyped int", constant.MakeInt64(int64(q.SYS_SHARED_REGION_MAP_AND_SLIDE_NP))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHMSYS": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMSYS))}, + "SYS_SHM_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_OPEN))}, + "SYS_SHM_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SHM_UNLINK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SIGSUSPEND_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND_NOCANCEL))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_STACK_SNAPSHOT": {"untyped int", constant.MakeInt64(int64(q.SYS_STACK_SNAPSHOT))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STAT64_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64_EXTENDED))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STAT_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT_EXTENDED))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL))}, + "SYS_THREAD_SELFID": {"untyped int", constant.MakeInt64(int64(q.SYS_THREAD_SELFID))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMASK_EXTENDED": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK_EXTENDED))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VM_PRESSURE_MONITOR": {"untyped int", constant.MakeInt64(int64(q.SYS_VM_PRESSURE_MONITOR))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT4_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4_NOCANCEL))}, + "SYS_WAITEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITEVENT))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITID_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID_NOCANCEL))}, + "SYS_WATCHEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_WATCHEVENT))}, + "SYS_WORKQ_KERNRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_WORKQ_KERNRETURN))}, + "SYS_WORKQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_WORKQ_OPEN))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_WRITEV_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV_NOCANCEL))}, + "SYS_WRITE_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE_NOCANCEL))}, + "SYS___DISABLE_THREADSIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___DISABLE_THREADSIGNAL))}, + "SYS___MAC_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_EXECVE))}, + "SYS___MAC_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GETFSSTAT))}, + "SYS___MAC_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FD))}, + "SYS___MAC_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_FILE))}, + "SYS___MAC_GET_LCID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LCID))}, + "SYS___MAC_GET_LCTX": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LCTX))}, + "SYS___MAC_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_LINK))}, + "SYS___MAC_GET_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_MOUNT))}, + "SYS___MAC_GET_PID": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PID))}, + "SYS___MAC_GET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_GET_PROC))}, + "SYS___MAC_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_MOUNT))}, + "SYS___MAC_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FD))}, + "SYS___MAC_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_FILE))}, + "SYS___MAC_SET_LCTX": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LCTX))}, + "SYS___MAC_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_LINK))}, + "SYS___MAC_SET_PROC": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SET_PROC))}, + "SYS___MAC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS___MAC_SYSCALL))}, + "SYS___OLD_SEMWAIT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___OLD_SEMWAIT_SIGNAL))}, + "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL))}, + "SYS___PTHREAD_CANCELED": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_CANCELED))}, + "SYS___PTHREAD_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_CHDIR))}, + "SYS___PTHREAD_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_FCHDIR))}, + "SYS___PTHREAD_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_KILL))}, + "SYS___PTHREAD_MARKCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_MARKCANCEL))}, + "SYS___PTHREAD_SIGMASK": {"untyped int", constant.MakeInt64(int64(q.SYS___PTHREAD_SIGMASK))}, + "SYS___SEMWAIT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMWAIT_SIGNAL))}, + "SYS___SEMWAIT_SIGNAL_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMWAIT_SIGNAL_NOCANCEL))}, + "SYS___SIGWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGWAIT))}, + "SYS___SIGWAIT_NOCANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGWAIT_NOCANCEL))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFWHT": {"untyped int", constant.MakeInt64(int64(q.S_IFWHT))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISTXT": {"untyped int", constant.MakeInt64(int64(q.S_ISTXT))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofIfmaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr))}, + "SizeofIfmaMsghdr2": {"untyped int", constant.MakeInt64(int64(q.SizeofIfmaMsghdr2))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONNECTIONTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_CONNECTIONTIMEOUT))}, + "TCP_ENABLE_ECN": {"untyped int", constant.MakeInt64(int64(q.TCP_ENABLE_ECN))}, + "TCP_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXHLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXHLEN))}, + "TCP_MAXOLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXOLEN))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOOPT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOOPT))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_NOTSENT_LOWAT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOTSENT_LOWAT))}, + "TCP_RXT_CONNDROPTIME": {"untyped int", constant.MakeInt64(int64(q.TCP_RXT_CONNDROPTIME))}, + "TCP_RXT_FINDROP": {"untyped int", constant.MakeInt64(int64(q.TCP_RXT_FINDROP))}, + "TCP_SENDMOREACKS": {"untyped int", constant.MakeInt64(int64(q.TCP_SENDMOREACKS))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDCDTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCDCDTIMESTAMP))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCDSIMICROCODE": {"untyped int", constant.MakeInt64(int64(q.TIOCDSIMICROCODE))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCGDRAINWAIT))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCIXOFF": {"untyped int", constant.MakeInt64(int64(q.TIOCIXOFF))}, + "TIOCIXON": {"untyped int", constant.MakeInt64(int64(q.TIOCIXON))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMGDTRWAIT))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSDTRWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMSDTRWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTYGNAME": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYGNAME))}, + "TIOCPTYGRANT": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYGRANT))}, + "TIOCPTYUNLK": {"untyped int", constant.MakeInt64(int64(q.TIOCPTYUNLK))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCSCONS))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDRAINWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCSDRAINWAIT))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCTIMESTAMP))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_js_wasm.go b/pkg/syscall/go123_export_js_wasm.go new file mode 100755 index 00000000..88cdde74 --- /dev/null +++ b/pkg/syscall/go123_export_js_wasm.go @@ -0,0 +1,364 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "runtime": "runtime", + "sync": "sync", + "syscall/js": "js", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "Fstat": reflect.ValueOf(q.Fstat), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Kill": reflect.ValueOf(q.Kill), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Sendfile": reflect.ValueOf(q.Sendfile), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "SetReadDeadline": reflect.ValueOf(q.SetReadDeadline), + "SetWriteDeadline": reflect.ValueOf(q.SetWriteDeadline), + "Setenv": reflect.ValueOf(q.Setenv), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "Shutdown": reflect.ValueOf(q.Shutdown), + "Socket": reflect.ValueOf(q.Socket), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StopIO": reflect.ValueOf(q.StopIO), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "Symlink": reflect.ValueOf(q.Symlink), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysctl": reflect.ValueOf(q.Sysctl), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Unlink": reflect.ValueOf(q.Unlink), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECASECLASH": {reflect.TypeOf(q.ECASECLASH), constant.MakeInt64(int64(q.ECASECLASH))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELBIN": {reflect.TypeOf(q.ELBIN), constant.MakeInt64(int64(q.ELBIN))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENMFILE": {reflect.TypeOf(q.ENMFILE), constant.MakeInt64(int64(q.ENMFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSHARE": {reflect.TypeOf(q.ENOSHARE), constant.MakeInt64(int64(q.ENOSHARE))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "F_CNVT": {"untyped int", constant.MakeInt64(int64(q.F_CNVT))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_RGETLK": {"untyped int", constant.MakeInt64(int64(q.F_RGETLK))}, + "F_RSETLK": {"untyped int", constant.MakeInt64(int64(q.F_RSETLK))}, + "F_RSETLKW": {"untyped int", constant.MakeInt64(int64(q.F_RSETLKW))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_UNLKSYS": {"untyped int", constant.MakeInt64(int64(q.F_UNLKSYS))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_CREATE": {"untyped int", constant.MakeInt64(int64(q.O_CREATE))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFBOUNDSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFBOUNDSOCK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFCOND": {"untyped int", constant.MakeInt64(int64(q.S_IFCOND))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFDSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFDSOCK))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFMUTEX": {"untyped int", constant.MakeInt64(int64(q.S_IFMUTEX))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSEMA": {"untyped int", constant.MakeInt64(int64(q.S_IFSEMA))}, + "S_IFSHM": {"untyped int", constant.MakeInt64(int64(q.S_IFSHM))}, + "S_IFSHM_SYSV": {"untyped int", constant.MakeInt64(int64(q.S_IFSHM_SYSV))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFSOCKADDR": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCKADDR))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "S_UNSUP": {"untyped int", constant.MakeInt64(int64(q.S_UNSUP))}, + "Stderr": {"untyped int", constant.MakeInt64(int64(q.Stderr))}, + "Stdin": {"untyped int", constant.MakeInt64(int64(q.Stdin))}, + "Stdout": {"untyped int", constant.MakeInt64(int64(q.Stdout))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_linux_386.go b/pkg/syscall/go123_export_linux_386.go new file mode 100755 index 00000000..66e9deab --- /dev/null +++ b/pkg/syscall/go123_export_linux_386.go @@ -0,0 +1,2271 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/runtime/syscall": "syscall", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_PHY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_PHY))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "EPOLL_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.EPOLL_NONBLOCK))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_32BIT": {"untyped int", constant.MakeInt64(int64(q.MAP_32BIT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETFPXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPXREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETFPXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPXREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_THREAD_AREA))}, + "PTRACE_SINGLEBLOCK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLEBLOCK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_SYSEMU": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU))}, + "PTRACE_SYSEMU_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU_SINGLESTEP))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_BDFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_BDFLUSH))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN32))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FADVISE64_64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64_64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN32))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL64": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL64))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTATAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT64))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_FTIME))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FTRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE64))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID32))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETEUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID32))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID32))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETGROUPS32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS32))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID32))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRESUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID32))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID32))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_THREAD_AREA))}, + "SYS_GTTY": {"untyped int", constant.MakeInt64(int64(q.SYS_GTTY))}, + "SYS_IDLE": {"untyped int", constant.MakeInt64(int64(q.SYS_IDLE))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPERM": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPERM))}, + "SYS_IOPL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IPC": {"untyped int", constant.MakeInt64(int64(q.SYS_IPC))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LCHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN32))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_LOCK))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MADVISE1": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE1))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MMAP2": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP2))}, + "SYS_MODIFY_LDT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODIFY_LDT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MPX": {"untyped int", constant.MakeInt64(int64(q.SYS_MPX))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_NICE": {"untyped int", constant.MakeInt64(int64(q.SYS_NICE))}, + "SYS_OLDFSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDFSTAT))}, + "SYS_OLDLSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDLSTAT))}, + "SYS_OLDOLDUNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDOLDUNAME))}, + "SYS_OLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDSTAT))}, + "SYS_OLDUNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDUNAME))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROF": {"untyped int", constant.MakeInt64(int64(q.SYS_PROF))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_READDIR))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDFILE64": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE64))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID32))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETFSUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID32))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID32))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETGROUPS32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS32))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID32))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID32))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETRESUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID32))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETREUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID32))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID32))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_THREAD_AREA))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SGETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SGETMASK))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNAL))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKETCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETCALL))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_SSETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSETMASK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STIME": {"untyped int", constant.MakeInt64(int64(q.SYS_STIME))}, + "SYS_STTY": {"untyped int", constant.MakeInt64(int64(q.SYS_STTY))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE64))}, + "SYS_UGETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_UGETRLIMIT))}, + "SYS_ULIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_ULIMIT))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VM86": {"untyped int", constant.MakeInt64(int64(q.SYS_VM86))}, + "SYS_VM86OLD": {"untyped int", constant.MakeInt64(int64(q.SYS_VM86OLD))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITPID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITPID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LLSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS__LLSEEK))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_linux_amd64.go b/pkg/syscall/go123_export_linux_amd64.go new file mode 100755 index 00000000..794a711b --- /dev/null +++ b/pkg/syscall/go123_export_linux_amd64.go @@ -0,0 +1,2237 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/runtime/syscall": "syscall", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_PHY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_PHY))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "EPOLL_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.EPOLL_NONBLOCK))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_32BIT": {"untyped int", constant.MakeInt64(int64(q.MAP_32BIT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ARCH_PRCTL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ARCH_PRCTL))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETFPXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPXREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETFPXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPXREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_THREAD_AREA))}, + "PTRACE_SINGLEBLOCK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLEBLOCK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_SYSEMU": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU))}, + "PTRACE_SYSEMU_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU_SINGLESTEP))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_ARCH_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_ARCH_PRCTL))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_CTL_OLD": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL_OLD))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EPOLL_WAIT_OLD": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT_OLD))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_THREAD_AREA))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPERM": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPERM))}, + "SYS_IOPL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODIFY_LDT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODIFY_LDT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NEWFSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NEWFSTATAT))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SECURITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SECURITY))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_THREAD_AREA))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TUXCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_TUXCALL))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_linux_arm.go b/pkg/syscall/go123_export_linux_arm.go new file mode 100755 index 00000000..3cc68bf3 --- /dev/null +++ b/pkg/syscall/go123_export_linux_arm.go @@ -0,0 +1,2290 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/runtime/syscall": "syscall", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_PHY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_PHY))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ELF_NGREG": {"untyped int", constant.MakeInt64(int64(q.ELF_NGREG))}, + "ELF_PRARGSZ": {"untyped int", constant.MakeInt64(int64(q.ELF_PRARGSZ))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "EPOLL_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.EPOLL_NONBLOCK))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_CLEAR_SECCOMP_FILTER": {"untyped int", constant.MakeInt64(int64(q.PR_CLEAR_SECCOMP_FILTER))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECCOMP_FILTER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP_FILTER))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SECCOMP_FILTER_EVENT": {"untyped int", constant.MakeInt64(int64(q.PR_SECCOMP_FILTER_EVENT))}, + "PR_SECCOMP_FILTER_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PR_SECCOMP_FILTER_SYSCALL))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECCOMP_FILTER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP_FILTER))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETCRUNCHREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETCRUNCHREGS))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETHBPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETHBPREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETVFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETVFPREGS))}, + "PTRACE_GETWMMXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETWMMXREGS))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SETCRUNCHREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETCRUNCHREGS))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETHBPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETHBPREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETVFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETVFPREGS))}, + "PTRACE_SETWMMXREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETWMMXREGS))}, + "PTRACE_SET_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_SYSCALL))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_DATA_ADDR": {"untyped int", constant.MakeInt64(int64(q.PT_DATA_ADDR))}, + "PT_TEXT_ADDR": {"untyped int", constant.MakeInt64(int64(q.PT_TEXT_ADDR))}, + "PT_TEXT_END_ADDR": {"untyped int", constant.MakeInt64(int64(q.PT_TEXT_END_ADDR))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_ARM_FADVISE64_64": {"untyped int", constant.MakeInt64(int64(q.SYS_ARM_FADVISE64_64))}, + "SYS_ARM_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_ARM_SYNC_FILE_RANGE))}, + "SYS_BDFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_BDFLUSH))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN32))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN32))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL64": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL64))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTATAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT64))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FTRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE64))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID32))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETEUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID32))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID32))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETGROUPS32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS32))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID32))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRESUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID32))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID32))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IPC": {"untyped int", constant.MakeInt64(int64(q.SYS_IPC))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LCHOWN32": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN32))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MMAP2": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP2))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_NICE": {"untyped int", constant.MakeInt64(int64(q.SYS_NICE))}, + "SYS_OABI_SYSCALL_BASE": {"untyped int", constant.MakeInt64(int64(q.SYS_OABI_SYSCALL_BASE))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PCICONFIG_IOBASE": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_IOBASE))}, + "SYS_PCICONFIG_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_READ))}, + "SYS_PCICONFIG_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_WRITE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_READDIR))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECV": {"untyped int", constant.MakeInt64(int64(q.SYS_RECV))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SEND))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDFILE64": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE64))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID32))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETFSUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID32))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID32))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETGROUPS32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS32))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID32))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESGID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID32))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETRESUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID32))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETREUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID32))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETUID32": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID32))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETCALL))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STIME": {"untyped int", constant.MakeInt64(int64(q.SYS_STIME))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL))}, + "SYS_SYSCALL_BASE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL_BASE))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE64))}, + "SYS_UGETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_UGETRLIMIT))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LLSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS__LLSEEK))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_linux_arm64.go b/pkg/syscall/go123_export_linux_arm64.go new file mode 100755 index 00000000..6889941e --- /dev/null +++ b/pkg/syscall/go123_export_linux_arm64.go @@ -0,0 +1,2381 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/runtime/syscall": "syscall", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatat": reflect.ValueOf(q.Fstatat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VSOCK": {"untyped int", constant.MakeInt64(int64(q.AF_VSOCK))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PRP))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_802_1Q_VLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_802_1Q_VLAN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BONDING": {"untyped int", constant.MakeInt64(int64(q.IFF_BONDING))}, + "IFF_BRIDGE_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_BRIDGE_PORT))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DISABLE_NETPOLL": {"untyped int", constant.MakeInt64(int64(q.IFF_DISABLE_NETPOLL))}, + "IFF_DONT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_DONT_BRIDGE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_EBRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_EBRIDGE))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_ISATAP": {"untyped int", constant.MakeInt64(int64(q.IFF_ISATAP))}, + "IFF_LIVE_ADDR_CHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_LIVE_ADDR_CHANGE))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MACVLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN))}, + "IFF_MACVLAN_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN_PORT))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MASTER_8023AD": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_8023AD))}, + "IFF_MASTER_ALB": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ALB))}, + "IFF_MASTER_ARPMON": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ARPMON))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_OVS_DATAPATH": {"untyped int", constant.MakeInt64(int64(q.IFF_OVS_DATAPATH))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_SLAVE_INACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_INACTIVE))}, + "IFF_SLAVE_NEEDARP": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_NEEDARP))}, + "IFF_SUPP_NOFCS": {"untyped int", constant.MakeInt64(int64(q.IFF_SUPP_NOFCS))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TEAM_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_TEAM_PORT))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_TX_SKB_SHARING": {"untyped int", constant.MakeInt64(int64(q.IFF_TX_SKB_SHARING))}, + "IFF_UNICAST_FLT": {"untyped int", constant.MakeInt64(int64(q.IFF_UNICAST_FLT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFF_WAN_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFF_WAN_HDLC))}, + "IFF_XMIT_DST_RELEASE": {"untyped int", constant.MakeInt64(int64(q.IFF_XMIT_DST_RELEASE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_BEETPH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BEETPH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_HUGE_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_MASK))}, + "MAP_HUGE_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_SHIFT))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TMPFILE": {"untyped int", constant.MakeInt64(int64(q.O_TMPFILE))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_MAX_PACING_RATE": {"untyped int", constant.MakeInt64(int64(q.SO_MAX_PACING_RATE))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_ARCH_SPECIFIC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_ARCH_SPECIFIC_SYSCALL))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BPF": {"untyped int", constant.MakeInt64(int64(q.SYS_BPF))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXECVEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVEAT))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FINIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_FINIT_MODULE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRANDOM": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRANDOM))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_KCMP": {"untyped int", constant.MakeInt64(int64(q.SYS_KCMP))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MEMFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_MEMFD_CREATE))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_RENAMEAT2": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT2))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETATTR))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETATTR))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.SYS_SECCOMP))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYNC_FILE_RANGE2": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE2))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_COOKIE_IN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_IN_ALWAYS))}, + "TCP_COOKIE_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MAX))}, + "TCP_COOKIE_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MIN))}, + "TCP_COOKIE_OUT_NEVER": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_OUT_NEVER))}, + "TCP_COOKIE_PAIR_SIZE": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_PAIR_SIZE))}, + "TCP_COOKIE_TRANSACTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_TRANSACTIONS))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_MSS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DEFAULT))}, + "TCP_MSS_DESIRED": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DESIRED))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUEUE_SEQ": {"untyped int", constant.MakeInt64(int64(q.TCP_QUEUE_SEQ))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_REPAIR": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR))}, + "TCP_REPAIR_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OPTIONS))}, + "TCP_REPAIR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_QUEUE))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_S_DATA_IN": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_IN))}, + "TCP_S_DATA_OUT": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_OUT))}, + "TCP_THIN_DUPACK": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_DUPACK))}, + "TCP_THIN_LINEAR_TIMEOUTS": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_LINEAR_TIMEOUTS))}, + "TCP_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_TIMESTAMP))}, + "TCP_USER_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_USER_TIMEOUT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_linux_loong64.go b/pkg/syscall/go123_export_linux_loong64.go new file mode 100755 index 00000000..1c5de219 --- /dev/null +++ b/pkg/syscall/go123_export_linux_loong64.go @@ -0,0 +1,2714 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/runtime/syscall": "syscall", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatat": reflect.ValueOf(q.Fstatat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IB": {"untyped int", constant.MakeInt64(int64(q.AF_IB))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KCM": {"untyped int", constant.MakeInt64(int64(q.AF_KCM))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MCTP": {"untyped int", constant.MakeInt64(int64(q.AF_MCTP))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_QIPCRTR": {"untyped int", constant.MakeInt64(int64(q.AF_QIPCRTR))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SMC": {"untyped int", constant.MakeInt64(int64(q.AF_SMC))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VSOCK": {"untyped int", constant.MakeInt64(int64(q.AF_VSOCK))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "AF_XDP": {"untyped int", constant.MakeInt64(int64(q.AF_XDP))}, + "ARPHRD_6LOWPAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_6LOWPAN))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_MCTP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_MCTP))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_RAWIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWIP))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_VSOCKMON": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VSOCKMON))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LL_OFF": {"untyped int", constant.MakeInt64(int64(q.BPF_LL_OFF))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_NET_OFF": {"untyped int", constant.MakeInt64(int64(q.BPF_NET_OFF))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_ARGS_SIZE_VER0": {"untyped int", constant.MakeInt64(int64(q.CLONE_ARGS_SIZE_VER0))}, + "CLONE_ARGS_SIZE_VER1": {"untyped int", constant.MakeInt64(int64(q.CLONE_ARGS_SIZE_VER1))}, + "CLONE_ARGS_SIZE_VER2": {"untyped int", constant.MakeInt64(int64(q.CLONE_ARGS_SIZE_VER2))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLEXCLUSIVE": {"untyped int", constant.MakeInt64(int64(q.EPOLLEXCLUSIVE))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_80221": {"untyped int", constant.MakeInt64(int64(q.ETH_P_80221))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CFM": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CFM))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_DSA_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA_8021Q))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_ERSPAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ERSPAN))}, + "ETH_P_ERSPAN2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ERSPAN2))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_HSR": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HSR))}, + "ETH_P_IBOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IBOE))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IFE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IFE))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LLDP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LLDP))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOPBACK))}, + "ETH_P_MACSEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MACSEC))}, + "ETH_P_MAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MAP))}, + "ETH_P_MCTP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MCTP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MRP))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_NCSI": {"untyped int", constant.MakeInt64(int64(q.ETH_P_NCSI))}, + "ETH_P_NSH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_NSH))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PREAUTH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PREAUTH))}, + "ETH_P_PRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PRP))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_REALTEK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_REALTEK))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_TSN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TSN))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "ETH_P_XDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_XDSA))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_ADD_SEALS": {"untyped int", constant.MakeInt64(int64(q.F_ADD_SEALS))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_GET_FILE_RW_HINT": {"untyped int", constant.MakeInt64(int64(q.F_GET_FILE_RW_HINT))}, + "F_GET_RW_HINT": {"untyped int", constant.MakeInt64(int64(q.F_GET_RW_HINT))}, + "F_GET_SEALS": {"untyped int", constant.MakeInt64(int64(q.F_GET_SEALS))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OFD_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_OFD_GETLK))}, + "F_OFD_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_OFD_SETLK))}, + "F_OFD_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_OFD_SETLKW))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SEAL_FUTURE_WRITE": {"untyped int", constant.MakeInt64(int64(q.F_SEAL_FUTURE_WRITE))}, + "F_SEAL_GROW": {"untyped int", constant.MakeInt64(int64(q.F_SEAL_GROW))}, + "F_SEAL_SEAL": {"untyped int", constant.MakeInt64(int64(q.F_SEAL_SEAL))}, + "F_SEAL_SHRINK": {"untyped int", constant.MakeInt64(int64(q.F_SEAL_SHRINK))}, + "F_SEAL_WRITE": {"untyped int", constant.MakeInt64(int64(q.F_SEAL_WRITE))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SET_FILE_RW_HINT": {"untyped int", constant.MakeInt64(int64(q.F_SET_FILE_RW_HINT))}, + "F_SET_RW_HINT": {"untyped int", constant.MakeInt64(int64(q.F_SET_RW_HINT))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_MANAGETEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IFA_F_MANAGETEMPADDR))}, + "IFA_F_MCAUTOJOIN": {"untyped int", constant.MakeInt64(int64(q.IFA_F_MCAUTOJOIN))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_NOPREFIXROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NOPREFIXROUTE))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_STABLE_PRIVACY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_STABLE_PRIVACY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NAPI": {"untyped int", constant.MakeInt64(int64(q.IFF_NAPI))}, + "IFF_NAPI_FRAGS": {"untyped int", constant.MakeInt64(int64(q.IFF_NAPI_FRAGS))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MASK_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_CREATE))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_BEETPH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BEETPH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERNET": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERNET))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_MPTCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPTCP))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADDR_PREFERENCES": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDR_PREFERENCES))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IPV6_FREEBIND))}, + "IPV6_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IPV6_HDRINCL))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MINHOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.IPV6_MINHOPCOUNT))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_ALL))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_ORIGDSTADDR))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_INTERFACE))}, + "IPV6_PMTUDISC_OMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_OMIT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVERR_RFC4884": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR_RFC4884))}, + "IPV6_RECVFRAGSIZE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVFRAGSIZE))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVORIGDSTADDR))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_ROUTER_ALERT_ISOLATE": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT_ISOLATE))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IPV6_TRANSPARENT))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_IF))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BIND_ADDRESS_NO_PORT": {"untyped int", constant.MakeInt64(int64(q.IP_BIND_ADDRESS_NO_PORT))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IP_CHECKSUM))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_NODEFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_NODEFRAG))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_INTERFACE))}, + "IP_PMTUDISC_OMIT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_OMIT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVERR_RFC4884": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR_RFC4884))}, + "IP_RECVFRAGSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_RECVFRAGSIZE))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_COLD": {"untyped int", constant.MakeInt64(int64(q.MADV_COLD))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_KEEPONFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_KEEPONFORK))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_PAGEOUT": {"untyped int", constant.MakeInt64(int64(q.MADV_PAGEOUT))}, + "MADV_POPULATE_READ": {"untyped int", constant.MakeInt64(int64(q.MADV_POPULATE_READ))}, + "MADV_POPULATE_WRITE": {"untyped int", constant.MakeInt64(int64(q.MADV_POPULATE_WRITE))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MADV_WIPEONFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_WIPEONFORK))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_FIXED_NOREPLACE": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED_NOREPLACE))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_HUGE_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_MASK))}, + "MAP_HUGE_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_SHIFT))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_SHARED_VALIDATE": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED_VALIDATE))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_SYNC": {"untyped int", constant.MakeInt64(int64(q.MAP_SYNC))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MCL_ONFAULT": {"untyped int", constant.MakeInt64(int64(q.MCL_ONFAULT))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_BATCH": {"untyped int", constant.MakeInt64(int64(q.MSG_BATCH))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MSG_ZEROCOPY": {"untyped int", constant.MakeInt64(int64(q.MSG_ZEROCOPY))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_LAZYTIME": {"untyped int", constant.MakeInt64(int64(q.MS_LAZYTIME))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOSYMFOLLOW": {"untyped int", constant.MakeInt64(int64(q.MS_NOSYMFOLLOW))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CAP_ACK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CAP_ACK))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_EXT_ACK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_EXT_ACK))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_GET_STRICT_CHK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GET_STRICT_CHK))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_LISTEN_ALL_NSID": {"untyped int", constant.MakeInt64(int64(q.NETLINK_LISTEN_ALL_NSID))}, + "NETLINK_LIST_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_LIST_MEMBERSHIPS))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SMC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SMC))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_ACK_TLVS": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK_TLVS))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CAPPED": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CAPPED))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_FILTERED": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_FILTERED))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_NONREC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_NONREC))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TMPFILE": {"untyped int", constant.MakeInt64(int64(q.O_TMPFILE))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CBPF": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CBPF))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_DATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_DATA))}, + "PACKET_FANOUT_EBPF": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_EBPF))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_FLAG_UNIQUEID": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_UNIQUEID))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_QM": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_QM))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_IGNORE_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_IGNORE_OUTGOING))}, + "PACKET_KERNEL": {"untyped int", constant.MakeInt64(int64(q.PACKET_KERNEL))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_QDISC_BYPASS": {"untyped int", constant.MakeInt64(int64(q.PACKET_QDISC_BYPASS))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_ROLLOVER_STATS": {"untyped int", constant.MakeInt64(int64(q.PACKET_ROLLOVER_STATS))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_USER": {"untyped int", constant.MakeInt64(int64(q.PACKET_USER))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_CAP_AMBIENT": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT))}, + "PR_CAP_AMBIENT_CLEAR_ALL": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT_CLEAR_ALL))}, + "PR_CAP_AMBIENT_IS_SET": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT_IS_SET))}, + "PR_CAP_AMBIENT_LOWER": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT_LOWER))}, + "PR_CAP_AMBIENT_RAISE": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT_RAISE))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_FP_MODE_FR": {"untyped int", constant.MakeInt64(int64(q.PR_FP_MODE_FR))}, + "PR_FP_MODE_FRE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_MODE_FRE))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_FP_MODE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FP_MODE))}, + "PR_GET_IO_FLUSHER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_IO_FLUSHER))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_SPECULATION_CTRL": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SPECULATION_CTRL))}, + "PR_GET_TAGGED_ADDR_CTRL": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TAGGED_ADDR_CTRL))}, + "PR_GET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_THP_DISABLE))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_MPX_DISABLE_MANAGEMENT": {"untyped int", constant.MakeInt64(int64(q.PR_MPX_DISABLE_MANAGEMENT))}, + "PR_MPX_ENABLE_MANAGEMENT": {"untyped int", constant.MakeInt64(int64(q.PR_MPX_ENABLE_MANAGEMENT))}, + "PR_MTE_TAG_MASK": {"untyped int", constant.MakeInt64(int64(q.PR_MTE_TAG_MASK))}, + "PR_MTE_TAG_SHIFT": {"untyped int", constant.MakeInt64(int64(q.PR_MTE_TAG_SHIFT))}, + "PR_MTE_TCF_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_MTE_TCF_ASYNC))}, + "PR_MTE_TCF_MASK": {"untyped int", constant.MakeInt64(int64(q.PR_MTE_TCF_MASK))}, + "PR_MTE_TCF_NONE": {"untyped int", constant.MakeInt64(int64(q.PR_MTE_TCF_NONE))}, + "PR_MTE_TCF_SHIFT": {"untyped int", constant.MakeInt64(int64(q.PR_MTE_TCF_SHIFT))}, + "PR_MTE_TCF_SYNC": {"untyped int", constant.MakeInt64(int64(q.PR_MTE_TCF_SYNC))}, + "PR_PAC_APDAKEY": {"untyped int", constant.MakeInt64(int64(q.PR_PAC_APDAKEY))}, + "PR_PAC_APDBKEY": {"untyped int", constant.MakeInt64(int64(q.PR_PAC_APDBKEY))}, + "PR_PAC_APGAKEY": {"untyped int", constant.MakeInt64(int64(q.PR_PAC_APGAKEY))}, + "PR_PAC_APIAKEY": {"untyped int", constant.MakeInt64(int64(q.PR_PAC_APIAKEY))}, + "PR_PAC_APIBKEY": {"untyped int", constant.MakeInt64(int64(q.PR_PAC_APIBKEY))}, + "PR_PAC_GET_ENABLED_KEYS": {"untyped int", constant.MakeInt64(int64(q.PR_PAC_GET_ENABLED_KEYS))}, + "PR_PAC_RESET_KEYS": {"untyped int", constant.MakeInt64(int64(q.PR_PAC_RESET_KEYS))}, + "PR_PAC_SET_ENABLED_KEYS": {"untyped int", constant.MakeInt64(int64(q.PR_PAC_SET_ENABLED_KEYS))}, + "PR_SCHED_CORE": {"untyped int", constant.MakeInt64(int64(q.PR_SCHED_CORE))}, + "PR_SCHED_CORE_CREATE": {"untyped int", constant.MakeInt64(int64(q.PR_SCHED_CORE_CREATE))}, + "PR_SCHED_CORE_GET": {"untyped int", constant.MakeInt64(int64(q.PR_SCHED_CORE_GET))}, + "PR_SCHED_CORE_MAX": {"untyped int", constant.MakeInt64(int64(q.PR_SCHED_CORE_MAX))}, + "PR_SCHED_CORE_SCOPE_PROCESS_GROUP": {"untyped int", constant.MakeInt64(int64(q.PR_SCHED_CORE_SCOPE_PROCESS_GROUP))}, + "PR_SCHED_CORE_SCOPE_THREAD": {"untyped int", constant.MakeInt64(int64(q.PR_SCHED_CORE_SCOPE_THREAD))}, + "PR_SCHED_CORE_SCOPE_THREAD_GROUP": {"untyped int", constant.MakeInt64(int64(q.PR_SCHED_CORE_SCOPE_THREAD_GROUP))}, + "PR_SCHED_CORE_SHARE_FROM": {"untyped int", constant.MakeInt64(int64(q.PR_SCHED_CORE_SHARE_FROM))}, + "PR_SCHED_CORE_SHARE_TO": {"untyped int", constant.MakeInt64(int64(q.PR_SCHED_CORE_SHARE_TO))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_FP_MODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FP_MODE))}, + "PR_SET_IO_FLUSHER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_IO_FLUSHER))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_MAP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_MAP))}, + "PR_SET_MM_MAP_SIZE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_MAP_SIZE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeUint64(uint64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_SPECULATION_CTRL": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SPECULATION_CTRL))}, + "PR_SET_SYSCALL_USER_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SYSCALL_USER_DISPATCH))}, + "PR_SET_TAGGED_ADDR_CTRL": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TAGGED_ADDR_CTRL))}, + "PR_SET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_THP_DISABLE))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_SET_VMA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_VMA))}, + "PR_SET_VMA_ANON_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_VMA_ANON_NAME))}, + "PR_SPEC_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SPEC_DISABLE))}, + "PR_SPEC_DISABLE_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.PR_SPEC_DISABLE_NOEXEC))}, + "PR_SPEC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SPEC_ENABLE))}, + "PR_SPEC_FORCE_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SPEC_FORCE_DISABLE))}, + "PR_SPEC_INDIRECT_BRANCH": {"untyped int", constant.MakeInt64(int64(q.PR_SPEC_INDIRECT_BRANCH))}, + "PR_SPEC_L1D_FLUSH": {"untyped int", constant.MakeInt64(int64(q.PR_SPEC_L1D_FLUSH))}, + "PR_SPEC_NOT_AFFECTED": {"untyped int", constant.MakeInt64(int64(q.PR_SPEC_NOT_AFFECTED))}, + "PR_SPEC_PRCTL": {"untyped int", constant.MakeInt64(int64(q.PR_SPEC_PRCTL))}, + "PR_SPEC_STORE_BYPASS": {"untyped int", constant.MakeInt64(int64(q.PR_SPEC_STORE_BYPASS))}, + "PR_SVE_GET_VL": {"untyped int", constant.MakeInt64(int64(q.PR_SVE_GET_VL))}, + "PR_SVE_SET_VL": {"untyped int", constant.MakeInt64(int64(q.PR_SVE_SET_VL))}, + "PR_SVE_SET_VL_ONEXEC": {"untyped int", constant.MakeInt64(int64(q.PR_SVE_SET_VL_ONEXEC))}, + "PR_SVE_VL_INHERIT": {"untyped int", constant.MakeInt64(int64(q.PR_SVE_VL_INHERIT))}, + "PR_SVE_VL_LEN_MASK": {"untyped int", constant.MakeInt64(int64(q.PR_SVE_VL_LEN_MASK))}, + "PR_SYS_DISPATCH_OFF": {"untyped int", constant.MakeInt64(int64(q.PR_SYS_DISPATCH_OFF))}, + "PR_SYS_DISPATCH_ON": {"untyped int", constant.MakeInt64(int64(q.PR_SYS_DISPATCH_ON))}, + "PR_TAGGED_ADDR_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TAGGED_ADDR_ENABLE))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENTMSG_SYSCALL_ENTRY": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENTMSG_SYSCALL_ENTRY))}, + "PTRACE_EVENTMSG_SYSCALL_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENTMSG_SYSCALL_EXIT))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_GET_RSEQ_CONFIGURATION": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_RSEQ_CONFIGURATION))}, + "PTRACE_GET_SYSCALL_INFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_SYSCALL_INFO))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_SUSPEND_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_SUSPEND_SECCOMP))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SECCOMP_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SECCOMP_GET_FILTER))}, + "PTRACE_SECCOMP_GET_METADATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SECCOMP_GET_METADATA))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_SYSCALL_INFO_ENTRY": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL_INFO_ENTRY))}, + "PTRACE_SYSCALL_INFO_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL_INFO_EXIT))}, + "PTRACE_SYSCALL_INFO_NONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL_INFO_NONE))}, + "PTRACE_SYSCALL_INFO_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL_INFO_SECCOMP))}, + "PTRACE_SYSEMU": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU))}, + "PTRACE_SYSEMU_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSEMU_SINGLESTEP))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeUint64(uint64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CC_ALGO": {"untyped int", constant.MakeInt64(int64(q.RTAX_CC_ALGO))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FASTOPEN_NO_COOKIE": {"untyped int", constant.MakeInt64(int64(q.RTAX_FASTOPEN_NO_COOKIE))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_MASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_MASK))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELCHAIN": {"untyped int", constant.MakeInt64(int64(q.RTM_DELCHAIN))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELLINKPROP": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINKPROP))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNETCONF))}, + "RTM_DELNEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEXTHOP))}, + "RTM_DELNEXTHOPBUCKET": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEXTHOPBUCKET))}, + "RTM_DELNSID": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNSID))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_DELVLAN": {"untyped int", constant.MakeInt64(int64(q.RTM_DELVLAN))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_FIB_MATCH": {"untyped int", constant.MakeInt64(int64(q.RTM_F_FIB_MATCH))}, + "RTM_F_LOOKUP_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_LOOKUP_TABLE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.RTM_F_OFFLOAD))}, + "RTM_F_OFFLOAD_FAILED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_OFFLOAD_FAILED))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_F_TRAP": {"untyped int", constant.MakeInt64(int64(q.RTM_F_TRAP))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETCHAIN": {"untyped int", constant.MakeInt64(int64(q.RTM_GETCHAIN))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETLINKPROP": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINKPROP))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETNEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEXTHOP))}, + "RTM_GETNEXTHOPBUCKET": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEXTHOPBUCKET))}, + "RTM_GETNSID": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNSID))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETSTATS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETSTATS))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_GETVLAN": {"untyped int", constant.MakeInt64(int64(q.RTM_GETVLAN))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWCACHEREPORT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWCACHEREPORT))}, + "RTM_NEWCHAIN": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWCHAIN))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWLINKPROP": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINKPROP))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWNEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEXTHOP))}, + "RTM_NEWNEXTHOPBUCKET": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEXTHOPBUCKET))}, + "RTM_NEWNSID": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNSID))}, + "RTM_NEWNVLAN": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNVLAN))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWSTATS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWSTATS))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_COMPARE_MASK": {"untyped int", constant.MakeInt64(int64(q.RTNH_COMPARE_MASK))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_LINKDOWN": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_LINKDOWN))}, + "RTNH_F_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_OFFLOAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNH_F_TRAP": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_TRAP))}, + "RTNH_F_UNRESOLVED": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_UNRESOLVED))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BABEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BABEL))}, + "RTPROT_BGP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BGP))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_EIGRP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_EIGRP))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_ISIS": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ISIS))}, + "RTPROT_KEEPALIVED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KEEPALIVED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_OPENR": {"untyped int", constant.MakeInt64(int64(q.RTPROT_OPENR))}, + "RTPROT_OSPF": {"untyped int", constant.MakeInt64(int64(q.RTPROT_OSPF))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_RIP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RIP))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPING_OPT_STATS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING_OPT_STATS))}, + "SCM_TIMESTAMPING_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING_PKTINFO))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_TXTIME": {"untyped int", constant.MakeInt64(int64(q.SCM_TXTIME))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMPNS_OLD": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS_OLD))}, + "SIOCGSTAMP_OLD": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP_OLD))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_BUF_LOCK_MASK": {"untyped int", constant.MakeInt64(int64(q.SOCK_BUF_LOCK_MASK))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RCVBUF_LOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_RCVBUF_LOCK))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_SNDBUF_LOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_SNDBUF_LOCK))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ALG": {"untyped int", constant.MakeInt64(int64(q.SOL_ALG))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.SOL_BLUETOOTH))}, + "SOL_CAIF": {"untyped int", constant.MakeInt64(int64(q.SOL_CAIF))}, + "SOL_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOL_DCCP))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_IUCV": {"untyped int", constant.MakeInt64(int64(q.SOL_IUCV))}, + "SOL_KCM": {"untyped int", constant.MakeInt64(int64(q.SOL_KCM))}, + "SOL_LLC": {"untyped int", constant.MakeInt64(int64(q.SOL_LLC))}, + "SOL_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.SOL_NETBEUI))}, + "SOL_NETLINK": {"untyped int", constant.MakeInt64(int64(q.SOL_NETLINK))}, + "SOL_NFC": {"untyped int", constant.MakeInt64(int64(q.SOL_NFC))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_PNPIPE": {"untyped int", constant.MakeInt64(int64(q.SOL_PNPIPE))}, + "SOL_PPPOL2TP": {"untyped int", constant.MakeInt64(int64(q.SOL_PPPOL2TP))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_RDS": {"untyped int", constant.MakeInt64(int64(q.SOL_RDS))}, + "SOL_RXRPC": {"untyped int", constant.MakeInt64(int64(q.SOL_RXRPC))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_TIPC": {"untyped int", constant.MakeInt64(int64(q.SOL_TIPC))}, + "SOL_TLS": {"untyped int", constant.MakeInt64(int64(q.SOL_TLS))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOL_XDP": {"untyped int", constant.MakeInt64(int64(q.SOL_XDP))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_BPF": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_BPF))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_ATTACH_REUSEPORT_CBPF": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_REUSEPORT_CBPF))}, + "SO_ATTACH_REUSEPORT_EBPF": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_REUSEPORT_EBPF))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BINDTOIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTOIFINDEX))}, + "SO_BPF_EXTENSIONS": {"untyped int", constant.MakeInt64(int64(q.SO_BPF_EXTENSIONS))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUF_LOCK": {"untyped int", constant.MakeInt64(int64(q.SO_BUF_LOCK))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_BUSY_POLL_BUDGET": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL_BUDGET))}, + "SO_CNX_ADVICE": {"untyped int", constant.MakeInt64(int64(q.SO_CNX_ADVICE))}, + "SO_COOKIE": {"untyped int", constant.MakeInt64(int64(q.SO_COOKIE))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_BPF": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_BPF))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DETACH_REUSEPORT_BPF": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_REUSEPORT_BPF))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_INCOMING_CPU": {"untyped int", constant.MakeInt64(int64(q.SO_INCOMING_CPU))}, + "SO_INCOMING_NAPI_ID": {"untyped int", constant.MakeInt64(int64(q.SO_INCOMING_NAPI_ID))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_MAX_PACING_RATE": {"untyped int", constant.MakeInt64(int64(q.SO_MAX_PACING_RATE))}, + "SO_MEMINFO": {"untyped int", constant.MakeInt64(int64(q.SO_MEMINFO))}, + "SO_NETNS_COOKIE": {"untyped int", constant.MakeInt64(int64(q.SO_NETNS_COOKIE))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERGROUPS": {"untyped int", constant.MakeInt64(int64(q.SO_PEERGROUPS))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PREFER_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_PREFER_BUSY_POLL))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_RCVTIMEO_NEW": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO_NEW))}, + "SO_RCVTIMEO_OLD": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO_OLD))}, + "SO_RESERVE_MEM": {"untyped int", constant.MakeInt64(int64(q.SO_RESERVE_MEM))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_SNDTIMEO_NEW": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO_NEW))}, + "SO_SNDTIMEO_OLD": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO_OLD))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPING_NEW": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING_NEW))}, + "SO_TIMESTAMPING_OLD": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING_OLD))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TIMESTAMPNS_NEW": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS_NEW))}, + "SO_TIMESTAMPNS_OLD": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS_OLD))}, + "SO_TIMESTAMP_NEW": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP_NEW))}, + "SO_TIMESTAMP_OLD": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP_OLD))}, + "SO_TXTIME": {"untyped int", constant.MakeInt64(int64(q.SO_TXTIME))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SO_ZEROCOPY": {"untyped int", constant.MakeInt64(int64(q.SO_ZEROCOPY))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_ARCH_SPECIFIC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_ARCH_SPECIFIC_SYSCALL))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BPF": {"untyped int", constant.MakeInt64(int64(q.SYS_BPF))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE_RANGE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_COPY_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_COPY_FILE_RANGE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_PWAIT2": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT2))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXECVEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVEAT))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FACCESSAT2": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT2))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FINIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_FINIT_MODULE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSCONFIG": {"untyped int", constant.MakeInt64(int64(q.SYS_FSCONFIG))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSMOUNT))}, + "SYS_FSOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FSOPEN))}, + "SYS_FSPICK": {"untyped int", constant.MakeInt64(int64(q.SYS_FSPICK))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTEX_WAITV": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX_WAITV))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRANDOM": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRANDOM))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_PGETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_PGETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IO_URING_ENTER": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_URING_ENTER))}, + "SYS_IO_URING_REGISTER": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_URING_REGISTER))}, + "SYS_IO_URING_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_URING_SETUP))}, + "SYS_KCMP": {"untyped int", constant.MakeInt64(int64(q.SYS_KCMP))}, + "SYS_KEXEC_FILE_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_FILE_LOAD))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LANDLOCK_ADD_RULE": {"untyped int", constant.MakeInt64(int64(q.SYS_LANDLOCK_ADD_RULE))}, + "SYS_LANDLOCK_CREATE_RULESET": {"untyped int", constant.MakeInt64(int64(q.SYS_LANDLOCK_CREATE_RULESET))}, + "SYS_LANDLOCK_RESTRICT_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS_LANDLOCK_RESTRICT_SELF))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MEMBARRIER": {"untyped int", constant.MakeInt64(int64(q.SYS_MEMBARRIER))}, + "SYS_MEMFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_MEMFD_CREATE))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCK2": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK2))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOUNT_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT_SETATTR))}, + "SYS_MOVE_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPENAT2": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT2))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_OPEN_TREE": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_TREE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIDFD_GETFD": {"untyped int", constant.MakeInt64(int64(q.SYS_PIDFD_GETFD))}, + "SYS_PIDFD_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PIDFD_OPEN))}, + "SYS_PIDFD_SEND_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_PIDFD_SEND_SIGNAL))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_PKEY_ALLOC": {"untyped int", constant.MakeInt64(int64(q.SYS_PKEY_ALLOC))}, + "SYS_PKEY_FREE": {"untyped int", constant.MakeInt64(int64(q.SYS_PKEY_FREE))}, + "SYS_PKEY_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PKEY_MPROTECT))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PREADV2": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV2))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_MADVISE))}, + "SYS_PROCESS_MRELEASE": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_MRELEASE))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_PWRITEV2": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV2))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_QUOTACTL_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL_FD))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAMEAT2": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT2))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RSEQ": {"untyped int", constant.MakeInt64(int64(q.SYS_RSEQ))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETATTR))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETATTR))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.SYS_SECCOMP))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_MEMPOLICY_HOME_NODE": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY_HOME_NODE))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATX": {"untyped int", constant.MakeInt64(int64(q.SYS_STATX))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USERFAULTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_USERFAULTFD))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CC_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_CC_INFO))}, + "TCP_CM_INQ": {"untyped int", constant.MakeInt64(int64(q.TCP_CM_INQ))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_COOKIE_IN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_IN_ALWAYS))}, + "TCP_COOKIE_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MAX))}, + "TCP_COOKIE_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MIN))}, + "TCP_COOKIE_OUT_NEVER": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_OUT_NEVER))}, + "TCP_COOKIE_PAIR_SIZE": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_PAIR_SIZE))}, + "TCP_COOKIE_TRANSACTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_TRANSACTIONS))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN))}, + "TCP_FASTOPEN_CONNECT": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN_CONNECT))}, + "TCP_FASTOPEN_KEY": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN_KEY))}, + "TCP_FASTOPEN_NO_COOKIE": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN_NO_COOKIE))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_INQ": {"untyped int", constant.MakeInt64(int64(q.TCP_INQ))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_EXT": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_EXT))}, + "TCP_MD5SIG_FLAG_PREFIX": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_FLAG_PREFIX))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_MSS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DEFAULT))}, + "TCP_MSS_DESIRED": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DESIRED))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOTSENT_LOWAT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOTSENT_LOWAT))}, + "TCP_QUEUE_SEQ": {"untyped int", constant.MakeInt64(int64(q.TCP_QUEUE_SEQ))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_REPAIR": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR))}, + "TCP_REPAIR_OFF": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OFF))}, + "TCP_REPAIR_OFF_NO_WP": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OFF_NO_WP))}, + "TCP_REPAIR_ON": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_ON))}, + "TCP_REPAIR_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OPTIONS))}, + "TCP_REPAIR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_QUEUE))}, + "TCP_REPAIR_WINDOW": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_WINDOW))}, + "TCP_SAVED_SYN": {"untyped int", constant.MakeInt64(int64(q.TCP_SAVED_SYN))}, + "TCP_SAVE_SYN": {"untyped int", constant.MakeInt64(int64(q.TCP_SAVE_SYN))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_S_DATA_IN": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_IN))}, + "TCP_S_DATA_OUT": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_OUT))}, + "TCP_THIN_DUPACK": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_DUPACK))}, + "TCP_THIN_LINEAR_TIMEOUTS": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_LINEAR_TIMEOUTS))}, + "TCP_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_TIMESTAMP))}, + "TCP_TX_DELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_TX_DELAY))}, + "TCP_ULP": {"untyped int", constant.MakeInt64(int64(q.TCP_ULP))}, + "TCP_USER_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_USER_TIMEOUT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCP_ZEROCOPY_RECEIVE": {"untyped int", constant.MakeInt64(int64(q.TCP_ZEROCOPY_RECEIVE))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGISO7816": {"untyped int", constant.MakeInt64(int64(q.TIOCGISO7816))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGPTPEER": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTPEER))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSISO7816": {"untyped int", constant.MakeInt64(int64(q.TIOCSISO7816))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETDEVNETNS": {"untyped int", constant.MakeInt64(int64(q.TUNGETDEVNETNS))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETBE": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETBE))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNGETVNETLE": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETLE))}, + "TUNSETCARRIER": {"untyped int", constant.MakeInt64(int64(q.TUNSETCARRIER))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETFILTEREBPF": {"untyped int", constant.MakeInt64(int64(q.TUNSETFILTEREBPF))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETSTEERINGEBPF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSTEERINGEBPF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETBE": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETBE))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "TUNSETVNETLE": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETLE))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_linux_mips.go b/pkg/syscall/go123_export_linux_mips.go new file mode 100755 index 00000000..12d8a73d --- /dev/null +++ b/pkg/syscall/go123_export_linux_mips.go @@ -0,0 +1,2476 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/runtime/syscall": "syscall", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINIT": {reflect.TypeOf(q.EINIT), constant.MakeInt64(int64(q.EINIT))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMDEV": {reflect.TypeOf(q.EREMDEV), constant.MakeInt64(int64(q.EREMDEV))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VSOCK": {"untyped int", constant.MakeInt64(int64(q.AF_VSOCK))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_6LOWPAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_6LOWPAN))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_80221": {"untyped int", constant.MakeInt64(int64(q.ETH_P_80221))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOPBACK))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PRP))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_MANAGETEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IFA_F_MANAGETEMPADDR))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_NOPREFIXROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NOPREFIXROUTE))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_BEETPH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BEETPH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_HUGE_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_MASK))}, + "MAP_HUGE_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_SHIFT))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TMPFILE": {"untyped int", constant.MakeInt64(int64(q.O_TMPFILE))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_QM": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_QM))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_KERNEL": {"untyped int", constant.MakeInt64(int64(q.PACKET_KERNEL))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_QDISC_BYPASS": {"untyped int", constant.MakeInt64(int64(q.PACKET_QDISC_BYPASS))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_USER": {"untyped int", constant.MakeInt64(int64(q.PACKET_USER))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_THP_DISABLE))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_THP_DISABLE))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_GET_THREAD_AREA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA_3264))}, + "PTRACE_GET_WATCH_REGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_WATCH_REGS))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKDATA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA_3264))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKTEXT_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT_3264))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKEDATA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA_3264))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKETEXT_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT_3264))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_THREAD_AREA))}, + "PTRACE_SET_WATCH_REGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_WATCH_REGS))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BPF_EXTENSIONS": {"untyped int", constant.MakeInt64(int64(q.SO_BPF_EXTENSIONS))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_MAX_PACING_RATE": {"untyped int", constant.MakeInt64(int64(q.SO_MAX_PACING_RATE))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_STYLE": {"untyped int", constant.MakeInt64(int64(q.SO_STYLE))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_64_LINUX_SYSCALLS": {"untyped int", constant.MakeInt64(int64(q.SYS_64_LINUX_SYSCALLS))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_BDFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_BDFLUSH))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CACHECTL": {"untyped int", constant.MakeInt64(int64(q.SYS_CACHECTL))}, + "SYS_CACHEFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_CACHEFLUSH))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL64": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL64))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTATAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT64))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_FTIME))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FTRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE64))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_GTTY": {"untyped int", constant.MakeInt64(int64(q.SYS_GTTY))}, + "SYS_IDLE": {"untyped int", constant.MakeInt64(int64(q.SYS_IDLE))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPERM": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPERM))}, + "SYS_IOPL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IPC": {"untyped int", constant.MakeInt64(int64(q.SYS_IPC))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LINUX_SYSCALLS": {"untyped int", constant.MakeInt64(int64(q.SYS_LINUX_SYSCALLS))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_LOCK))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MMAP2": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP2))}, + "SYS_MODIFY_LDT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODIFY_LDT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MPX": {"untyped int", constant.MakeInt64(int64(q.SYS_MPX))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_N32_LINUX_SYSCALLS": {"untyped int", constant.MakeInt64(int64(q.SYS_N32_LINUX_SYSCALLS))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_NICE": {"untyped int", constant.MakeInt64(int64(q.SYS_NICE))}, + "SYS_O32_LINUX_SYSCALLS": {"untyped int", constant.MakeInt64(int64(q.SYS_O32_LINUX_SYSCALLS))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PROF": {"untyped int", constant.MakeInt64(int64(q.SYS_PROF))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_READDIR))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECV": {"untyped int", constant.MakeInt64(int64(q.SYS_RECV))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESERVED221": {"untyped int", constant.MakeInt64(int64(q.SYS_RESERVED221))}, + "SYS_RESERVED82": {"untyped int", constant.MakeInt64(int64(q.SYS_RESERVED82))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SEND))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDFILE64": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE64))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_THREAD_AREA))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SGETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SGETMASK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNAL))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETCALL))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_SSETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSETMASK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STIME": {"untyped int", constant.MakeInt64(int64(q.SYS_STIME))}, + "SYS_STTY": {"untyped int", constant.MakeInt64(int64(q.SYS_STTY))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_SYSMIPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSMIPS))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE64))}, + "SYS_ULIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_ULIMIT))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_UNUSED109": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED109))}, + "SYS_UNUSED150": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED150))}, + "SYS_UNUSED18": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED18))}, + "SYS_UNUSED28": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED28))}, + "SYS_UNUSED59": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED59))}, + "SYS_UNUSED84": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED84))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VM86": {"untyped int", constant.MakeInt64(int64(q.SYS_VM86))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITPID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITPID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LLSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS__LLSEEK))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_COOKIE_IN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_IN_ALWAYS))}, + "TCP_COOKIE_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MAX))}, + "TCP_COOKIE_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MIN))}, + "TCP_COOKIE_OUT_NEVER": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_OUT_NEVER))}, + "TCP_COOKIE_PAIR_SIZE": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_PAIR_SIZE))}, + "TCP_COOKIE_TRANSACTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_TRANSACTIONS))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_MSS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DEFAULT))}, + "TCP_MSS_DESIRED": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DESIRED))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUEUE_SEQ": {"untyped int", constant.MakeInt64(int64(q.TCP_QUEUE_SEQ))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_REPAIR": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR))}, + "TCP_REPAIR_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OPTIONS))}, + "TCP_REPAIR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_QUEUE))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_S_DATA_IN": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_IN))}, + "TCP_S_DATA_OUT": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_OUT))}, + "TCP_THIN_DUPACK": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_DUPACK))}, + "TCP_THIN_LINEAR_TIMEOUTS": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_LINEAR_TIMEOUTS))}, + "TCP_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_TIMESTAMP))}, + "TCP_USER_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_USER_TIMEOUT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGETP": {"untyped int", constant.MakeInt64(int64(q.TIOCGETP))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCGLTC))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETN": {"untyped int", constant.MakeInt64(int64(q.TIOCSETN))}, + "TIOCSETP": {"untyped int", constant.MakeInt64(int64(q.TIOCSETP))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCSLTC))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VSWTCH": {"untyped int", constant.MakeInt64(int64(q.VSWTCH))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_linux_mips64.go b/pkg/syscall/go123_export_linux_mips64.go new file mode 100755 index 00000000..2b4afa07 --- /dev/null +++ b/pkg/syscall/go123_export_linux_mips64.go @@ -0,0 +1,2424 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/runtime/syscall": "syscall", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINIT": {reflect.TypeOf(q.EINIT), constant.MakeInt64(int64(q.EINIT))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMDEV": {reflect.TypeOf(q.EREMDEV), constant.MakeInt64(int64(q.EREMDEV))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "EPOLL_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.EPOLL_NONBLOCK))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_802_1Q_VLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_802_1Q_VLAN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BONDING": {"untyped int", constant.MakeInt64(int64(q.IFF_BONDING))}, + "IFF_BRIDGE_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_BRIDGE_PORT))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DISABLE_NETPOLL": {"untyped int", constant.MakeInt64(int64(q.IFF_DISABLE_NETPOLL))}, + "IFF_DONT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_DONT_BRIDGE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_EBRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_EBRIDGE))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_ISATAP": {"untyped int", constant.MakeInt64(int64(q.IFF_ISATAP))}, + "IFF_LIVE_ADDR_CHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_LIVE_ADDR_CHANGE))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MACVLAN_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN_PORT))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MASTER_8023AD": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_8023AD))}, + "IFF_MASTER_ALB": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ALB))}, + "IFF_MASTER_ARPMON": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ARPMON))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_OVS_DATAPATH": {"untyped int", constant.MakeInt64(int64(q.IFF_OVS_DATAPATH))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_SLAVE_INACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_INACTIVE))}, + "IFF_SLAVE_NEEDARP": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_NEEDARP))}, + "IFF_SUPP_NOFCS": {"untyped int", constant.MakeInt64(int64(q.IFF_SUPP_NOFCS))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TEAM_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_TEAM_PORT))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_TX_SKB_SHARING": {"untyped int", constant.MakeInt64(int64(q.IFF_TX_SKB_SHARING))}, + "IFF_UNICAST_FLT": {"untyped int", constant.MakeInt64(int64(q.IFF_UNICAST_FLT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFF_WAN_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFF_WAN_HDLC))}, + "IFF_XMIT_DST_RELEASE": {"untyped int", constant.MakeInt64(int64(q.IFF_XMIT_DST_RELEASE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_GET_THREAD_AREA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA_3264))}, + "PTRACE_GET_WATCH_REGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_WATCH_REGS))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKDATA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA_3264))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKTEXT_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT_3264))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKEDATA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA_3264))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKETEXT_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT_3264))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_THREAD_AREA))}, + "PTRACE_SET_WATCH_REGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_WATCH_REGS))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_STYLE": {"untyped int", constant.MakeInt64(int64(q.SO_STYLE))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BPF": {"untyped int", constant.MakeInt64(int64(q.SYS_BPF))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CACHECTL": {"untyped int", constant.MakeInt64(int64(q.SYS_CACHECTL))}, + "SYS_CACHEFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_CACHEFLUSH))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXECVEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVEAT))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FINIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_FINIT_MODULE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRANDOM": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRANDOM))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_KCMP": {"untyped int", constant.MakeInt64(int64(q.SYS_KCMP))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MEMFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_MEMFD_CREATE))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NEWFSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NEWFSTATAT))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_RENAMEAT2": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT2))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESERVED177": {"untyped int", constant.MakeInt64(int64(q.SYS_RESERVED177))}, + "SYS_RESERVED193": {"untyped int", constant.MakeInt64(int64(q.SYS_RESERVED193))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETATTR))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETATTR))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.SYS_SECCOMP))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_THREAD_AREA))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_SYSMIPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSMIPS))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIMERFD": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGETP": {"untyped int", constant.MakeInt64(int64(q.TIOCGETP))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCGLTC))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETN": {"untyped int", constant.MakeInt64(int64(q.TIOCSETN))}, + "TIOCSETP": {"untyped int", constant.MakeInt64(int64(q.TIOCSETP))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCSLTC))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VSWTCH": {"untyped int", constant.MakeInt64(int64(q.VSWTCH))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_linux_mips64le.go b/pkg/syscall/go123_export_linux_mips64le.go new file mode 100755 index 00000000..2b4afa07 --- /dev/null +++ b/pkg/syscall/go123_export_linux_mips64le.go @@ -0,0 +1,2424 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/runtime/syscall": "syscall", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINIT": {reflect.TypeOf(q.EINIT), constant.MakeInt64(int64(q.EINIT))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMDEV": {reflect.TypeOf(q.EREMDEV), constant.MakeInt64(int64(q.EREMDEV))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "EPOLL_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.EPOLL_NONBLOCK))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_802_1Q_VLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_802_1Q_VLAN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BONDING": {"untyped int", constant.MakeInt64(int64(q.IFF_BONDING))}, + "IFF_BRIDGE_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_BRIDGE_PORT))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DISABLE_NETPOLL": {"untyped int", constant.MakeInt64(int64(q.IFF_DISABLE_NETPOLL))}, + "IFF_DONT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_DONT_BRIDGE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_EBRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_EBRIDGE))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_ISATAP": {"untyped int", constant.MakeInt64(int64(q.IFF_ISATAP))}, + "IFF_LIVE_ADDR_CHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_LIVE_ADDR_CHANGE))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MACVLAN_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN_PORT))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MASTER_8023AD": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_8023AD))}, + "IFF_MASTER_ALB": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ALB))}, + "IFF_MASTER_ARPMON": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ARPMON))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_OVS_DATAPATH": {"untyped int", constant.MakeInt64(int64(q.IFF_OVS_DATAPATH))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_SLAVE_INACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_INACTIVE))}, + "IFF_SLAVE_NEEDARP": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_NEEDARP))}, + "IFF_SUPP_NOFCS": {"untyped int", constant.MakeInt64(int64(q.IFF_SUPP_NOFCS))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TEAM_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_TEAM_PORT))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_TX_SKB_SHARING": {"untyped int", constant.MakeInt64(int64(q.IFF_TX_SKB_SHARING))}, + "IFF_UNICAST_FLT": {"untyped int", constant.MakeInt64(int64(q.IFF_UNICAST_FLT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFF_WAN_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFF_WAN_HDLC))}, + "IFF_XMIT_DST_RELEASE": {"untyped int", constant.MakeInt64(int64(q.IFF_XMIT_DST_RELEASE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_GET_THREAD_AREA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA_3264))}, + "PTRACE_GET_WATCH_REGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_WATCH_REGS))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKDATA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA_3264))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKTEXT_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT_3264))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKEDATA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA_3264))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKETEXT_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT_3264))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_THREAD_AREA))}, + "PTRACE_SET_WATCH_REGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_WATCH_REGS))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_STYLE": {"untyped int", constant.MakeInt64(int64(q.SO_STYLE))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BPF": {"untyped int", constant.MakeInt64(int64(q.SYS_BPF))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CACHECTL": {"untyped int", constant.MakeInt64(int64(q.SYS_CACHECTL))}, + "SYS_CACHEFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_CACHEFLUSH))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXECVEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVEAT))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FINIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_FINIT_MODULE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRANDOM": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRANDOM))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_KCMP": {"untyped int", constant.MakeInt64(int64(q.SYS_KCMP))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MEMFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_MEMFD_CREATE))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NEWFSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NEWFSTATAT))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_RENAMEAT2": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT2))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESERVED177": {"untyped int", constant.MakeInt64(int64(q.SYS_RESERVED177))}, + "SYS_RESERVED193": {"untyped int", constant.MakeInt64(int64(q.SYS_RESERVED193))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETATTR))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETATTR))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.SYS_SECCOMP))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_THREAD_AREA))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_SYSMIPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSMIPS))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIMERFD": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGETP": {"untyped int", constant.MakeInt64(int64(q.TIOCGETP))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCGLTC))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETN": {"untyped int", constant.MakeInt64(int64(q.TIOCSETN))}, + "TIOCSETP": {"untyped int", constant.MakeInt64(int64(q.TIOCSETP))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCSLTC))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VSWTCH": {"untyped int", constant.MakeInt64(int64(q.VSWTCH))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_linux_mipsle.go b/pkg/syscall/go123_export_linux_mipsle.go new file mode 100755 index 00000000..12d8a73d --- /dev/null +++ b/pkg/syscall/go123_export_linux_mipsle.go @@ -0,0 +1,2476 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/runtime/syscall": "syscall", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINIT": {reflect.TypeOf(q.EINIT), constant.MakeInt64(int64(q.EINIT))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMDEV": {reflect.TypeOf(q.EREMDEV), constant.MakeInt64(int64(q.EREMDEV))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VSOCK": {"untyped int", constant.MakeInt64(int64(q.AF_VSOCK))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_6LOWPAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_6LOWPAN))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_80221": {"untyped int", constant.MakeInt64(int64(q.ETH_P_80221))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOPBACK))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PRP))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_MANAGETEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IFA_F_MANAGETEMPADDR))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_NOPREFIXROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NOPREFIXROUTE))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_BEETPH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BEETPH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_HUGE_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_MASK))}, + "MAP_HUGE_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_SHIFT))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TMPFILE": {"untyped int", constant.MakeInt64(int64(q.O_TMPFILE))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_QM": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_QM))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_KERNEL": {"untyped int", constant.MakeInt64(int64(q.PACKET_KERNEL))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_QDISC_BYPASS": {"untyped int", constant.MakeInt64(int64(q.PACKET_QDISC_BYPASS))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_USER": {"untyped int", constant.MakeInt64(int64(q.PACKET_USER))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_THP_DISABLE))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_THP_DISABLE))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_GET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA))}, + "PTRACE_GET_THREAD_AREA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_THREAD_AREA_3264))}, + "PTRACE_GET_WATCH_REGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_WATCH_REGS))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKDATA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA_3264))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKTEXT_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT_3264))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKEDATA_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA_3264))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKETEXT_3264": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT_3264))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_THREAD_AREA))}, + "PTRACE_SET_WATCH_REGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_WATCH_REGS))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BPF_EXTENSIONS": {"untyped int", constant.MakeInt64(int64(q.SO_BPF_EXTENSIONS))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_MAX_PACING_RATE": {"untyped int", constant.MakeInt64(int64(q.SO_MAX_PACING_RATE))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_STYLE": {"untyped int", constant.MakeInt64(int64(q.SO_STYLE))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_64_LINUX_SYSCALLS": {"untyped int", constant.MakeInt64(int64(q.SYS_64_LINUX_SYSCALLS))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_BDFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_BDFLUSH))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CACHECTL": {"untyped int", constant.MakeInt64(int64(q.SYS_CACHECTL))}, + "SYS_CACHEFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_CACHEFLUSH))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FCNTL64": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL64))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT64))}, + "SYS_FSTATAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT64))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_FTIME))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FTRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE64))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_GTTY": {"untyped int", constant.MakeInt64(int64(q.SYS_GTTY))}, + "SYS_IDLE": {"untyped int", constant.MakeInt64(int64(q.SYS_IDLE))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPERM": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPERM))}, + "SYS_IOPL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IPC": {"untyped int", constant.MakeInt64(int64(q.SYS_IPC))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LINUX_SYSCALLS": {"untyped int", constant.MakeInt64(int64(q.SYS_LINUX_SYSCALLS))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_LOCK))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LSTAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT64))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MMAP2": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP2))}, + "SYS_MODIFY_LDT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODIFY_LDT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MPX": {"untyped int", constant.MakeInt64(int64(q.SYS_MPX))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_N32_LINUX_SYSCALLS": {"untyped int", constant.MakeInt64(int64(q.SYS_N32_LINUX_SYSCALLS))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_NICE": {"untyped int", constant.MakeInt64(int64(q.SYS_NICE))}, + "SYS_O32_LINUX_SYSCALLS": {"untyped int", constant.MakeInt64(int64(q.SYS_O32_LINUX_SYSCALLS))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PROF": {"untyped int", constant.MakeInt64(int64(q.SYS_PROF))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_READDIR))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECV": {"untyped int", constant.MakeInt64(int64(q.SYS_RECV))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESERVED221": {"untyped int", constant.MakeInt64(int64(q.SYS_RESERVED221))}, + "SYS_RESERVED82": {"untyped int", constant.MakeInt64(int64(q.SYS_RESERVED82))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SEND))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDFILE64": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE64))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_THREAD_AREA": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_THREAD_AREA))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SGETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SGETMASK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNAL))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETCALL))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_SSETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSETMASK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STAT64": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT64))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STIME": {"untyped int", constant.MakeInt64(int64(q.SYS_STIME))}, + "SYS_STTY": {"untyped int", constant.MakeInt64(int64(q.SYS_STTY))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCALL))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_SYSMIPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSMIPS))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TRUNCATE64": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE64))}, + "SYS_ULIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_ULIMIT))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_UNUSED109": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED109))}, + "SYS_UNUSED150": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED150))}, + "SYS_UNUSED18": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED18))}, + "SYS_UNUSED28": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED28))}, + "SYS_UNUSED59": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED59))}, + "SYS_UNUSED84": {"untyped int", constant.MakeInt64(int64(q.SYS_UNUSED84))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VM86": {"untyped int", constant.MakeInt64(int64(q.SYS_VM86))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_VSERVER": {"untyped int", constant.MakeInt64(int64(q.SYS_VSERVER))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITPID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITPID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LLSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS__LLSEEK))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_COOKIE_IN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_IN_ALWAYS))}, + "TCP_COOKIE_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MAX))}, + "TCP_COOKIE_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MIN))}, + "TCP_COOKIE_OUT_NEVER": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_OUT_NEVER))}, + "TCP_COOKIE_PAIR_SIZE": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_PAIR_SIZE))}, + "TCP_COOKIE_TRANSACTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_TRANSACTIONS))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_MSS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DEFAULT))}, + "TCP_MSS_DESIRED": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DESIRED))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUEUE_SEQ": {"untyped int", constant.MakeInt64(int64(q.TCP_QUEUE_SEQ))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_REPAIR": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR))}, + "TCP_REPAIR_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OPTIONS))}, + "TCP_REPAIR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_QUEUE))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_S_DATA_IN": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_IN))}, + "TCP_S_DATA_OUT": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_OUT))}, + "TCP_THIN_DUPACK": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_DUPACK))}, + "TCP_THIN_LINEAR_TIMEOUTS": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_LINEAR_TIMEOUTS))}, + "TCP_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_TIMESTAMP))}, + "TCP_USER_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_USER_TIMEOUT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGETP": {"untyped int", constant.MakeInt64(int64(q.TIOCGETP))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCGLTC))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETN": {"untyped int", constant.MakeInt64(int64(q.TIOCSETN))}, + "TIOCSETP": {"untyped int", constant.MakeInt64(int64(q.TIOCSETP))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCSLTC))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VSWTCH": {"untyped int", constant.MakeInt64(int64(q.VSWTCH))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_linux_ppc64.go b/pkg/syscall/go123_export_linux_ppc64.go new file mode 100755 index 00000000..fb8832a2 --- /dev/null +++ b/pkg/syscall/go123_export_linux_ppc64.go @@ -0,0 +1,2515 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/runtime/syscall": "syscall", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "EPOLL_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.EPOLL_NONBLOCK))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PRP))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_802_1Q_VLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_802_1Q_VLAN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BONDING": {"untyped int", constant.MakeInt64(int64(q.IFF_BONDING))}, + "IFF_BRIDGE_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_BRIDGE_PORT))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DISABLE_NETPOLL": {"untyped int", constant.MakeInt64(int64(q.IFF_DISABLE_NETPOLL))}, + "IFF_DONT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_DONT_BRIDGE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_EBRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_EBRIDGE))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_ISATAP": {"untyped int", constant.MakeInt64(int64(q.IFF_ISATAP))}, + "IFF_LIVE_ADDR_CHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_LIVE_ADDR_CHANGE))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MACVLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN))}, + "IFF_MACVLAN_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN_PORT))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MASTER_8023AD": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_8023AD))}, + "IFF_MASTER_ALB": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ALB))}, + "IFF_MASTER_ARPMON": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ARPMON))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_OVS_DATAPATH": {"untyped int", constant.MakeInt64(int64(q.IFF_OVS_DATAPATH))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_SLAVE_INACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_INACTIVE))}, + "IFF_SLAVE_NEEDARP": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_NEEDARP))}, + "IFF_SUPP_NOFCS": {"untyped int", constant.MakeInt64(int64(q.IFF_SUPP_NOFCS))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TEAM_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_TEAM_PORT))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_TX_SKB_SHARING": {"untyped int", constant.MakeInt64(int64(q.IFF_TX_SKB_SHARING))}, + "IFF_UNICAST_FLT": {"untyped int", constant.MakeInt64(int64(q.IFF_UNICAST_FLT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFF_WAN_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFF_WAN_HDLC))}, + "IFF_XMIT_DST_RELEASE": {"untyped int", constant.MakeInt64(int64(q.IFF_XMIT_DST_RELEASE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_SAO": {"untyped int", constant.MakeInt64(int64(q.PROT_SAO))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETEVRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVRREGS))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGS64": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS64))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_GETVRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETVRREGS))}, + "PTRACE_GETVSRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETVSRREGS))}, + "PTRACE_GET_DEBUGREG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_DEBUGREG))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETEVRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETEVRREGS))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGS64": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS64))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SETVRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETVRREGS))}, + "PTRACE_SETVSRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETVSRREGS))}, + "PTRACE_SET_DEBUGREG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_DEBUGREG))}, + "PTRACE_SINGLEBLOCK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLEBLOCK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_CCR": {"untyped int", constant.MakeInt64(int64(q.PT_CCR))}, + "PT_CTR": {"untyped int", constant.MakeInt64(int64(q.PT_CTR))}, + "PT_DAR": {"untyped int", constant.MakeInt64(int64(q.PT_DAR))}, + "PT_DSCR": {"untyped int", constant.MakeInt64(int64(q.PT_DSCR))}, + "PT_DSISR": {"untyped int", constant.MakeInt64(int64(q.PT_DSISR))}, + "PT_FPR0": {"untyped int", constant.MakeInt64(int64(q.PT_FPR0))}, + "PT_FPSCR": {"untyped int", constant.MakeInt64(int64(q.PT_FPSCR))}, + "PT_LNK": {"untyped int", constant.MakeInt64(int64(q.PT_LNK))}, + "PT_MSR": {"untyped int", constant.MakeInt64(int64(q.PT_MSR))}, + "PT_NIP": {"untyped int", constant.MakeInt64(int64(q.PT_NIP))}, + "PT_ORIG_R3": {"untyped int", constant.MakeInt64(int64(q.PT_ORIG_R3))}, + "PT_R0": {"untyped int", constant.MakeInt64(int64(q.PT_R0))}, + "PT_R1": {"untyped int", constant.MakeInt64(int64(q.PT_R1))}, + "PT_R10": {"untyped int", constant.MakeInt64(int64(q.PT_R10))}, + "PT_R11": {"untyped int", constant.MakeInt64(int64(q.PT_R11))}, + "PT_R12": {"untyped int", constant.MakeInt64(int64(q.PT_R12))}, + "PT_R13": {"untyped int", constant.MakeInt64(int64(q.PT_R13))}, + "PT_R14": {"untyped int", constant.MakeInt64(int64(q.PT_R14))}, + "PT_R15": {"untyped int", constant.MakeInt64(int64(q.PT_R15))}, + "PT_R16": {"untyped int", constant.MakeInt64(int64(q.PT_R16))}, + "PT_R17": {"untyped int", constant.MakeInt64(int64(q.PT_R17))}, + "PT_R18": {"untyped int", constant.MakeInt64(int64(q.PT_R18))}, + "PT_R19": {"untyped int", constant.MakeInt64(int64(q.PT_R19))}, + "PT_R2": {"untyped int", constant.MakeInt64(int64(q.PT_R2))}, + "PT_R20": {"untyped int", constant.MakeInt64(int64(q.PT_R20))}, + "PT_R21": {"untyped int", constant.MakeInt64(int64(q.PT_R21))}, + "PT_R22": {"untyped int", constant.MakeInt64(int64(q.PT_R22))}, + "PT_R23": {"untyped int", constant.MakeInt64(int64(q.PT_R23))}, + "PT_R24": {"untyped int", constant.MakeInt64(int64(q.PT_R24))}, + "PT_R25": {"untyped int", constant.MakeInt64(int64(q.PT_R25))}, + "PT_R26": {"untyped int", constant.MakeInt64(int64(q.PT_R26))}, + "PT_R27": {"untyped int", constant.MakeInt64(int64(q.PT_R27))}, + "PT_R28": {"untyped int", constant.MakeInt64(int64(q.PT_R28))}, + "PT_R29": {"untyped int", constant.MakeInt64(int64(q.PT_R29))}, + "PT_R3": {"untyped int", constant.MakeInt64(int64(q.PT_R3))}, + "PT_R30": {"untyped int", constant.MakeInt64(int64(q.PT_R30))}, + "PT_R31": {"untyped int", constant.MakeInt64(int64(q.PT_R31))}, + "PT_R4": {"untyped int", constant.MakeInt64(int64(q.PT_R4))}, + "PT_R5": {"untyped int", constant.MakeInt64(int64(q.PT_R5))}, + "PT_R6": {"untyped int", constant.MakeInt64(int64(q.PT_R6))}, + "PT_R7": {"untyped int", constant.MakeInt64(int64(q.PT_R7))}, + "PT_R8": {"untyped int", constant.MakeInt64(int64(q.PT_R8))}, + "PT_R9": {"untyped int", constant.MakeInt64(int64(q.PT_R9))}, + "PT_REGS_COUNT": {"untyped int", constant.MakeInt64(int64(q.PT_REGS_COUNT))}, + "PT_RESULT": {"untyped int", constant.MakeInt64(int64(q.PT_RESULT))}, + "PT_SOFTE": {"untyped int", constant.MakeInt64(int64(q.PT_SOFTE))}, + "PT_TRAP": {"untyped int", constant.MakeInt64(int64(q.PT_TRAP))}, + "PT_VR0": {"untyped int", constant.MakeInt64(int64(q.PT_VR0))}, + "PT_VRSAVE": {"untyped int", constant.MakeInt64(int64(q.PT_VRSAVE))}, + "PT_VSCR": {"untyped int", constant.MakeInt64(int64(q.PT_VSCR))}, + "PT_VSR0": {"untyped int", constant.MakeInt64(int64(q.PT_VSR0))}, + "PT_VSR31": {"untyped int", constant.MakeInt64(int64(q.PT_VSR31))}, + "PT_XER": {"untyped int", constant.MakeInt64(int64(q.PT_XER))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_MAX_PACING_RATE": {"untyped int", constant.MakeInt64(int64(q.SO_MAX_PACING_RATE))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_BDFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_BDFLUSH))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FINIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_FINIT_MODULE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_FTIME))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_GTTY": {"untyped int", constant.MakeInt64(int64(q.SYS_GTTY))}, + "SYS_IDLE": {"untyped int", constant.MakeInt64(int64(q.SYS_IDLE))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPERM": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPERM))}, + "SYS_IOPL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IPC": {"untyped int", constant.MakeInt64(int64(q.SYS_IPC))}, + "SYS_KCMP": {"untyped int", constant.MakeInt64(int64(q.SYS_KCMP))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_LOCK))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODIFY_LDT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODIFY_LDT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MPX": {"untyped int", constant.MakeInt64(int64(q.SYS_MPX))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MULTIPLEXER": {"untyped int", constant.MakeInt64(int64(q.SYS_MULTIPLEXER))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NEWFSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NEWFSTATAT))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_NICE": {"untyped int", constant.MakeInt64(int64(q.SYS_NICE))}, + "SYS_OLDFSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDFSTAT))}, + "SYS_OLDLSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDLSTAT))}, + "SYS_OLDOLDUNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDOLDUNAME))}, + "SYS_OLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDSTAT))}, + "SYS_OLDUNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDUNAME))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PCICONFIG_IOBASE": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_IOBASE))}, + "SYS_PCICONFIG_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_READ))}, + "SYS_PCICONFIG_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_WRITE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PROF": {"untyped int", constant.MakeInt64(int64(q.SYS_PROF))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_READDIR))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECV": {"untyped int", constant.MakeInt64(int64(q.SYS_RECV))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RTAS": {"untyped int", constant.MakeInt64(int64(q.SYS_RTAS))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SEND))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SGETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SGETMASK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNAL))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETCALL))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_SPU_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPU_CREATE))}, + "SYS_SPU_RUN": {"untyped int", constant.MakeInt64(int64(q.SYS_SPU_RUN))}, + "SYS_SSETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSETMASK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STIME": {"untyped int", constant.MakeInt64(int64(q.SYS_STIME))}, + "SYS_STTY": {"untyped int", constant.MakeInt64(int64(q.SYS_STTY))}, + "SYS_SUBPAGE_PROT": {"untyped int", constant.MakeInt64(int64(q.SYS_SUBPAGE_PROT))}, + "SYS_SWAPCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCONTEXT))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE2": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE2))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_SYS_DEBUG_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYS_DEBUG_SETCONTEXT))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TUXCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_TUXCALL))}, + "SYS_UGETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_UGETRLIMIT))}, + "SYS_ULIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_ULIMIT))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VM86": {"untyped int", constant.MakeInt64(int64(q.SYS_VM86))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITPID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITPID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LLSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS__LLSEEK))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETC": {"untyped int", constant.MakeInt64(int64(q.TIOCGETC))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGETP": {"untyped int", constant.MakeInt64(int64(q.TIOCGETP))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCGLTC))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_LOOP": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LOOP))}, + "TIOCM_OUT1": {"untyped int", constant.MakeInt64(int64(q.TIOCM_OUT1))}, + "TIOCM_OUT2": {"untyped int", constant.MakeInt64(int64(q.TIOCM_OUT2))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETC": {"untyped int", constant.MakeInt64(int64(q.TIOCSETC))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETN": {"untyped int", constant.MakeInt64(int64(q.TIOCSETN))}, + "TIOCSETP": {"untyped int", constant.MakeInt64(int64(q.TIOCSETP))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCSLTC))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_linux_ppc64le.go b/pkg/syscall/go123_export_linux_ppc64le.go new file mode 100755 index 00000000..1a260ca2 --- /dev/null +++ b/pkg/syscall/go123_export_linux_ppc64le.go @@ -0,0 +1,2539 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/runtime/syscall": "syscall", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Ioperm": reflect.ValueOf(q.Ioperm), + "Iopl": reflect.ValueOf(q.Iopl), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VSOCK": {"untyped int", constant.MakeInt64(int64(q.AF_VSOCK))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PRP))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_802_1Q_VLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_802_1Q_VLAN))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BONDING": {"untyped int", constant.MakeInt64(int64(q.IFF_BONDING))}, + "IFF_BRIDGE_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_BRIDGE_PORT))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DISABLE_NETPOLL": {"untyped int", constant.MakeInt64(int64(q.IFF_DISABLE_NETPOLL))}, + "IFF_DONT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_DONT_BRIDGE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_EBRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFF_EBRIDGE))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_ISATAP": {"untyped int", constant.MakeInt64(int64(q.IFF_ISATAP))}, + "IFF_LIVE_ADDR_CHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_LIVE_ADDR_CHANGE))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MACVLAN": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN))}, + "IFF_MACVLAN_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_MACVLAN_PORT))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MASTER_8023AD": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_8023AD))}, + "IFF_MASTER_ALB": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ALB))}, + "IFF_MASTER_ARPMON": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER_ARPMON))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_OVS_DATAPATH": {"untyped int", constant.MakeInt64(int64(q.IFF_OVS_DATAPATH))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_SLAVE_INACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_INACTIVE))}, + "IFF_SLAVE_NEEDARP": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE_NEEDARP))}, + "IFF_SUPP_NOFCS": {"untyped int", constant.MakeInt64(int64(q.IFF_SUPP_NOFCS))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TEAM_PORT": {"untyped int", constant.MakeInt64(int64(q.IFF_TEAM_PORT))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_TX_SKB_SHARING": {"untyped int", constant.MakeInt64(int64(q.IFF_TX_SKB_SHARING))}, + "IFF_UNICAST_FLT": {"untyped int", constant.MakeInt64(int64(q.IFF_UNICAST_FLT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFF_WAN_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFF_WAN_HDLC))}, + "IFF_XMIT_DST_RELEASE": {"untyped int", constant.MakeInt64(int64(q.IFF_XMIT_DST_RELEASE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_BEETPH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BEETPH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_HUGE_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_MASK))}, + "MAP_HUGE_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_SHIFT))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TMPFILE": {"untyped int", constant.MakeInt64(int64(q.O_TMPFILE))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_SAO": {"untyped int", constant.MakeInt64(int64(q.PROT_SAO))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETEVRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVRREGS))}, + "PTRACE_GETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETFPREGS))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGS64": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS64))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_GETVRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETVRREGS))}, + "PTRACE_GETVSRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETVSRREGS))}, + "PTRACE_GET_DEBUGREG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_DEBUGREG))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETEVRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETEVRREGS))}, + "PTRACE_SETFPREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETFPREGS))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGS64": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS64))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SETVRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETVRREGS))}, + "PTRACE_SETVSRREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETVSRREGS))}, + "PTRACE_SET_DEBUGREG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SET_DEBUGREG))}, + "PTRACE_SINGLEBLOCK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLEBLOCK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_CCR": {"untyped int", constant.MakeInt64(int64(q.PT_CCR))}, + "PT_CTR": {"untyped int", constant.MakeInt64(int64(q.PT_CTR))}, + "PT_DAR": {"untyped int", constant.MakeInt64(int64(q.PT_DAR))}, + "PT_DSCR": {"untyped int", constant.MakeInt64(int64(q.PT_DSCR))}, + "PT_DSISR": {"untyped int", constant.MakeInt64(int64(q.PT_DSISR))}, + "PT_FPR0": {"untyped int", constant.MakeInt64(int64(q.PT_FPR0))}, + "PT_FPSCR": {"untyped int", constant.MakeInt64(int64(q.PT_FPSCR))}, + "PT_LNK": {"untyped int", constant.MakeInt64(int64(q.PT_LNK))}, + "PT_MSR": {"untyped int", constant.MakeInt64(int64(q.PT_MSR))}, + "PT_NIP": {"untyped int", constant.MakeInt64(int64(q.PT_NIP))}, + "PT_ORIG_R3": {"untyped int", constant.MakeInt64(int64(q.PT_ORIG_R3))}, + "PT_R0": {"untyped int", constant.MakeInt64(int64(q.PT_R0))}, + "PT_R1": {"untyped int", constant.MakeInt64(int64(q.PT_R1))}, + "PT_R10": {"untyped int", constant.MakeInt64(int64(q.PT_R10))}, + "PT_R11": {"untyped int", constant.MakeInt64(int64(q.PT_R11))}, + "PT_R12": {"untyped int", constant.MakeInt64(int64(q.PT_R12))}, + "PT_R13": {"untyped int", constant.MakeInt64(int64(q.PT_R13))}, + "PT_R14": {"untyped int", constant.MakeInt64(int64(q.PT_R14))}, + "PT_R15": {"untyped int", constant.MakeInt64(int64(q.PT_R15))}, + "PT_R16": {"untyped int", constant.MakeInt64(int64(q.PT_R16))}, + "PT_R17": {"untyped int", constant.MakeInt64(int64(q.PT_R17))}, + "PT_R18": {"untyped int", constant.MakeInt64(int64(q.PT_R18))}, + "PT_R19": {"untyped int", constant.MakeInt64(int64(q.PT_R19))}, + "PT_R2": {"untyped int", constant.MakeInt64(int64(q.PT_R2))}, + "PT_R20": {"untyped int", constant.MakeInt64(int64(q.PT_R20))}, + "PT_R21": {"untyped int", constant.MakeInt64(int64(q.PT_R21))}, + "PT_R22": {"untyped int", constant.MakeInt64(int64(q.PT_R22))}, + "PT_R23": {"untyped int", constant.MakeInt64(int64(q.PT_R23))}, + "PT_R24": {"untyped int", constant.MakeInt64(int64(q.PT_R24))}, + "PT_R25": {"untyped int", constant.MakeInt64(int64(q.PT_R25))}, + "PT_R26": {"untyped int", constant.MakeInt64(int64(q.PT_R26))}, + "PT_R27": {"untyped int", constant.MakeInt64(int64(q.PT_R27))}, + "PT_R28": {"untyped int", constant.MakeInt64(int64(q.PT_R28))}, + "PT_R29": {"untyped int", constant.MakeInt64(int64(q.PT_R29))}, + "PT_R3": {"untyped int", constant.MakeInt64(int64(q.PT_R3))}, + "PT_R30": {"untyped int", constant.MakeInt64(int64(q.PT_R30))}, + "PT_R31": {"untyped int", constant.MakeInt64(int64(q.PT_R31))}, + "PT_R4": {"untyped int", constant.MakeInt64(int64(q.PT_R4))}, + "PT_R5": {"untyped int", constant.MakeInt64(int64(q.PT_R5))}, + "PT_R6": {"untyped int", constant.MakeInt64(int64(q.PT_R6))}, + "PT_R7": {"untyped int", constant.MakeInt64(int64(q.PT_R7))}, + "PT_R8": {"untyped int", constant.MakeInt64(int64(q.PT_R8))}, + "PT_R9": {"untyped int", constant.MakeInt64(int64(q.PT_R9))}, + "PT_REGS_COUNT": {"untyped int", constant.MakeInt64(int64(q.PT_REGS_COUNT))}, + "PT_RESULT": {"untyped int", constant.MakeInt64(int64(q.PT_RESULT))}, + "PT_SOFTE": {"untyped int", constant.MakeInt64(int64(q.PT_SOFTE))}, + "PT_TRAP": {"untyped int", constant.MakeInt64(int64(q.PT_TRAP))}, + "PT_VR0": {"untyped int", constant.MakeInt64(int64(q.PT_VR0))}, + "PT_VRSAVE": {"untyped int", constant.MakeInt64(int64(q.PT_VRSAVE))}, + "PT_VSCR": {"untyped int", constant.MakeInt64(int64(q.PT_VSCR))}, + "PT_VSR0": {"untyped int", constant.MakeInt64(int64(q.PT_VSR0))}, + "PT_VSR31": {"untyped int", constant.MakeInt64(int64(q.PT_VSR31))}, + "PT_XER": {"untyped int", constant.MakeInt64(int64(q.PT_XER))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_MAX_PACING_RATE": {"untyped int", constant.MakeInt64(int64(q.SO_MAX_PACING_RATE))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_BDFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_BDFLUSH))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FINIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_FINIT_MODULE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_FTIME))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_GTTY": {"untyped int", constant.MakeInt64(int64(q.SYS_GTTY))}, + "SYS_IDLE": {"untyped int", constant.MakeInt64(int64(q.SYS_IDLE))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPERM": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPERM))}, + "SYS_IOPL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IPC": {"untyped int", constant.MakeInt64(int64(q.SYS_IPC))}, + "SYS_KCMP": {"untyped int", constant.MakeInt64(int64(q.SYS_KCMP))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_LOCK))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODIFY_LDT": {"untyped int", constant.MakeInt64(int64(q.SYS_MODIFY_LDT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MPX": {"untyped int", constant.MakeInt64(int64(q.SYS_MPX))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MULTIPLEXER": {"untyped int", constant.MakeInt64(int64(q.SYS_MULTIPLEXER))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NEWFSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NEWFSTATAT))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_NICE": {"untyped int", constant.MakeInt64(int64(q.SYS_NICE))}, + "SYS_OLDFSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDFSTAT))}, + "SYS_OLDLSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDLSTAT))}, + "SYS_OLDOLDUNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDOLDUNAME))}, + "SYS_OLDSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDSTAT))}, + "SYS_OLDUNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_OLDUNAME))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PCICONFIG_IOBASE": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_IOBASE))}, + "SYS_PCICONFIG_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_READ))}, + "SYS_PCICONFIG_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PCICONFIG_WRITE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PROF": {"untyped int", constant.MakeInt64(int64(q.SYS_PROF))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_READDIR))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECV": {"untyped int", constant.MakeInt64(int64(q.SYS_RECV))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RTAS": {"untyped int", constant.MakeInt64(int64(q.SYS_RTAS))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SEND))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SGETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SGETMASK))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNAL))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETCALL))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_SPU_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPU_CREATE))}, + "SYS_SPU_RUN": {"untyped int", constant.MakeInt64(int64(q.SYS_SPU_RUN))}, + "SYS_SSETMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSETMASK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_STIME": {"untyped int", constant.MakeInt64(int64(q.SYS_STIME))}, + "SYS_STTY": {"untyped int", constant.MakeInt64(int64(q.SYS_STTY))}, + "SYS_SUBPAGE_PROT": {"untyped int", constant.MakeInt64(int64(q.SYS_SUBPAGE_PROT))}, + "SYS_SWAPCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCONTEXT))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE2": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE2))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_SYS_DEBUG_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYS_DEBUG_SETCONTEXT))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIME))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_TUXCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_TUXCALL))}, + "SYS_UGETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_UGETRLIMIT))}, + "SYS_ULIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_ULIMIT))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VM86": {"untyped int", constant.MakeInt64(int64(q.SYS_VM86))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WAITPID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITPID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LLSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS__LLSEEK))}, + "SYS__NEWSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS__NEWSELECT))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_COOKIE_IN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_IN_ALWAYS))}, + "TCP_COOKIE_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MAX))}, + "TCP_COOKIE_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MIN))}, + "TCP_COOKIE_OUT_NEVER": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_OUT_NEVER))}, + "TCP_COOKIE_PAIR_SIZE": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_PAIR_SIZE))}, + "TCP_COOKIE_TRANSACTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_TRANSACTIONS))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_MSS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DEFAULT))}, + "TCP_MSS_DESIRED": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DESIRED))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUEUE_SEQ": {"untyped int", constant.MakeInt64(int64(q.TCP_QUEUE_SEQ))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_REPAIR": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR))}, + "TCP_REPAIR_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OPTIONS))}, + "TCP_REPAIR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_QUEUE))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_S_DATA_IN": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_IN))}, + "TCP_S_DATA_OUT": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_OUT))}, + "TCP_THIN_DUPACK": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_DUPACK))}, + "TCP_THIN_LINEAR_TIMEOUTS": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_LINEAR_TIMEOUTS))}, + "TCP_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_TIMESTAMP))}, + "TCP_USER_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_USER_TIMEOUT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETC": {"untyped int", constant.MakeInt64(int64(q.TIOCGETC))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGETP": {"untyped int", constant.MakeInt64(int64(q.TIOCGETP))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCGLTC))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_LOOP": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LOOP))}, + "TIOCM_OUT1": {"untyped int", constant.MakeInt64(int64(q.TIOCM_OUT1))}, + "TIOCM_OUT2": {"untyped int", constant.MakeInt64(int64(q.TIOCM_OUT2))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETC": {"untyped int", constant.MakeInt64(int64(q.TIOCSETC))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETN": {"untyped int", constant.MakeInt64(int64(q.TIOCSETN))}, + "TIOCSETP": {"untyped int", constant.MakeInt64(int64(q.TIOCSETP))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCSLTC))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_linux_riscv64.go b/pkg/syscall/go123_export_linux_riscv64.go new file mode 100755 index 00000000..a29518a4 --- /dev/null +++ b/pkg/syscall/go123_export_linux_riscv64.go @@ -0,0 +1,2435 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/runtime/syscall": "syscall", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatat": reflect.ValueOf(q.Fstatat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IB": {"untyped int", constant.MakeInt64(int64(q.AF_IB))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KCM": {"untyped int", constant.MakeInt64(int64(q.AF_KCM))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VSOCK": {"untyped int", constant.MakeInt64(int64(q.AF_VSOCK))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_6LOWPAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_6LOWPAN))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LL_OFF": {"untyped int", constant.MakeInt64(int64(q.BPF_LL_OFF))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_NET_OFF": {"untyped int", constant.MakeInt64(int64(q.BPF_NET_OFF))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLEXCLUSIVE": {"untyped int", constant.MakeInt64(int64(q.EPOLLEXCLUSIVE))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_80221": {"untyped int", constant.MakeInt64(int64(q.ETH_P_80221))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOPBACK))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PRP))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "ETH_P_XDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_XDSA))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OFD_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_OFD_GETLK))}, + "F_OFD_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_OFD_SETLK))}, + "F_OFD_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_OFD_SETLKW))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_MANAGETEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IFA_F_MANAGETEMPADDR))}, + "IFA_F_MCAUTOJOIN": {"untyped int", constant.MakeInt64(int64(q.IFA_F_MCAUTOJOIN))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_NOPREFIXROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NOPREFIXROUTE))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_STABLE_PRIVACY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_STABLE_PRIVACY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_BEETPH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BEETPH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IPV6_HDRINCL))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_INTERFACE))}, + "IPV6_PMTUDISC_OMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_OMIT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BIND_ADDRESS_NO_PORT": {"untyped int", constant.MakeInt64(int64(q.IP_BIND_ADDRESS_NO_PORT))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IP_CHECKSUM))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_NODEFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_NODEFRAG))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_INTERFACE))}, + "IP_PMTUDISC_OMIT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_OMIT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_HUGE_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_MASK))}, + "MAP_HUGE_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_SHIFT))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MCL_ONFAULT": {"untyped int", constant.MakeInt64(int64(q.MCL_ONFAULT))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_BATCH": {"untyped int", constant.MakeInt64(int64(q.MSG_BATCH))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_LAZYTIME": {"untyped int", constant.MakeInt64(int64(q.MS_LAZYTIME))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TMPFILE": {"untyped int", constant.MakeInt64(int64(q.O_TMPFILE))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_QM": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_QM))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_KERNEL": {"untyped int", constant.MakeInt64(int64(q.PACKET_KERNEL))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_QDISC_BYPASS": {"untyped int", constant.MakeInt64(int64(q.PACKET_QDISC_BYPASS))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_USER": {"untyped int", constant.MakeInt64(int64(q.PACKET_USER))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_FP_MODE_FR": {"untyped int", constant.MakeInt64(int64(q.PR_FP_MODE_FR))}, + "PR_FP_MODE_FRE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_MODE_FRE))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_FP_MODE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FP_MODE))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_THP_DISABLE))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_MPX_DISABLE_MANAGEMENT": {"untyped int", constant.MakeInt64(int64(q.PR_MPX_DISABLE_MANAGEMENT))}, + "PR_MPX_ENABLE_MANAGEMENT": {"untyped int", constant.MakeInt64(int64(q.PR_MPX_ENABLE_MANAGEMENT))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_FP_MODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FP_MODE))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_MAP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_MAP))}, + "PR_SET_MM_MAP_SIZE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_MAP_SIZE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_THP_DISABLE))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CC_ALGO": {"untyped int", constant.MakeInt64(int64(q.RTAX_CC_ALGO))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELNSID": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNSID))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETNSID": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNSID))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWNSID": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNSID))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_OFFLOAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BABEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BABEL))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ALG": {"untyped int", constant.MakeInt64(int64(q.SOL_ALG))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.SOL_BLUETOOTH))}, + "SOL_CAIF": {"untyped int", constant.MakeInt64(int64(q.SOL_CAIF))}, + "SOL_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOL_DCCP))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_IUCV": {"untyped int", constant.MakeInt64(int64(q.SOL_IUCV))}, + "SOL_KCM": {"untyped int", constant.MakeInt64(int64(q.SOL_KCM))}, + "SOL_LLC": {"untyped int", constant.MakeInt64(int64(q.SOL_LLC))}, + "SOL_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.SOL_NETBEUI))}, + "SOL_NETLINK": {"untyped int", constant.MakeInt64(int64(q.SOL_NETLINK))}, + "SOL_NFC": {"untyped int", constant.MakeInt64(int64(q.SOL_NFC))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_PNPIPE": {"untyped int", constant.MakeInt64(int64(q.SOL_PNPIPE))}, + "SOL_PPPOL2TP": {"untyped int", constant.MakeInt64(int64(q.SOL_PPPOL2TP))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_RDS": {"untyped int", constant.MakeInt64(int64(q.SOL_RDS))}, + "SOL_RXRPC": {"untyped int", constant.MakeInt64(int64(q.SOL_RXRPC))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_TIPC": {"untyped int", constant.MakeInt64(int64(q.SOL_TIPC))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_BPF": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_BPF))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BPF_EXTENSIONS": {"untyped int", constant.MakeInt64(int64(q.SO_BPF_EXTENSIONS))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_BPF": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_BPF))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_INCOMING_CPU": {"untyped int", constant.MakeInt64(int64(q.SO_INCOMING_CPU))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_MAX_PACING_RATE": {"untyped int", constant.MakeInt64(int64(q.SO_MAX_PACING_RATE))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_ARCH_SPECIFIC_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_ARCH_SPECIFIC_SYSCALL))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BPF": {"untyped int", constant.MakeInt64(int64(q.SYS_BPF))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXECVEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVEAT))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FINIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_FINIT_MODULE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRANDOM": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRANDOM))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_KCMP": {"untyped int", constant.MakeInt64(int64(q.SYS_KCMP))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MEMFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_MEMFD_CREATE))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAMEAT2": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT2))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETATTR))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETATTR))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.SYS_SECCOMP))}, + "SYS_SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCTL))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SEMTIMEDOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMTIMEDOP))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CC_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_CC_INFO))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_COOKIE_IN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_IN_ALWAYS))}, + "TCP_COOKIE_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MAX))}, + "TCP_COOKIE_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MIN))}, + "TCP_COOKIE_OUT_NEVER": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_OUT_NEVER))}, + "TCP_COOKIE_PAIR_SIZE": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_PAIR_SIZE))}, + "TCP_COOKIE_TRANSACTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_TRANSACTIONS))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_MSS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DEFAULT))}, + "TCP_MSS_DESIRED": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DESIRED))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOTSENT_LOWAT": {"untyped int", constant.MakeInt64(int64(q.TCP_NOTSENT_LOWAT))}, + "TCP_QUEUE_SEQ": {"untyped int", constant.MakeInt64(int64(q.TCP_QUEUE_SEQ))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_REPAIR": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR))}, + "TCP_REPAIR_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OPTIONS))}, + "TCP_REPAIR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_QUEUE))}, + "TCP_SAVED_SYN": {"untyped int", constant.MakeInt64(int64(q.TCP_SAVED_SYN))}, + "TCP_SAVE_SYN": {"untyped int", constant.MakeInt64(int64(q.TCP_SAVE_SYN))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_S_DATA_IN": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_IN))}, + "TCP_S_DATA_OUT": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_OUT))}, + "TCP_THIN_DUPACK": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_DUPACK))}, + "TCP_THIN_LINEAR_TIMEOUTS": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_LINEAR_TIMEOUTS))}, + "TCP_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_TIMESTAMP))}, + "TCP_USER_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_USER_TIMEOUT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNGETVNETLE": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETLE))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "TUNSETVNETLE": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETLE))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_linux_s390x.go b/pkg/syscall/go123_export_linux_s390x.go new file mode 100755 index 00000000..2571e6ec --- /dev/null +++ b/pkg/syscall/go123_export_linux_s390x.go @@ -0,0 +1,2553 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/runtime/syscall": "syscall", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "EpollEvent": reflect.TypeOf((*q.EpollEvent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPMreqn": reflect.TypeOf((*q.IPMreqn)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAddrmsg": reflect.TypeOf((*q.IfAddrmsg)(nil)).Elem(), + "IfInfomsg": reflect.TypeOf((*q.IfInfomsg)(nil)).Elem(), + "Inet4Pktinfo": reflect.TypeOf((*q.Inet4Pktinfo)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InotifyEvent": reflect.TypeOf((*q.InotifyEvent)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "NetlinkMessage": reflect.TypeOf((*q.NetlinkMessage)(nil)).Elem(), + "NetlinkRouteAttr": reflect.TypeOf((*q.NetlinkRouteAttr)(nil)).Elem(), + "NetlinkRouteRequest": reflect.TypeOf((*q.NetlinkRouteRequest)(nil)).Elem(), + "NlAttr": reflect.TypeOf((*q.NlAttr)(nil)).Elem(), + "NlMsgerr": reflect.TypeOf((*q.NlMsgerr)(nil)).Elem(), + "NlMsghdr": reflect.TypeOf((*q.NlMsghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "PtraceFpregs": reflect.TypeOf((*q.PtraceFpregs)(nil)).Elem(), + "PtracePer": reflect.TypeOf((*q.PtracePer)(nil)).Elem(), + "PtracePsw": reflect.TypeOf((*q.PtracePsw)(nil)).Elem(), + "PtraceRegs": reflect.TypeOf((*q.PtraceRegs)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrLinklayer": reflect.TypeOf((*q.RawSockaddrLinklayer)(nil)).Elem(), + "RawSockaddrNetlink": reflect.TypeOf((*q.RawSockaddrNetlink)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtAttr": reflect.TypeOf((*q.RtAttr)(nil)).Elem(), + "RtGenmsg": reflect.TypeOf((*q.RtGenmsg)(nil)).Elem(), + "RtMsg": reflect.TypeOf((*q.RtMsg)(nil)).Elem(), + "RtNexthop": reflect.TypeOf((*q.RtNexthop)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockFilter": reflect.TypeOf((*q.SockFilter)(nil)).Elem(), + "SockFprog": reflect.TypeOf((*q.SockFprog)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrLinklayer": reflect.TypeOf((*q.SockaddrLinklayer)(nil)).Elem(), + "SockaddrNetlink": reflect.TypeOf((*q.SockaddrNetlink)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "SysProcIDMap": reflect.TypeOf((*q.SysProcIDMap)(nil)).Elem(), + "Sysinfo_t": reflect.TypeOf((*q.Sysinfo_t)(nil)).Elem(), + "TCPInfo": reflect.TypeOf((*q.TCPInfo)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Time_t": reflect.TypeOf((*q.Time_t)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timex": reflect.TypeOf((*q.Timex)(nil)).Elem(), + "Tms": reflect.TypeOf((*q.Tms)(nil)).Elem(), + "Ucred": reflect.TypeOf((*q.Ucred)(nil)).Elem(), + "Ustat_t": reflect.TypeOf((*q.Ustat_t)(nil)).Elem(), + "Utimbuf": reflect.TypeOf((*q.Utimbuf)(nil)).Elem(), + "Utsname": reflect.TypeOf((*q.Utsname)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Acct": reflect.ValueOf(q.Acct), + "Adjtimex": reflect.ValueOf(q.Adjtimex), + "AllThreadsSyscall": reflect.ValueOf(q.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(q.AllThreadsSyscall6), + "AttachLsf": reflect.ValueOf(q.AttachLsf), + "Bind": reflect.ValueOf(q.Bind), + "BindToDevice": reflect.ValueOf(q.BindToDevice), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Creat": reflect.ValueOf(q.Creat), + "DetachLsf": reflect.ValueOf(q.DetachLsf), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Dup3": reflect.ValueOf(q.Dup3), + "Environ": reflect.ValueOf(q.Environ), + "EpollCreate": reflect.ValueOf(q.EpollCreate), + "EpollCreate1": reflect.ValueOf(q.EpollCreate1), + "EpollCtl": reflect.ValueOf(q.EpollCtl), + "EpollWait": reflect.ValueOf(q.EpollWait), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Faccessat": reflect.ValueOf(q.Faccessat), + "Fallocate": reflect.ValueOf(q.Fallocate), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchmodat": reflect.ValueOf(q.Fchmodat), + "Fchown": reflect.ValueOf(q.Fchown), + "Fchownat": reflect.ValueOf(q.Fchownat), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Fdatasync": reflect.ValueOf(q.Fdatasync), + "Flock": reflect.ValueOf(q.Flock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Futimesat": reflect.ValueOf(q.Futimesat), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(q.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(q.GetsockoptUcred), + "Gettid": reflect.ValueOf(q.Gettid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Getxattr": reflect.ValueOf(q.Getxattr), + "InotifyAddWatch": reflect.ValueOf(q.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(q.InotifyInit), + "InotifyInit1": reflect.ValueOf(q.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(q.InotifyRmWatch), + "Kill": reflect.ValueOf(q.Kill), + "Klogctl": reflect.ValueOf(q.Klogctl), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Listxattr": reflect.ValueOf(q.Listxattr), + "LsfJump": reflect.ValueOf(q.LsfJump), + "LsfSocket": reflect.ValueOf(q.LsfSocket), + "LsfStmt": reflect.ValueOf(q.LsfStmt), + "Lstat": reflect.ValueOf(q.Lstat), + "Madvise": reflect.ValueOf(q.Madvise), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkdirat": reflect.ValueOf(q.Mkdirat), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mknodat": reflect.ValueOf(q.Mknodat), + "Mlock": reflect.ValueOf(q.Mlock), + "Mlockall": reflect.ValueOf(q.Mlockall), + "Mmap": reflect.ValueOf(q.Mmap), + "Mount": reflect.ValueOf(q.Mount), + "Mprotect": reflect.ValueOf(q.Mprotect), + "Munlock": reflect.ValueOf(q.Munlock), + "Munlockall": reflect.ValueOf(q.Munlockall), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NetlinkRIB": reflect.ValueOf(q.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Openat": reflect.ValueOf(q.Openat), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(q.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(q.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(q.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pause": reflect.ValueOf(q.Pause), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "PivotRoot": reflect.ValueOf(q.PivotRoot), + "Pread": reflect.ValueOf(q.Pread), + "PtraceAttach": reflect.ValueOf(q.PtraceAttach), + "PtraceCont": reflect.ValueOf(q.PtraceCont), + "PtraceDetach": reflect.ValueOf(q.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(q.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(q.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(q.PtracePeekData), + "PtracePeekText": reflect.ValueOf(q.PtracePeekText), + "PtracePokeData": reflect.ValueOf(q.PtracePokeData), + "PtracePokeText": reflect.ValueOf(q.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(q.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(q.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(q.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(q.PtraceSyscall), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Reboot": reflect.ValueOf(q.Reboot), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Removexattr": reflect.ValueOf(q.Removexattr), + "Rename": reflect.ValueOf(q.Rename), + "Renameat": reflect.ValueOf(q.Renameat), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetLsfPromisc": reflect.ValueOf(q.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setdomainname": reflect.ValueOf(q.Setdomainname), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setfsgid": reflect.ValueOf(q.Setfsgid), + "Setfsuid": reflect.ValueOf(q.Setfsuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Sethostname": reflect.ValueOf(q.Sethostname), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setresgid": reflect.ValueOf(q.Setresgid), + "Setresuid": reflect.ValueOf(q.Setresuid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(q.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Setxattr": reflect.ValueOf(q.Setxattr), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "Splice": reflect.ValueOf(q.Splice), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "SyncFileRange": reflect.ValueOf(q.SyncFileRange), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysinfo": reflect.ValueOf(q.Sysinfo), + "Tee": reflect.ValueOf(q.Tee), + "Tgkill": reflect.ValueOf(q.Tgkill), + "Time": reflect.ValueOf(q.Time), + "Times": reflect.ValueOf(q.Times), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Uname": reflect.ValueOf(q.Uname), + "UnixCredentials": reflect.ValueOf(q.UnixCredentials), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unlinkat": reflect.ValueOf(q.Unlinkat), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Unshare": reflect.ValueOf(q.Unshare), + "Ustat": reflect.ValueOf(q.Ustat), + "Utime": reflect.ValueOf(q.Utime), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EHWPOISON": {reflect.TypeOf(q.EHWPOISON), constant.MakeInt64(int64(q.EHWPOISON))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "ERFKILL": {reflect.TypeOf(q.ERFKILL), constant.MakeInt64(int64(q.ERFKILL))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTKFLT": {reflect.TypeOf(q.SIGSTKFLT), constant.MakeInt64(int64(q.SIGSTKFLT))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGUNUSED": {reflect.TypeOf(q.SIGUNUSED), constant.MakeInt64(int64(q.SIGUNUSED))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_ALG": {"untyped int", constant.MakeInt64(int64(q.AF_ALG))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ASH": {"untyped int", constant.MakeInt64(int64(q.AF_ASH))}, + "AF_ATMPVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMPVC))}, + "AF_ATMSVC": {"untyped int", constant.MakeInt64(int64(q.AF_ATMSVC))}, + "AF_AX25": {"untyped int", constant.MakeInt64(int64(q.AF_AX25))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.AF_BRIDGE))}, + "AF_CAIF": {"untyped int", constant.MakeInt64(int64(q.AF_CAIF))}, + "AF_CAN": {"untyped int", constant.MakeInt64(int64(q.AF_CAN))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_ECONET": {"untyped int", constant.MakeInt64(int64(q.AF_ECONET))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE802154))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_IRDA": {"untyped int", constant.MakeInt64(int64(q.AF_IRDA))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.AF_IUCV))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LLC": {"untyped int", constant.MakeInt64(int64(q.AF_LLC))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.AF_NETBEUI))}, + "AF_NETLINK": {"untyped int", constant.MakeInt64(int64(q.AF_NETLINK))}, + "AF_NETROM": {"untyped int", constant.MakeInt64(int64(q.AF_NETROM))}, + "AF_NFC": {"untyped int", constant.MakeInt64(int64(q.AF_NFC))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_PHONET": {"untyped int", constant.MakeInt64(int64(q.AF_PHONET))}, + "AF_PPPOX": {"untyped int", constant.MakeInt64(int64(q.AF_PPPOX))}, + "AF_RDS": {"untyped int", constant.MakeInt64(int64(q.AF_RDS))}, + "AF_ROSE": {"untyped int", constant.MakeInt64(int64(q.AF_ROSE))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_RXRPC": {"untyped int", constant.MakeInt64(int64(q.AF_RXRPC))}, + "AF_SECURITY": {"untyped int", constant.MakeInt64(int64(q.AF_SECURITY))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TIPC": {"untyped int", constant.MakeInt64(int64(q.AF_TIPC))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_VSOCK": {"untyped int", constant.MakeInt64(int64(q.AF_VSOCK))}, + "AF_WANPIPE": {"untyped int", constant.MakeInt64(int64(q.AF_WANPIPE))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_6LOWPAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_6LOWPAN))}, + "ARPHRD_ADAPT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ADAPT))}, + "ARPHRD_APPLETLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_APPLETLK))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ASH": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ASH))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_BIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_BIF))}, + "ARPHRD_CAIF": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAIF))}, + "ARPHRD_CAN": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CAN))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_CISCO": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CISCO))}, + "ARPHRD_CSLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP))}, + "ARPHRD_CSLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CSLIP6))}, + "ARPHRD_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DDCMP))}, + "ARPHRD_DLCI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_DLCI))}, + "ARPHRD_ECONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ECONET))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_EUI64": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EUI64))}, + "ARPHRD_FCAL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCAL))}, + "ARPHRD_FCFABRIC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCFABRIC))}, + "ARPHRD_FCPL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPL))}, + "ARPHRD_FCPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FCPP))}, + "ARPHRD_FDDI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FDDI))}, + "ARPHRD_FRAD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAD))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_HIPPI": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HIPPI))}, + "ARPHRD_HWX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HWX25))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211))}, + "ARPHRD_IEEE80211_PRISM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_PRISM))}, + "ARPHRD_IEEE80211_RADIOTAP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE80211_RADIOTAP))}, + "ARPHRD_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154))}, + "ARPHRD_IEEE802154_MONITOR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802154_MONITOR))}, + "ARPHRD_IEEE802_TR": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802_TR))}, + "ARPHRD_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_INFINIBAND))}, + "ARPHRD_IP6GRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IP6GRE))}, + "ARPHRD_IPDDP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPDDP))}, + "ARPHRD_IPGRE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPGRE))}, + "ARPHRD_IRDA": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IRDA))}, + "ARPHRD_LAPB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LAPB))}, + "ARPHRD_LOCALTLK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOCALTLK))}, + "ARPHRD_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_LOOPBACK))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_NETLINK": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETLINK))}, + "ARPHRD_NETROM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NETROM))}, + "ARPHRD_NONE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_NONE))}, + "ARPHRD_PHONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET))}, + "ARPHRD_PHONET_PIPE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PHONET_PIPE))}, + "ARPHRD_PIMREG": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PIMREG))}, + "ARPHRD_PPP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PPP))}, + "ARPHRD_PRONET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_PRONET))}, + "ARPHRD_RAWHDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RAWHDLC))}, + "ARPHRD_ROSE": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ROSE))}, + "ARPHRD_RSRVD": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_RSRVD))}, + "ARPHRD_SIT": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SIT))}, + "ARPHRD_SKIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SKIP))}, + "ARPHRD_SLIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP))}, + "ARPHRD_SLIP6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_SLIP6))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "ARPHRD_TUNNEL6": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL6))}, + "ARPHRD_VOID": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_VOID))}, + "ARPHRD_X25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_X25))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B1000000": {"untyped int", constant.MakeInt64(int64(q.B1000000))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1152000": {"untyped int", constant.MakeInt64(int64(q.B1152000))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1500000": {"untyped int", constant.MakeInt64(int64(q.B1500000))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B2000000": {"untyped int", constant.MakeInt64(int64(q.B2000000))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B2500000": {"untyped int", constant.MakeInt64(int64(q.B2500000))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B3000000": {"untyped int", constant.MakeInt64(int64(q.B3000000))}, + "B3500000": {"untyped int", constant.MakeInt64(int64(q.B3500000))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4000000": {"untyped int", constant.MakeInt64(int64(q.B4000000))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B500000": {"untyped int", constant.MakeInt64(int64(q.B500000))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B576000": {"untyped int", constant.MakeInt64(int64(q.B576000))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LL_OFF": {"untyped int", constant.MakeInt64(int64(q.BPF_LL_OFF))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MOD": {"untyped int", constant.MakeInt64(int64(q.BPF_MOD))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_NET_OFF": {"untyped int", constant.MakeInt64(int64(q.BPF_NET_OFF))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BPF_XOR": {"untyped int", constant.MakeInt64(int64(q.BPF_XOR))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CHILD_CLEARTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_CLEARTID))}, + "CLONE_CHILD_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_CHILD_SETTID))}, + "CLONE_CLEAR_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_CLEAR_SIGHAND))}, + "CLONE_DETACHED": {"untyped int", constant.MakeInt64(int64(q.CLONE_DETACHED))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_INTO_CGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_INTO_CGROUP))}, + "CLONE_IO": {"untyped int", constant.MakeInt64(int64(q.CLONE_IO))}, + "CLONE_NEWCGROUP": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWCGROUP))}, + "CLONE_NEWIPC": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWIPC))}, + "CLONE_NEWNET": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNET))}, + "CLONE_NEWNS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWNS))}, + "CLONE_NEWPID": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWPID))}, + "CLONE_NEWTIME": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWTIME))}, + "CLONE_NEWUSER": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUSER))}, + "CLONE_NEWUTS": {"untyped int", constant.MakeInt64(int64(q.CLONE_NEWUTS))}, + "CLONE_PARENT": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT))}, + "CLONE_PARENT_SETTID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PARENT_SETTID))}, + "CLONE_PIDFD": {"untyped int", constant.MakeInt64(int64(q.CLONE_PIDFD))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SETTLS": {"untyped int", constant.MakeInt64(int64(q.CLONE_SETTLS))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_SYSVSEM": {"untyped int", constant.MakeInt64(int64(q.CLONE_SYSVSEM))}, + "CLONE_THREAD": {"untyped int", constant.MakeInt64(int64(q.CLONE_THREAD))}, + "CLONE_UNTRACED": {"untyped int", constant.MakeInt64(int64(q.CLONE_UNTRACED))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CSIGNAL))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "ENCODING_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.ENCODING_DEFAULT))}, + "ENCODING_FM_MARK": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_MARK))}, + "ENCODING_FM_SPACE": {"untyped int", constant.MakeInt64(int64(q.ENCODING_FM_SPACE))}, + "ENCODING_MANCHESTER": {"untyped int", constant.MakeInt64(int64(q.ENCODING_MANCHESTER))}, + "ENCODING_NRZ": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZ))}, + "ENCODING_NRZI": {"untyped int", constant.MakeInt64(int64(q.ENCODING_NRZI))}, + "EPOLLERR": {"untyped int", constant.MakeInt64(int64(q.EPOLLERR))}, + "EPOLLET": {"untyped int", constant.MakeInt64(int64(q.EPOLLET))}, + "EPOLLHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLHUP))}, + "EPOLLIN": {"untyped int", constant.MakeInt64(int64(q.EPOLLIN))}, + "EPOLLMSG": {"untyped int", constant.MakeInt64(int64(q.EPOLLMSG))}, + "EPOLLONESHOT": {"untyped int", constant.MakeInt64(int64(q.EPOLLONESHOT))}, + "EPOLLOUT": {"untyped int", constant.MakeInt64(int64(q.EPOLLOUT))}, + "EPOLLPRI": {"untyped int", constant.MakeInt64(int64(q.EPOLLPRI))}, + "EPOLLRDBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDBAND))}, + "EPOLLRDHUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDHUP))}, + "EPOLLRDNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLRDNORM))}, + "EPOLLWAKEUP": {"untyped int", constant.MakeInt64(int64(q.EPOLLWAKEUP))}, + "EPOLLWRBAND": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRBAND))}, + "EPOLLWRNORM": {"untyped int", constant.MakeInt64(int64(q.EPOLLWRNORM))}, + "EPOLL_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CLOEXEC))}, + "EPOLL_CTL_ADD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_ADD))}, + "EPOLL_CTL_DEL": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_DEL))}, + "EPOLL_CTL_MOD": {"untyped int", constant.MakeInt64(int64(q.EPOLL_CTL_MOD))}, + "ETH_P_1588": {"untyped int", constant.MakeInt64(int64(q.ETH_P_1588))}, + "ETH_P_8021AD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AD))}, + "ETH_P_8021AH": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021AH))}, + "ETH_P_8021Q": {"untyped int", constant.MakeInt64(int64(q.ETH_P_8021Q))}, + "ETH_P_80221": {"untyped int", constant.MakeInt64(int64(q.ETH_P_80221))}, + "ETH_P_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_2))}, + "ETH_P_802_3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3))}, + "ETH_P_802_3_MIN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_3_MIN))}, + "ETH_P_802_EX1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_802_EX1))}, + "ETH_P_AARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AARP))}, + "ETH_P_AF_IUCV": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AF_IUCV))}, + "ETH_P_ALL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ALL))}, + "ETH_P_AOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AOE))}, + "ETH_P_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARCNET))}, + "ETH_P_ARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ARP))}, + "ETH_P_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATALK))}, + "ETH_P_ATMFATE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMFATE))}, + "ETH_P_ATMMPOA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ATMMPOA))}, + "ETH_P_AX25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_AX25))}, + "ETH_P_BATMAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BATMAN))}, + "ETH_P_BPQ": {"untyped int", constant.MakeInt64(int64(q.ETH_P_BPQ))}, + "ETH_P_CAIF": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAIF))}, + "ETH_P_CAN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CAN))}, + "ETH_P_CANFD": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CANFD))}, + "ETH_P_CONTROL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CONTROL))}, + "ETH_P_CUST": {"untyped int", constant.MakeInt64(int64(q.ETH_P_CUST))}, + "ETH_P_DDCMP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DDCMP))}, + "ETH_P_DEC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DEC))}, + "ETH_P_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DIAG))}, + "ETH_P_DNA_DL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_DL))}, + "ETH_P_DNA_RC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RC))}, + "ETH_P_DNA_RT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DNA_RT))}, + "ETH_P_DSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_DSA))}, + "ETH_P_ECONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_ECONET))}, + "ETH_P_EDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_EDSA))}, + "ETH_P_FCOE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FCOE))}, + "ETH_P_FIP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_FIP))}, + "ETH_P_HDLC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_HDLC))}, + "ETH_P_IEEE802154": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEE802154))}, + "ETH_P_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUP))}, + "ETH_P_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IEEEPUPAT))}, + "ETH_P_IP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IP))}, + "ETH_P_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPV6))}, + "ETH_P_IPX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IPX))}, + "ETH_P_IRDA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_IRDA))}, + "ETH_P_LAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LAT))}, + "ETH_P_LINK_CTL": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LINK_CTL))}, + "ETH_P_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOCALTALK))}, + "ETH_P_LOOP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOP))}, + "ETH_P_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_LOOPBACK))}, + "ETH_P_MOBITEX": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MOBITEX))}, + "ETH_P_MPLS_MC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_MC))}, + "ETH_P_MPLS_UC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MPLS_UC))}, + "ETH_P_MVRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_MVRP))}, + "ETH_P_PAE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAE))}, + "ETH_P_PAUSE": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PAUSE))}, + "ETH_P_PHONET": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PHONET))}, + "ETH_P_PPPTALK": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPPTALK))}, + "ETH_P_PPP_DISC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_DISC))}, + "ETH_P_PPP_MP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_MP))}, + "ETH_P_PPP_SES": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PPP_SES))}, + "ETH_P_PRP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PRP))}, + "ETH_P_PUP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUP))}, + "ETH_P_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETH_P_PUPAT))}, + "ETH_P_QINQ1": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ1))}, + "ETH_P_QINQ2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ2))}, + "ETH_P_QINQ3": {"untyped int", constant.MakeInt64(int64(q.ETH_P_QINQ3))}, + "ETH_P_RARP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_RARP))}, + "ETH_P_SCA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SCA))}, + "ETH_P_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SLOW))}, + "ETH_P_SNAP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_SNAP))}, + "ETH_P_TDLS": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TDLS))}, + "ETH_P_TEB": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TEB))}, + "ETH_P_TIPC": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TIPC))}, + "ETH_P_TRAILER": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TRAILER))}, + "ETH_P_TR_802_2": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TR_802_2))}, + "ETH_P_TSN": {"untyped int", constant.MakeInt64(int64(q.ETH_P_TSN))}, + "ETH_P_WAN_PPP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WAN_PPP))}, + "ETH_P_WCCP": {"untyped int", constant.MakeInt64(int64(q.ETH_P_WCCP))}, + "ETH_P_X25": {"untyped int", constant.MakeInt64(int64(q.ETH_P_X25))}, + "ETH_P_XDSA": {"untyped int", constant.MakeInt64(int64(q.ETH_P_XDSA))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_EXLCK": {"untyped int", constant.MakeInt64(int64(q.F_EXLCK))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_GETLEASE))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN_EX))}, + "F_GETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_GETPIPE_SZ))}, + "F_GETSIG": {"untyped int", constant.MakeInt64(int64(q.F_GETSIG))}, + "F_LOCK": {"untyped int", constant.MakeInt64(int64(q.F_LOCK))}, + "F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.F_NOTIFY))}, + "F_OFD_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_OFD_GETLK))}, + "F_OFD_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_OFD_SETLK))}, + "F_OFD_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_OFD_SETLKW))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLEASE": {"untyped int", constant.MakeInt64(int64(q.F_SETLEASE))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SETOWN_EX": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN_EX))}, + "F_SETPIPE_SZ": {"untyped int", constant.MakeInt64(int64(q.F_SETPIPE_SZ))}, + "F_SETSIG": {"untyped int", constant.MakeInt64(int64(q.F_SETSIG))}, + "F_SHLCK": {"untyped int", constant.MakeInt64(int64(q.F_SHLCK))}, + "F_TEST": {"untyped int", constant.MakeInt64(int64(q.F_TEST))}, + "F_TLOCK": {"untyped int", constant.MakeInt64(int64(q.F_TLOCK))}, + "F_ULOCK": {"untyped int", constant.MakeInt64(int64(q.F_ULOCK))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMPV6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMPV6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_ADDRESS))}, + "IFA_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_ANYCAST))}, + "IFA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFA_BROADCAST))}, + "IFA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.IFA_CACHEINFO))}, + "IFA_F_DADFAILED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DADFAILED))}, + "IFA_F_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFA_F_DEPRECATED))}, + "IFA_F_HOMEADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFA_F_HOMEADDRESS))}, + "IFA_F_MANAGETEMPADDR": {"untyped int", constant.MakeInt64(int64(q.IFA_F_MANAGETEMPADDR))}, + "IFA_F_MCAUTOJOIN": {"untyped int", constant.MakeInt64(int64(q.IFA_F_MCAUTOJOIN))}, + "IFA_F_NODAD": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NODAD))}, + "IFA_F_NOPREFIXROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_NOPREFIXROUTE))}, + "IFA_F_OPTIMISTIC": {"untyped int", constant.MakeInt64(int64(q.IFA_F_OPTIMISTIC))}, + "IFA_F_PERMANENT": {"untyped int", constant.MakeInt64(int64(q.IFA_F_PERMANENT))}, + "IFA_F_SECONDARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_SECONDARY))}, + "IFA_F_STABLE_PRIVACY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_STABLE_PRIVACY))}, + "IFA_F_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TEMPORARY))}, + "IFA_F_TENTATIVE": {"untyped int", constant.MakeInt64(int64(q.IFA_F_TENTATIVE))}, + "IFA_LABEL": {"untyped int", constant.MakeInt64(int64(q.IFA_LABEL))}, + "IFA_LOCAL": {"untyped int", constant.MakeInt64(int64(q.IFA_LOCAL))}, + "IFA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFA_MAX))}, + "IFA_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFA_MULTICAST))}, + "IFA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFA_UNSPEC))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ATTACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ATTACH_QUEUE))}, + "IFF_AUTOMEDIA": {"untyped int", constant.MakeInt64(int64(q.IFF_AUTOMEDIA))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DETACH_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_DETACH_QUEUE))}, + "IFF_DORMANT": {"untyped int", constant.MakeInt64(int64(q.IFF_DORMANT))}, + "IFF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.IFF_DYNAMIC))}, + "IFF_ECHO": {"untyped int", constant.MakeInt64(int64(q.IFF_ECHO))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_LOWER_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_LOWER_UP))}, + "IFF_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFF_MASTER))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_QUEUE))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFILTER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFILTER))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NO_PI": {"untyped int", constant.MakeInt64(int64(q.IFF_NO_PI))}, + "IFF_ONE_QUEUE": {"untyped int", constant.MakeInt64(int64(q.IFF_ONE_QUEUE))}, + "IFF_PERSIST": {"untyped int", constant.MakeInt64(int64(q.IFF_PERSIST))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PORTSEL": {"untyped int", constant.MakeInt64(int64(q.IFF_PORTSEL))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SLAVE": {"untyped int", constant.MakeInt64(int64(q.IFF_SLAVE))}, + "IFF_TAP": {"untyped int", constant.MakeInt64(int64(q.IFF_TAP))}, + "IFF_TUN": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN))}, + "IFF_TUN_EXCL": {"untyped int", constant.MakeInt64(int64(q.IFF_TUN_EXCL))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.IFF_VNET_HDR))}, + "IFF_VOLATILE": {"untyped int", constant.MakeInt64(int64(q.IFF_VOLATILE))}, + "IFLA_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_ADDRESS))}, + "IFLA_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFLA_BROADCAST))}, + "IFLA_COST": {"untyped int", constant.MakeInt64(int64(q.IFLA_COST))}, + "IFLA_IFALIAS": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFALIAS))}, + "IFLA_IFNAME": {"untyped int", constant.MakeInt64(int64(q.IFLA_IFNAME))}, + "IFLA_LINK": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINK))}, + "IFLA_LINKINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKINFO))}, + "IFLA_LINKMODE": {"untyped int", constant.MakeInt64(int64(q.IFLA_LINKMODE))}, + "IFLA_MAP": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAP))}, + "IFLA_MASTER": {"untyped int", constant.MakeInt64(int64(q.IFLA_MASTER))}, + "IFLA_MAX": {"untyped int", constant.MakeInt64(int64(q.IFLA_MAX))}, + "IFLA_MTU": {"untyped int", constant.MakeInt64(int64(q.IFLA_MTU))}, + "IFLA_NET_NS_PID": {"untyped int", constant.MakeInt64(int64(q.IFLA_NET_NS_PID))}, + "IFLA_OPERSTATE": {"untyped int", constant.MakeInt64(int64(q.IFLA_OPERSTATE))}, + "IFLA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.IFLA_PRIORITY))}, + "IFLA_PROTINFO": {"untyped int", constant.MakeInt64(int64(q.IFLA_PROTINFO))}, + "IFLA_QDISC": {"untyped int", constant.MakeInt64(int64(q.IFLA_QDISC))}, + "IFLA_STATS": {"untyped int", constant.MakeInt64(int64(q.IFLA_STATS))}, + "IFLA_TXQLEN": {"untyped int", constant.MakeInt64(int64(q.IFLA_TXQLEN))}, + "IFLA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.IFLA_UNSPEC))}, + "IFLA_WEIGHT": {"untyped int", constant.MakeInt64(int64(q.IFLA_WEIGHT))}, + "IFLA_WIRELESS": {"untyped int", constant.MakeInt64(int64(q.IFLA_WIRELESS))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_ACCESS": {"untyped int", constant.MakeInt64(int64(q.IN_ACCESS))}, + "IN_ALL_EVENTS": {"untyped int", constant.MakeInt64(int64(q.IN_ALL_EVENTS))}, + "IN_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.IN_ATTRIB))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.IN_CLOEXEC))}, + "IN_CLOSE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE))}, + "IN_CLOSE_NOWRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_NOWRITE))}, + "IN_CLOSE_WRITE": {"untyped int", constant.MakeInt64(int64(q.IN_CLOSE_WRITE))}, + "IN_CREATE": {"untyped int", constant.MakeInt64(int64(q.IN_CREATE))}, + "IN_DELETE": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE))}, + "IN_DELETE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_DELETE_SELF))}, + "IN_DONT_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.IN_DONT_FOLLOW))}, + "IN_EXCL_UNLINK": {"untyped int", constant.MakeInt64(int64(q.IN_EXCL_UNLINK))}, + "IN_IGNORED": {"untyped int", constant.MakeInt64(int64(q.IN_IGNORED))}, + "IN_ISDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ISDIR))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_MASK_ADD": {"untyped int", constant.MakeInt64(int64(q.IN_MASK_ADD))}, + "IN_MODIFY": {"untyped int", constant.MakeInt64(int64(q.IN_MODIFY))}, + "IN_MOVE": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE))}, + "IN_MOVED_FROM": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_FROM))}, + "IN_MOVED_TO": {"untyped int", constant.MakeInt64(int64(q.IN_MOVED_TO))}, + "IN_MOVE_SELF": {"untyped int", constant.MakeInt64(int64(q.IN_MOVE_SELF))}, + "IN_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.IN_NONBLOCK))}, + "IN_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.IN_ONESHOT))}, + "IN_ONLYDIR": {"untyped int", constant.MakeInt64(int64(q.IN_ONLYDIR))}, + "IN_OPEN": {"untyped int", constant.MakeInt64(int64(q.IN_OPEN))}, + "IN_Q_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.IN_Q_OVERFLOW))}, + "IN_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.IN_UNMOUNT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_BEETPH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_BEETPH))}, + "IPPROTO_COMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_COMP))}, + "IPPROTO_DCCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DCCP))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MH))}, + "IPPROTO_MTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MTP))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_2292DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292DSTOPTS))}, + "IPV6_2292HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPLIMIT))}, + "IPV6_2292HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292HOPOPTS))}, + "IPV6_2292PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTINFO))}, + "IPV6_2292PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292PKTOPTIONS))}, + "IPV6_2292RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_2292RTHDR))}, + "IPV6_ADDRFORM": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADDRFORM))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_AUTHHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTHHDR))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_ANYCAST))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_ANYCAST))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU))}, + "IPV6_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IPV6_MTU_DISCOVER))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DO))}, + "IPV6_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_DONT))}, + "IPV6_PMTUDISC_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_INTERFACE))}, + "IPV6_PMTUDISC_OMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_OMIT))}, + "IPV6_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_PROBE))}, + "IPV6_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PMTUDISC_WANT))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVERR))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IPV6_ROUTER_ALERT))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_RXDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXDSTOPTS))}, + "IPV6_RXHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RXHOPOPTS))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_XFRM_POLICY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_FREEBIND": {"untyped int", constant.MakeInt64(int64(q.IP_FREEBIND))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSFILTER": {"untyped int", constant.MakeInt64(int64(q.IP_MSFILTER))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MTU": {"untyped int", constant.MakeInt64(int64(q.IP_MTU))}, + "IP_MTU_DISCOVER": {"untyped int", constant.MakeInt64(int64(q.IP_MTU_DISCOVER))}, + "IP_MULTICAST_ALL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_ALL))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_NODEFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_NODEFRAG))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_ORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_ORIGDSTADDR))}, + "IP_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.IP_PASSSEC))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_PKTOPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_PKTOPTIONS))}, + "IP_PMTUDISC": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC))}, + "IP_PMTUDISC_DO": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DO))}, + "IP_PMTUDISC_DONT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_DONT))}, + "IP_PMTUDISC_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_INTERFACE))}, + "IP_PMTUDISC_OMIT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_OMIT))}, + "IP_PMTUDISC_PROBE": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_PROBE))}, + "IP_PMTUDISC_WANT": {"untyped int", constant.MakeInt64(int64(q.IP_PMTUDISC_WANT))}, + "IP_RECVERR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVERR))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVORIGDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVORIGDSTADDR))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTOS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTOS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_ROUTER_ALERT": {"untyped int", constant.MakeInt64(int64(q.IP_ROUTER_ALERT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TRANSPARENT": {"untyped int", constant.MakeInt64(int64(q.IP_TRANSPARENT))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_UNICAST_IF))}, + "IP_XFRM_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_XFRM_POLICY))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IUCLC": {"untyped int", constant.MakeInt64(int64(q.IUCLC))}, + "IUTF8": {"untyped int", constant.MakeInt64(int64(q.IUTF8))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LINUX_REBOOT_CMD_CAD_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_OFF))}, + "LINUX_REBOOT_CMD_CAD_ON": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_CAD_ON))}, + "LINUX_REBOOT_CMD_HALT": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_HALT))}, + "LINUX_REBOOT_CMD_KEXEC": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_KEXEC))}, + "LINUX_REBOOT_CMD_POWER_OFF": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_POWER_OFF))}, + "LINUX_REBOOT_CMD_RESTART": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART))}, + "LINUX_REBOOT_CMD_RESTART2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_RESTART2))}, + "LINUX_REBOOT_CMD_SW_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_CMD_SW_SUSPEND))}, + "LINUX_REBOOT_MAGIC1": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC1))}, + "LINUX_REBOOT_MAGIC2": {"untyped int", constant.MakeInt64(int64(q.LINUX_REBOOT_MAGIC2))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DODUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DODUMP))}, + "MADV_DOFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DOFORK))}, + "MADV_DONTDUMP": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTDUMP))}, + "MADV_DONTFORK": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTFORK))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_HUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_HUGEPAGE))}, + "MADV_HWPOISON": {"untyped int", constant.MakeInt64(int64(q.MADV_HWPOISON))}, + "MADV_MERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_MERGEABLE))}, + "MADV_NOHUGEPAGE": {"untyped int", constant.MakeInt64(int64(q.MADV_NOHUGEPAGE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_REMOVE": {"untyped int", constant.MakeInt64(int64(q.MADV_REMOVE))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_UNMERGEABLE": {"untyped int", constant.MakeInt64(int64(q.MADV_UNMERGEABLE))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_DENYWRITE": {"untyped int", constant.MakeInt64(int64(q.MAP_DENYWRITE))}, + "MAP_EXECUTABLE": {"untyped int", constant.MakeInt64(int64(q.MAP_EXECUTABLE))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.MAP_GROWSDOWN))}, + "MAP_HUGETLB": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGETLB))}, + "MAP_HUGE_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_MASK))}, + "MAP_HUGE_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_HUGE_SHIFT))}, + "MAP_LOCKED": {"untyped int", constant.MakeInt64(int64(q.MAP_LOCKED))}, + "MAP_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.MAP_NONBLOCK))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_POPULATE": {"untyped int", constant.MakeInt64(int64(q.MAP_POPULATE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MNT_DETACH": {"untyped int", constant.MakeInt64(int64(q.MNT_DETACH))}, + "MNT_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.MNT_EXPIRE))}, + "MNT_FORCE": {"untyped int", constant.MakeInt64(int64(q.MNT_FORCE))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONFIRM": {"untyped int", constant.MakeInt64(int64(q.MSG_CONFIRM))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_ERRQUEUE": {"untyped int", constant.MakeInt64(int64(q.MSG_ERRQUEUE))}, + "MSG_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.MSG_FASTOPEN))}, + "MSG_FIN": {"untyped int", constant.MakeInt64(int64(q.MSG_FIN))}, + "MSG_MORE": {"untyped int", constant.MakeInt64(int64(q.MSG_MORE))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_PROXY": {"untyped int", constant.MakeInt64(int64(q.MSG_PROXY))}, + "MSG_RST": {"untyped int", constant.MakeInt64(int64(q.MSG_RST))}, + "MSG_SYN": {"untyped int", constant.MakeInt64(int64(q.MSG_SYN))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_TRYHARD": {"untyped int", constant.MakeInt64(int64(q.MSG_TRYHARD))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ACTIVE": {"untyped int", constant.MakeInt64(int64(q.MS_ACTIVE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_BIND": {"untyped int", constant.MakeInt64(int64(q.MS_BIND))}, + "MS_DIRSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_DIRSYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_I_VERSION": {"untyped int", constant.MakeInt64(int64(q.MS_I_VERSION))}, + "MS_KERNMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_KERNMOUNT))}, + "MS_MANDLOCK": {"untyped int", constant.MakeInt64(int64(q.MS_MANDLOCK))}, + "MS_MGC_MSK": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_MSK))}, + "MS_MGC_VAL": {"untyped int", constant.MakeInt64(int64(q.MS_MGC_VAL))}, + "MS_MOVE": {"untyped int", constant.MakeInt64(int64(q.MS_MOVE))}, + "MS_NOATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NOATIME))}, + "MS_NODEV": {"untyped int", constant.MakeInt64(int64(q.MS_NODEV))}, + "MS_NODIRATIME": {"untyped int", constant.MakeInt64(int64(q.MS_NODIRATIME))}, + "MS_NOEXEC": {"untyped int", constant.MakeInt64(int64(q.MS_NOEXEC))}, + "MS_NOSUID": {"untyped int", constant.MakeInt64(int64(q.MS_NOSUID))}, + "MS_NOUSER": {"untyped int", constant.MakeInt64(int64(q.MS_NOUSER))}, + "MS_POSIXACL": {"untyped int", constant.MakeInt64(int64(q.MS_POSIXACL))}, + "MS_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MS_PRIVATE))}, + "MS_RDONLY": {"untyped int", constant.MakeInt64(int64(q.MS_RDONLY))}, + "MS_REC": {"untyped int", constant.MakeInt64(int64(q.MS_REC))}, + "MS_RELATIME": {"untyped int", constant.MakeInt64(int64(q.MS_RELATIME))}, + "MS_REMOUNT": {"untyped int", constant.MakeInt64(int64(q.MS_REMOUNT))}, + "MS_RMT_MASK": {"untyped int", constant.MakeInt64(int64(q.MS_RMT_MASK))}, + "MS_SHARED": {"untyped int", constant.MakeInt64(int64(q.MS_SHARED))}, + "MS_SILENT": {"untyped int", constant.MakeInt64(int64(q.MS_SILENT))}, + "MS_SLAVE": {"untyped int", constant.MakeInt64(int64(q.MS_SLAVE))}, + "MS_STRICTATIME": {"untyped int", constant.MakeInt64(int64(q.MS_STRICTATIME))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "MS_SYNCHRONOUS": {"untyped int", constant.MakeInt64(int64(q.MS_SYNCHRONOUS))}, + "MS_UNBINDABLE": {"untyped int", constant.MakeInt64(int64(q.MS_UNBINDABLE))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NETLINK_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ADD_MEMBERSHIP))}, + "NETLINK_AUDIT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_AUDIT))}, + "NETLINK_BROADCAST_ERROR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_BROADCAST_ERROR))}, + "NETLINK_CAP_ACK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CAP_ACK))}, + "NETLINK_CONNECTOR": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CONNECTOR))}, + "NETLINK_CRYPTO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_CRYPTO))}, + "NETLINK_DNRTMSG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DNRTMSG))}, + "NETLINK_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_DROP_MEMBERSHIP))}, + "NETLINK_ECRYPTFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ECRYPTFS))}, + "NETLINK_FIB_LOOKUP": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIB_LOOKUP))}, + "NETLINK_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.NETLINK_FIREWALL))}, + "NETLINK_GENERIC": {"untyped int", constant.MakeInt64(int64(q.NETLINK_GENERIC))}, + "NETLINK_INET_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_INET_DIAG))}, + "NETLINK_IP6_FW": {"untyped int", constant.MakeInt64(int64(q.NETLINK_IP6_FW))}, + "NETLINK_ISCSI": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ISCSI))}, + "NETLINK_KOBJECT_UEVENT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_KOBJECT_UEVENT))}, + "NETLINK_LISTEN_ALL_NSID": {"untyped int", constant.MakeInt64(int64(q.NETLINK_LISTEN_ALL_NSID))}, + "NETLINK_LIST_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_LIST_MEMBERSHIPS))}, + "NETLINK_NETFILTER": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NETFILTER))}, + "NETLINK_NFLOG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NFLOG))}, + "NETLINK_NO_ENOBUFS": {"untyped int", constant.MakeInt64(int64(q.NETLINK_NO_ENOBUFS))}, + "NETLINK_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.NETLINK_PKTINFO))}, + "NETLINK_RDMA": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RDMA))}, + "NETLINK_ROUTE": {"untyped int", constant.MakeInt64(int64(q.NETLINK_ROUTE))}, + "NETLINK_RX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_RX_RING))}, + "NETLINK_SCSITRANSPORT": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SCSITRANSPORT))}, + "NETLINK_SELINUX": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SELINUX))}, + "NETLINK_SOCK_DIAG": {"untyped int", constant.MakeInt64(int64(q.NETLINK_SOCK_DIAG))}, + "NETLINK_TX_RING": {"untyped int", constant.MakeInt64(int64(q.NETLINK_TX_RING))}, + "NETLINK_UNUSED": {"untyped int", constant.MakeInt64(int64(q.NETLINK_UNUSED))}, + "NETLINK_USERSOCK": {"untyped int", constant.MakeInt64(int64(q.NETLINK_USERSOCK))}, + "NETLINK_XFRM": {"untyped int", constant.MakeInt64(int64(q.NETLINK_XFRM))}, + "NLA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLA_ALIGNTO))}, + "NLA_F_NESTED": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NESTED))}, + "NLA_F_NET_BYTEORDER": {"untyped int", constant.MakeInt64(int64(q.NLA_F_NET_BYTEORDER))}, + "NLA_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLA_HDRLEN))}, + "NLMSG_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ALIGNTO))}, + "NLMSG_DONE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_DONE))}, + "NLMSG_ERROR": {"untyped int", constant.MakeInt64(int64(q.NLMSG_ERROR))}, + "NLMSG_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_HDRLEN))}, + "NLMSG_MIN_TYPE": {"untyped int", constant.MakeInt64(int64(q.NLMSG_MIN_TYPE))}, + "NLMSG_NOOP": {"untyped int", constant.MakeInt64(int64(q.NLMSG_NOOP))}, + "NLMSG_OVERRUN": {"untyped int", constant.MakeInt64(int64(q.NLMSG_OVERRUN))}, + "NLM_F_ACK": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ACK))}, + "NLM_F_APPEND": {"untyped int", constant.MakeInt64(int64(q.NLM_F_APPEND))}, + "NLM_F_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ATOMIC))}, + "NLM_F_CREATE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_CREATE))}, + "NLM_F_DUMP": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP))}, + "NLM_F_DUMP_FILTERED": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_FILTERED))}, + "NLM_F_DUMP_INTR": {"untyped int", constant.MakeInt64(int64(q.NLM_F_DUMP_INTR))}, + "NLM_F_ECHO": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ECHO))}, + "NLM_F_EXCL": {"untyped int", constant.MakeInt64(int64(q.NLM_F_EXCL))}, + "NLM_F_MATCH": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MATCH))}, + "NLM_F_MULTI": {"untyped int", constant.MakeInt64(int64(q.NLM_F_MULTI))}, + "NLM_F_REPLACE": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REPLACE))}, + "NLM_F_REQUEST": {"untyped int", constant.MakeInt64(int64(q.NLM_F_REQUEST))}, + "NLM_F_ROOT": {"untyped int", constant.MakeInt64(int64(q.NLM_F_ROOT))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "OLCUC": {"untyped int", constant.MakeInt64(int64(q.OLCUC))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOATIME": {"untyped int", constant.MakeInt64(int64(q.O_NOATIME))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_PATH": {"untyped int", constant.MakeInt64(int64(q.O_PATH))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TMPFILE": {"untyped int", constant.MakeInt64(int64(q.O_TMPFILE))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PACKET_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_ADD_MEMBERSHIP))}, + "PACKET_AUXDATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_AUXDATA))}, + "PACKET_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_BROADCAST))}, + "PACKET_COPY_THRESH": {"untyped int", constant.MakeInt64(int64(q.PACKET_COPY_THRESH))}, + "PACKET_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.PACKET_DROP_MEMBERSHIP))}, + "PACKET_FANOUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT))}, + "PACKET_FANOUT_CBPF": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CBPF))}, + "PACKET_FANOUT_CPU": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_CPU))}, + "PACKET_FANOUT_DATA": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_DATA))}, + "PACKET_FANOUT_EBPF": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_EBPF))}, + "PACKET_FANOUT_FLAG_DEFRAG": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_DEFRAG))}, + "PACKET_FANOUT_FLAG_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_FLAG_ROLLOVER))}, + "PACKET_FANOUT_HASH": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_HASH))}, + "PACKET_FANOUT_LB": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_LB))}, + "PACKET_FANOUT_QM": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_QM))}, + "PACKET_FANOUT_RND": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_RND))}, + "PACKET_FANOUT_ROLLOVER": {"untyped int", constant.MakeInt64(int64(q.PACKET_FANOUT_ROLLOVER))}, + "PACKET_FASTROUTE": {"untyped int", constant.MakeInt64(int64(q.PACKET_FASTROUTE))}, + "PACKET_HDRLEN": {"untyped int", constant.MakeInt64(int64(q.PACKET_HDRLEN))}, + "PACKET_HOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_HOST))}, + "PACKET_KERNEL": {"untyped int", constant.MakeInt64(int64(q.PACKET_KERNEL))}, + "PACKET_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOOPBACK))}, + "PACKET_LOSS": {"untyped int", constant.MakeInt64(int64(q.PACKET_LOSS))}, + "PACKET_MR_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_ALLMULTI))}, + "PACKET_MR_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_MULTICAST))}, + "PACKET_MR_PROMISC": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_PROMISC))}, + "PACKET_MR_UNICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MR_UNICAST))}, + "PACKET_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.PACKET_MULTICAST))}, + "PACKET_ORIGDEV": {"untyped int", constant.MakeInt64(int64(q.PACKET_ORIGDEV))}, + "PACKET_OTHERHOST": {"untyped int", constant.MakeInt64(int64(q.PACKET_OTHERHOST))}, + "PACKET_OUTGOING": {"untyped int", constant.MakeInt64(int64(q.PACKET_OUTGOING))}, + "PACKET_QDISC_BYPASS": {"untyped int", constant.MakeInt64(int64(q.PACKET_QDISC_BYPASS))}, + "PACKET_RECV_OUTPUT": {"untyped int", constant.MakeInt64(int64(q.PACKET_RECV_OUTPUT))}, + "PACKET_RESERVE": {"untyped int", constant.MakeInt64(int64(q.PACKET_RESERVE))}, + "PACKET_ROLLOVER_STATS": {"untyped int", constant.MakeInt64(int64(q.PACKET_ROLLOVER_STATS))}, + "PACKET_RX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_RX_RING))}, + "PACKET_STATISTICS": {"untyped int", constant.MakeInt64(int64(q.PACKET_STATISTICS))}, + "PACKET_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TIMESTAMP))}, + "PACKET_TX_HAS_OFF": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_HAS_OFF))}, + "PACKET_TX_RING": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_RING))}, + "PACKET_TX_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PACKET_TX_TIMESTAMP))}, + "PACKET_USER": {"untyped int", constant.MakeInt64(int64(q.PACKET_USER))}, + "PACKET_VERSION": {"untyped int", constant.MakeInt64(int64(q.PACKET_VERSION))}, + "PACKET_VNET_HDR": {"untyped int", constant.MakeInt64(int64(q.PACKET_VNET_HDR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARITY_CRC16_PR0": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0))}, + "PARITY_CRC16_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR0_CCITT))}, + "PARITY_CRC16_PR1": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1))}, + "PARITY_CRC16_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC16_PR1_CCITT))}, + "PARITY_CRC32_PR0_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR0_CCITT))}, + "PARITY_CRC32_PR1_CCITT": {"untyped int", constant.MakeInt64(int64(q.PARITY_CRC32_PR1_CCITT))}, + "PARITY_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PARITY_DEFAULT))}, + "PARITY_NONE": {"untyped int", constant.MakeInt64(int64(q.PARITY_NONE))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_GROWSDOWN": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSDOWN))}, + "PROT_GROWSUP": {"untyped int", constant.MakeInt64(int64(q.PROT_GROWSUP))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PR_CAPBSET_DROP": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_DROP))}, + "PR_CAPBSET_READ": {"untyped int", constant.MakeInt64(int64(q.PR_CAPBSET_READ))}, + "PR_CAP_AMBIENT": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT))}, + "PR_CAP_AMBIENT_CLEAR_ALL": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT_CLEAR_ALL))}, + "PR_CAP_AMBIENT_IS_SET": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT_IS_SET))}, + "PR_CAP_AMBIENT_LOWER": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT_LOWER))}, + "PR_CAP_AMBIENT_RAISE": {"untyped int", constant.MakeInt64(int64(q.PR_CAP_AMBIENT_RAISE))}, + "PR_ENDIAN_BIG": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_BIG))}, + "PR_ENDIAN_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_LITTLE))}, + "PR_ENDIAN_PPC_LITTLE": {"untyped int", constant.MakeInt64(int64(q.PR_ENDIAN_PPC_LITTLE))}, + "PR_FPEMU_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_NOPRINT))}, + "PR_FPEMU_SIGFPE": {"untyped int", constant.MakeInt64(int64(q.PR_FPEMU_SIGFPE))}, + "PR_FP_EXC_ASYNC": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_ASYNC))}, + "PR_FP_EXC_DISABLED": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DISABLED))}, + "PR_FP_EXC_DIV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_DIV))}, + "PR_FP_EXC_INV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_INV))}, + "PR_FP_EXC_NONRECOV": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_NONRECOV))}, + "PR_FP_EXC_OVF": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_OVF))}, + "PR_FP_EXC_PRECISE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_PRECISE))}, + "PR_FP_EXC_RES": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_RES))}, + "PR_FP_EXC_SW_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_SW_ENABLE))}, + "PR_FP_EXC_UND": {"untyped int", constant.MakeInt64(int64(q.PR_FP_EXC_UND))}, + "PR_FP_MODE_FR": {"untyped int", constant.MakeInt64(int64(q.PR_FP_MODE_FR))}, + "PR_FP_MODE_FRE": {"untyped int", constant.MakeInt64(int64(q.PR_FP_MODE_FRE))}, + "PR_GET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_GET_CHILD_SUBREAPER))}, + "PR_GET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_DUMPABLE))}, + "PR_GET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_ENDIAN))}, + "PR_GET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEMU))}, + "PR_GET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FPEXC))}, + "PR_GET_FP_MODE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_FP_MODE))}, + "PR_GET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_KEEPCAPS))}, + "PR_GET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NAME))}, + "PR_GET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_NO_NEW_PRIVS))}, + "PR_GET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_GET_PDEATHSIG))}, + "PR_GET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECCOMP))}, + "PR_GET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_SECUREBITS))}, + "PR_GET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_GET_THP_DISABLE))}, + "PR_GET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TID_ADDRESS))}, + "PR_GET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMERSLACK))}, + "PR_GET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TIMING))}, + "PR_GET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_GET_TSC))}, + "PR_GET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_GET_UNALIGN))}, + "PR_MCE_KILL": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL))}, + "PR_MCE_KILL_CLEAR": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_CLEAR))}, + "PR_MCE_KILL_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_DEFAULT))}, + "PR_MCE_KILL_EARLY": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_EARLY))}, + "PR_MCE_KILL_GET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_GET))}, + "PR_MCE_KILL_LATE": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_LATE))}, + "PR_MCE_KILL_SET": {"untyped int", constant.MakeInt64(int64(q.PR_MCE_KILL_SET))}, + "PR_MPX_DISABLE_MANAGEMENT": {"untyped int", constant.MakeInt64(int64(q.PR_MPX_DISABLE_MANAGEMENT))}, + "PR_MPX_ENABLE_MANAGEMENT": {"untyped int", constant.MakeInt64(int64(q.PR_MPX_ENABLE_MANAGEMENT))}, + "PR_SET_CHILD_SUBREAPER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_CHILD_SUBREAPER))}, + "PR_SET_DUMPABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_DUMPABLE))}, + "PR_SET_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_ENDIAN))}, + "PR_SET_FPEMU": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEMU))}, + "PR_SET_FPEXC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FPEXC))}, + "PR_SET_FP_MODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_FP_MODE))}, + "PR_SET_KEEPCAPS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_KEEPCAPS))}, + "PR_SET_MM": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM))}, + "PR_SET_MM_ARG_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_END))}, + "PR_SET_MM_ARG_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ARG_START))}, + "PR_SET_MM_AUXV": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_AUXV))}, + "PR_SET_MM_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_BRK))}, + "PR_SET_MM_END_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_CODE))}, + "PR_SET_MM_END_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_END_DATA))}, + "PR_SET_MM_ENV_END": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_END))}, + "PR_SET_MM_ENV_START": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_ENV_START))}, + "PR_SET_MM_EXE_FILE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_EXE_FILE))}, + "PR_SET_MM_MAP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_MAP))}, + "PR_SET_MM_MAP_SIZE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_MAP_SIZE))}, + "PR_SET_MM_START_BRK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_BRK))}, + "PR_SET_MM_START_CODE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_CODE))}, + "PR_SET_MM_START_DATA": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_DATA))}, + "PR_SET_MM_START_STACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_MM_START_STACK))}, + "PR_SET_NAME": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NAME))}, + "PR_SET_NO_NEW_PRIVS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_NO_NEW_PRIVS))}, + "PR_SET_PDEATHSIG": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PDEATHSIG))}, + "PR_SET_PTRACER": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER))}, + "PR_SET_PTRACER_ANY": {"untyped int", constant.MakeInt64(int64(q.PR_SET_PTRACER_ANY))}, + "PR_SET_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECCOMP))}, + "PR_SET_SECUREBITS": {"untyped int", constant.MakeInt64(int64(q.PR_SET_SECUREBITS))}, + "PR_SET_THP_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_SET_THP_DISABLE))}, + "PR_SET_TIMERSLACK": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMERSLACK))}, + "PR_SET_TIMING": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TIMING))}, + "PR_SET_TSC": {"untyped int", constant.MakeInt64(int64(q.PR_SET_TSC))}, + "PR_SET_UNALIGN": {"untyped int", constant.MakeInt64(int64(q.PR_SET_UNALIGN))}, + "PR_TASK_PERF_EVENTS_DISABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_DISABLE))}, + "PR_TASK_PERF_EVENTS_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TASK_PERF_EVENTS_ENABLE))}, + "PR_TIMING_STATISTICAL": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_STATISTICAL))}, + "PR_TIMING_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.PR_TIMING_TIMESTAMP))}, + "PR_TSC_ENABLE": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_ENABLE))}, + "PR_TSC_SIGSEGV": {"untyped int", constant.MakeInt64(int64(q.PR_TSC_SIGSEGV))}, + "PR_UNALIGN_NOPRINT": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_NOPRINT))}, + "PR_UNALIGN_SIGBUS": {"untyped int", constant.MakeInt64(int64(q.PR_UNALIGN_SIGBUS))}, + "PTRACE_ATTACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ATTACH))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_DETACH": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DETACH))}, + "PTRACE_DISABLE_TE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_DISABLE_TE))}, + "PTRACE_ENABLE_TE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_ENABLE_TE))}, + "PTRACE_EVENT_CLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_CLONE))}, + "PTRACE_EVENT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXEC))}, + "PTRACE_EVENT_EXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_EXIT))}, + "PTRACE_EVENT_FORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_FORK))}, + "PTRACE_EVENT_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_SECCOMP))}, + "PTRACE_EVENT_STOP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_STOP))}, + "PTRACE_EVENT_VFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK))}, + "PTRACE_EVENT_VFORK_DONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_EVENT_VFORK_DONE))}, + "PTRACE_GETEVENTMSG": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETEVENTMSG))}, + "PTRACE_GETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGS))}, + "PTRACE_GETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETREGSET))}, + "PTRACE_GETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGINFO))}, + "PTRACE_GETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GETSIGMASK))}, + "PTRACE_GET_LAST_BREAK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_GET_LAST_BREAK))}, + "PTRACE_INTERRUPT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_INTERRUPT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_LISTEN": {"untyped int", constant.MakeInt64(int64(q.PTRACE_LISTEN))}, + "PTRACE_OLDSETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_OLDSETOPTIONS))}, + "PTRACE_O_EXITKILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_EXITKILL))}, + "PTRACE_O_MASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_MASK))}, + "PTRACE_O_SUSPEND_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_SUSPEND_SECCOMP))}, + "PTRACE_O_TRACECLONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACECLONE))}, + "PTRACE_O_TRACEEXEC": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXEC))}, + "PTRACE_O_TRACEEXIT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEEXIT))}, + "PTRACE_O_TRACEFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEFORK))}, + "PTRACE_O_TRACESECCOMP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESECCOMP))}, + "PTRACE_O_TRACESYSGOOD": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACESYSGOOD))}, + "PTRACE_O_TRACEVFORK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORK))}, + "PTRACE_O_TRACEVFORKDONE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_O_TRACEVFORKDONE))}, + "PTRACE_PEEKDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA))}, + "PTRACE_PEEKDATA_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKDATA_AREA))}, + "PTRACE_PEEKSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO))}, + "PTRACE_PEEKSIGINFO_SHARED": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKSIGINFO_SHARED))}, + "PTRACE_PEEKTEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT))}, + "PTRACE_PEEKTEXT_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKTEXT_AREA))}, + "PTRACE_PEEKUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR))}, + "PTRACE_PEEKUSR_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEKUSR_AREA))}, + "PTRACE_PEEK_SYSTEM_CALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PEEK_SYSTEM_CALL))}, + "PTRACE_POKEDATA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA))}, + "PTRACE_POKEDATA_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEDATA_AREA))}, + "PTRACE_POKETEXT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT))}, + "PTRACE_POKETEXT_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKETEXT_AREA))}, + "PTRACE_POKEUSR": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR))}, + "PTRACE_POKEUSR_AREA": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKEUSR_AREA))}, + "PTRACE_POKE_SYSTEM_CALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_POKE_SYSTEM_CALL))}, + "PTRACE_PROT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_PROT))}, + "PTRACE_SECCOMP_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SECCOMP_GET_FILTER))}, + "PTRACE_SEIZE": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SEIZE))}, + "PTRACE_SETOPTIONS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETOPTIONS))}, + "PTRACE_SETREGS": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGS))}, + "PTRACE_SETREGSET": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETREGSET))}, + "PTRACE_SETSIGINFO": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGINFO))}, + "PTRACE_SETSIGMASK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SETSIGMASK))}, + "PTRACE_SINGLEBLOCK": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLEBLOCK))}, + "PTRACE_SINGLESTEP": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SINGLESTEP))}, + "PTRACE_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_SYSCALL))}, + "PTRACE_TE_ABORT_RAND": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TE_ABORT_RAND))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_ACR0": {"untyped int", constant.MakeInt64(int64(q.PT_ACR0))}, + "PT_ACR1": {"untyped int", constant.MakeInt64(int64(q.PT_ACR1))}, + "PT_ACR10": {"untyped int", constant.MakeInt64(int64(q.PT_ACR10))}, + "PT_ACR11": {"untyped int", constant.MakeInt64(int64(q.PT_ACR11))}, + "PT_ACR12": {"untyped int", constant.MakeInt64(int64(q.PT_ACR12))}, + "PT_ACR13": {"untyped int", constant.MakeInt64(int64(q.PT_ACR13))}, + "PT_ACR14": {"untyped int", constant.MakeInt64(int64(q.PT_ACR14))}, + "PT_ACR15": {"untyped int", constant.MakeInt64(int64(q.PT_ACR15))}, + "PT_ACR2": {"untyped int", constant.MakeInt64(int64(q.PT_ACR2))}, + "PT_ACR3": {"untyped int", constant.MakeInt64(int64(q.PT_ACR3))}, + "PT_ACR4": {"untyped int", constant.MakeInt64(int64(q.PT_ACR4))}, + "PT_ACR5": {"untyped int", constant.MakeInt64(int64(q.PT_ACR5))}, + "PT_ACR6": {"untyped int", constant.MakeInt64(int64(q.PT_ACR6))}, + "PT_ACR7": {"untyped int", constant.MakeInt64(int64(q.PT_ACR7))}, + "PT_ACR8": {"untyped int", constant.MakeInt64(int64(q.PT_ACR8))}, + "PT_ACR9": {"untyped int", constant.MakeInt64(int64(q.PT_ACR9))}, + "PT_CR_10": {"untyped int", constant.MakeInt64(int64(q.PT_CR_10))}, + "PT_CR_11": {"untyped int", constant.MakeInt64(int64(q.PT_CR_11))}, + "PT_CR_9": {"untyped int", constant.MakeInt64(int64(q.PT_CR_9))}, + "PT_ENDREGS": {"untyped int", constant.MakeInt64(int64(q.PT_ENDREGS))}, + "PT_FPC": {"untyped int", constant.MakeInt64(int64(q.PT_FPC))}, + "PT_FPR0": {"untyped int", constant.MakeInt64(int64(q.PT_FPR0))}, + "PT_FPR1": {"untyped int", constant.MakeInt64(int64(q.PT_FPR1))}, + "PT_FPR10": {"untyped int", constant.MakeInt64(int64(q.PT_FPR10))}, + "PT_FPR11": {"untyped int", constant.MakeInt64(int64(q.PT_FPR11))}, + "PT_FPR12": {"untyped int", constant.MakeInt64(int64(q.PT_FPR12))}, + "PT_FPR13": {"untyped int", constant.MakeInt64(int64(q.PT_FPR13))}, + "PT_FPR14": {"untyped int", constant.MakeInt64(int64(q.PT_FPR14))}, + "PT_FPR15": {"untyped int", constant.MakeInt64(int64(q.PT_FPR15))}, + "PT_FPR2": {"untyped int", constant.MakeInt64(int64(q.PT_FPR2))}, + "PT_FPR3": {"untyped int", constant.MakeInt64(int64(q.PT_FPR3))}, + "PT_FPR4": {"untyped int", constant.MakeInt64(int64(q.PT_FPR4))}, + "PT_FPR5": {"untyped int", constant.MakeInt64(int64(q.PT_FPR5))}, + "PT_FPR6": {"untyped int", constant.MakeInt64(int64(q.PT_FPR6))}, + "PT_FPR7": {"untyped int", constant.MakeInt64(int64(q.PT_FPR7))}, + "PT_FPR8": {"untyped int", constant.MakeInt64(int64(q.PT_FPR8))}, + "PT_FPR9": {"untyped int", constant.MakeInt64(int64(q.PT_FPR9))}, + "PT_GPR0": {"untyped int", constant.MakeInt64(int64(q.PT_GPR0))}, + "PT_GPR1": {"untyped int", constant.MakeInt64(int64(q.PT_GPR1))}, + "PT_GPR10": {"untyped int", constant.MakeInt64(int64(q.PT_GPR10))}, + "PT_GPR11": {"untyped int", constant.MakeInt64(int64(q.PT_GPR11))}, + "PT_GPR12": {"untyped int", constant.MakeInt64(int64(q.PT_GPR12))}, + "PT_GPR13": {"untyped int", constant.MakeInt64(int64(q.PT_GPR13))}, + "PT_GPR14": {"untyped int", constant.MakeInt64(int64(q.PT_GPR14))}, + "PT_GPR15": {"untyped int", constant.MakeInt64(int64(q.PT_GPR15))}, + "PT_GPR2": {"untyped int", constant.MakeInt64(int64(q.PT_GPR2))}, + "PT_GPR3": {"untyped int", constant.MakeInt64(int64(q.PT_GPR3))}, + "PT_GPR4": {"untyped int", constant.MakeInt64(int64(q.PT_GPR4))}, + "PT_GPR5": {"untyped int", constant.MakeInt64(int64(q.PT_GPR5))}, + "PT_GPR6": {"untyped int", constant.MakeInt64(int64(q.PT_GPR6))}, + "PT_GPR7": {"untyped int", constant.MakeInt64(int64(q.PT_GPR7))}, + "PT_GPR8": {"untyped int", constant.MakeInt64(int64(q.PT_GPR8))}, + "PT_GPR9": {"untyped int", constant.MakeInt64(int64(q.PT_GPR9))}, + "PT_IEEE_IP": {"untyped int", constant.MakeInt64(int64(q.PT_IEEE_IP))}, + "PT_LASTOFF": {"untyped int", constant.MakeInt64(int64(q.PT_LASTOFF))}, + "PT_ORIGGPR2": {"untyped int", constant.MakeInt64(int64(q.PT_ORIGGPR2))}, + "PT_PSWADDR": {"untyped int", constant.MakeInt64(int64(q.PT_PSWADDR))}, + "PT_PSWMASK": {"untyped int", constant.MakeInt64(int64(q.PT_PSWMASK))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_ADVMSS": {"untyped int", constant.MakeInt64(int64(q.RTAX_ADVMSS))}, + "RTAX_CC_ALGO": {"untyped int", constant.MakeInt64(int64(q.RTAX_CC_ALGO))}, + "RTAX_CWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_CWND))}, + "RTAX_FEATURES": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURES))}, + "RTAX_FEATURE_ALLFRAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ALLFRAG))}, + "RTAX_FEATURE_ECN": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_ECN))}, + "RTAX_FEATURE_MASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_MASK))}, + "RTAX_FEATURE_SACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_SACK))}, + "RTAX_FEATURE_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.RTAX_FEATURE_TIMESTAMP))}, + "RTAX_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.RTAX_HOPLIMIT))}, + "RTAX_INITCWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITCWND))}, + "RTAX_INITRWND": {"untyped int", constant.MakeInt64(int64(q.RTAX_INITRWND))}, + "RTAX_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTAX_LOCK))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_MTU": {"untyped int", constant.MakeInt64(int64(q.RTAX_MTU))}, + "RTAX_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.RTAX_QUICKACK))}, + "RTAX_REORDERING": {"untyped int", constant.MakeInt64(int64(q.RTAX_REORDERING))}, + "RTAX_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTO_MIN))}, + "RTAX_RTT": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTT))}, + "RTAX_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTAX_RTTVAR))}, + "RTAX_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SSTHRESH))}, + "RTAX_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTAX_UNSPEC))}, + "RTAX_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTAX_WINDOW))}, + "RTA_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTA_ALIGNTO))}, + "RTA_CACHEINFO": {"untyped int", constant.MakeInt64(int64(q.RTA_CACHEINFO))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTA_FLOW))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_IIF": {"untyped int", constant.MakeInt64(int64(q.RTA_IIF))}, + "RTA_MAX": {"untyped int", constant.MakeInt64(int64(q.RTA_MAX))}, + "RTA_METRICS": {"untyped int", constant.MakeInt64(int64(q.RTA_METRICS))}, + "RTA_MULTIPATH": {"untyped int", constant.MakeInt64(int64(q.RTA_MULTIPATH))}, + "RTA_OIF": {"untyped int", constant.MakeInt64(int64(q.RTA_OIF))}, + "RTA_PREFSRC": {"untyped int", constant.MakeInt64(int64(q.RTA_PREFSRC))}, + "RTA_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.RTA_PRIORITY))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTA_TABLE))}, + "RTA_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTA_UNSPEC))}, + "RTCF_DIRECTSRC": {"untyped int", constant.MakeInt64(int64(q.RTCF_DIRECTSRC))}, + "RTCF_DOREDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTCF_DOREDIRECT))}, + "RTCF_LOG": {"untyped int", constant.MakeInt64(int64(q.RTCF_LOG))}, + "RTCF_MASQ": {"untyped int", constant.MakeInt64(int64(q.RTCF_MASQ))}, + "RTCF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTCF_NAT))}, + "RTCF_VALVE": {"untyped int", constant.MakeInt64(int64(q.RTCF_VALVE))}, + "RTF_ADDRCLASSMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCLASSMASK))}, + "RTF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.RTF_ADDRCONF))}, + "RTF_ALLONLINK": {"untyped int", constant.MakeInt64(int64(q.RTF_ALLONLINK))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHE": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHE))}, + "RTF_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RTF_DEFAULT))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FLOW": {"untyped int", constant.MakeInt64(int64(q.RTF_FLOW))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INTERFACE": {"untyped int", constant.MakeInt64(int64(q.RTF_INTERFACE))}, + "RTF_IRTT": {"untyped int", constant.MakeInt64(int64(q.RTF_IRTT))}, + "RTF_LINKRT": {"untyped int", constant.MakeInt64(int64(q.RTF_LINKRT))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MSS": {"untyped int", constant.MakeInt64(int64(q.RTF_MSS))}, + "RTF_MTU": {"untyped int", constant.MakeInt64(int64(q.RTF_MTU))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_NAT": {"untyped int", constant.MakeInt64(int64(q.RTF_NAT))}, + "RTF_NOFORWARD": {"untyped int", constant.MakeInt64(int64(q.RTF_NOFORWARD))}, + "RTF_NONEXTHOP": {"untyped int", constant.MakeInt64(int64(q.RTF_NONEXTHOP))}, + "RTF_NOPMTUDISC": {"untyped int", constant.MakeInt64(int64(q.RTF_NOPMTUDISC))}, + "RTF_POLICY": {"untyped int", constant.MakeInt64(int64(q.RTF_POLICY))}, + "RTF_REINSTATE": {"untyped int", constant.MakeInt64(int64(q.RTF_REINSTATE))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_THROW": {"untyped int", constant.MakeInt64(int64(q.RTF_THROW))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_WINDOW": {"untyped int", constant.MakeInt64(int64(q.RTF_WINDOW))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_BASE": {"untyped int", constant.MakeInt64(int64(q.RTM_BASE))}, + "RTM_DELACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_DELACTION))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDRLABEL))}, + "RTM_DELLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_DELLINK))}, + "RTM_DELMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_DELMDB))}, + "RTM_DELNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNEIGH))}, + "RTM_DELNSID": {"untyped int", constant.MakeInt64(int64(q.RTM_DELNSID))}, + "RTM_DELQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_DELQDISC))}, + "RTM_DELROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELROUTE))}, + "RTM_DELRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELRULE))}, + "RTM_DELTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTCLASS))}, + "RTM_DELTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_DELTFILTER))}, + "RTM_F_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTM_F_CLONED))}, + "RTM_F_EQUALIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_EQUALIZE))}, + "RTM_F_LOOKUP_TABLE": {"untyped int", constant.MakeInt64(int64(q.RTM_F_LOOKUP_TABLE))}, + "RTM_F_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTM_F_NOTIFY))}, + "RTM_F_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_F_PREFIX))}, + "RTM_GETACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_GETACTION))}, + "RTM_GETADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDR))}, + "RTM_GETADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETADDRLABEL))}, + "RTM_GETANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETANYCAST))}, + "RTM_GETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETDCB))}, + "RTM_GETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_GETLINK))}, + "RTM_GETMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMDB))}, + "RTM_GETMULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTM_GETMULTICAST))}, + "RTM_GETNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGH))}, + "RTM_GETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNEIGHTBL))}, + "RTM_GETNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNETCONF))}, + "RTM_GETNSID": {"untyped int", constant.MakeInt64(int64(q.RTM_GETNSID))}, + "RTM_GETQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_GETQDISC))}, + "RTM_GETROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETROUTE))}, + "RTM_GETRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_GETRULE))}, + "RTM_GETTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTCLASS))}, + "RTM_GETTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_GETTFILTER))}, + "RTM_MAX": {"untyped int", constant.MakeInt64(int64(q.RTM_MAX))}, + "RTM_NEWACTION": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWACTION))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_NEWADDRLABEL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDRLABEL))}, + "RTM_NEWLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWLINK))}, + "RTM_NEWMDB": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWMDB))}, + "RTM_NEWNDUSEROPT": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNDUSEROPT))}, + "RTM_NEWNEIGH": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGH))}, + "RTM_NEWNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNEIGHTBL))}, + "RTM_NEWNETCONF": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNETCONF))}, + "RTM_NEWNSID": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWNSID))}, + "RTM_NEWPREFIX": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWPREFIX))}, + "RTM_NEWQDISC": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWQDISC))}, + "RTM_NEWROUTE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWROUTE))}, + "RTM_NEWRULE": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWRULE))}, + "RTM_NEWTCLASS": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTCLASS))}, + "RTM_NEWTFILTER": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWTFILTER))}, + "RTM_NR_FAMILIES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_FAMILIES))}, + "RTM_NR_MSGTYPES": {"untyped int", constant.MakeInt64(int64(q.RTM_NR_MSGTYPES))}, + "RTM_SETDCB": {"untyped int", constant.MakeInt64(int64(q.RTM_SETDCB))}, + "RTM_SETLINK": {"untyped int", constant.MakeInt64(int64(q.RTM_SETLINK))}, + "RTM_SETNEIGHTBL": {"untyped int", constant.MakeInt64(int64(q.RTM_SETNEIGHTBL))}, + "RTNH_ALIGNTO": {"untyped int", constant.MakeInt64(int64(q.RTNH_ALIGNTO))}, + "RTNH_COMPARE_MASK": {"untyped int", constant.MakeInt64(int64(q.RTNH_COMPARE_MASK))}, + "RTNH_F_DEAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_DEAD))}, + "RTNH_F_LINKDOWN": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_LINKDOWN))}, + "RTNH_F_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_OFFLOAD))}, + "RTNH_F_ONLINK": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_ONLINK))}, + "RTNH_F_PERVASIVE": {"untyped int", constant.MakeInt64(int64(q.RTNH_F_PERVASIVE))}, + "RTNLGRP_IPV4_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_IFADDR))}, + "RTNLGRP_IPV4_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_MROUTE))}, + "RTNLGRP_IPV4_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_ROUTE))}, + "RTNLGRP_IPV4_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV4_RULE))}, + "RTNLGRP_IPV6_IFADDR": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFADDR))}, + "RTNLGRP_IPV6_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_IFINFO))}, + "RTNLGRP_IPV6_MROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_MROUTE))}, + "RTNLGRP_IPV6_PREFIX": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_PREFIX))}, + "RTNLGRP_IPV6_ROUTE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_ROUTE))}, + "RTNLGRP_IPV6_RULE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_IPV6_RULE))}, + "RTNLGRP_LINK": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_LINK))}, + "RTNLGRP_ND_USEROPT": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_ND_USEROPT))}, + "RTNLGRP_NEIGH": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NEIGH))}, + "RTNLGRP_NONE": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NONE))}, + "RTNLGRP_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_NOTIFY))}, + "RTNLGRP_TC": {"untyped int", constant.MakeInt64(int64(q.RTNLGRP_TC))}, + "RTN_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_ANYCAST))}, + "RTN_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTN_BLACKHOLE))}, + "RTN_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTN_BROADCAST))}, + "RTN_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTN_LOCAL))}, + "RTN_MAX": {"untyped int", constant.MakeInt64(int64(q.RTN_MAX))}, + "RTN_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_MULTICAST))}, + "RTN_NAT": {"untyped int", constant.MakeInt64(int64(q.RTN_NAT))}, + "RTN_PROHIBIT": {"untyped int", constant.MakeInt64(int64(q.RTN_PROHIBIT))}, + "RTN_THROW": {"untyped int", constant.MakeInt64(int64(q.RTN_THROW))}, + "RTN_UNICAST": {"untyped int", constant.MakeInt64(int64(q.RTN_UNICAST))}, + "RTN_UNREACHABLE": {"untyped int", constant.MakeInt64(int64(q.RTN_UNREACHABLE))}, + "RTN_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTN_UNSPEC))}, + "RTN_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTN_XRESOLVE))}, + "RTPROT_BABEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BABEL))}, + "RTPROT_BIRD": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BIRD))}, + "RTPROT_BOOT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_BOOT))}, + "RTPROT_DHCP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DHCP))}, + "RTPROT_DNROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_DNROUTED))}, + "RTPROT_GATED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_GATED))}, + "RTPROT_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTPROT_KERNEL))}, + "RTPROT_MROUTED": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MROUTED))}, + "RTPROT_MRT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_MRT))}, + "RTPROT_NTK": {"untyped int", constant.MakeInt64(int64(q.RTPROT_NTK))}, + "RTPROT_RA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_RA))}, + "RTPROT_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTPROT_REDIRECT))}, + "RTPROT_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_STATIC))}, + "RTPROT_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RTPROT_UNSPEC))}, + "RTPROT_XORP": {"untyped int", constant.MakeInt64(int64(q.RTPROT_XORP))}, + "RTPROT_ZEBRA": {"untyped int", constant.MakeInt64(int64(q.RTPROT_ZEBRA))}, + "RT_CLASS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_DEFAULT))}, + "RT_CLASS_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_LOCAL))}, + "RT_CLASS_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAIN))}, + "RT_CLASS_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_MAX))}, + "RT_CLASS_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_CLASS_UNSPEC))}, + "RT_SCOPE_HOST": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_HOST))}, + "RT_SCOPE_LINK": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_LINK))}, + "RT_SCOPE_NOWHERE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_NOWHERE))}, + "RT_SCOPE_SITE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_SITE))}, + "RT_SCOPE_UNIVERSE": {"untyped int", constant.MakeInt64(int64(q.RT_SCOPE_UNIVERSE))}, + "RT_TABLE_COMPAT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_COMPAT))}, + "RT_TABLE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_DEFAULT))}, + "RT_TABLE_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_LOCAL))}, + "RT_TABLE_MAIN": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAIN))}, + "RT_TABLE_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_MAX))}, + "RT_TABLE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.RT_TABLE_UNSPEC))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_CREDENTIALS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDENTIALS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPING))}, + "SCM_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMPNS))}, + "SCM_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SCM_WIFI_STATUS))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDDLCI))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELDLCI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELDLCI))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDEVPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCDEVPRIVATE))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDRARP))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFCOUNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCOUNT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFENCAP))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMAP))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNAME))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPFLAGS))}, + "SIOCGIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSLAVE))}, + "SIOCGIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTXQLEN))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGRARP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGSTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMPNS))}, + "SIOCPROTOPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SIOCPROTOPRIVATE))}, + "SIOCRTMSG": {"untyped int", constant.MakeInt64(int64(q.SIOCRTMSG))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFENCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFENCAP))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWADDR))}, + "SIOCSIFHWBROADCAST": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFHWBROADCAST))}, + "SIOCSIFLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLINK))}, + "SIOCSIFMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMAP))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPFLAGS))}, + "SIOCSIFSLAVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFSLAVE))}, + "SIOCSIFTXQLEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTXQLEN))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSRARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSRARP))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DCCP": {"untyped int", constant.MakeInt64(int64(q.SOCK_DCCP))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_PACKET))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_AAL": {"untyped int", constant.MakeInt64(int64(q.SOL_AAL))}, + "SOL_ATM": {"untyped int", constant.MakeInt64(int64(q.SOL_ATM))}, + "SOL_DECNET": {"untyped int", constant.MakeInt64(int64(q.SOL_DECNET))}, + "SOL_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_ICMPV6))}, + "SOL_IP": {"untyped int", constant.MakeInt64(int64(q.SOL_IP))}, + "SOL_IPV6": {"untyped int", constant.MakeInt64(int64(q.SOL_IPV6))}, + "SOL_IRDA": {"untyped int", constant.MakeInt64(int64(q.SOL_IRDA))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_RAW": {"untyped int", constant.MakeInt64(int64(q.SOL_RAW))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOL_TCP": {"untyped int", constant.MakeInt64(int64(q.SOL_TCP))}, + "SOL_X25": {"untyped int", constant.MakeInt64(int64(q.SOL_X25))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ATTACH_BPF": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_BPF))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BINDTODEVICE": {"untyped int", constant.MakeInt64(int64(q.SO_BINDTODEVICE))}, + "SO_BPF_EXTENSIONS": {"untyped int", constant.MakeInt64(int64(q.SO_BPF_EXTENSIONS))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_BSDCOMPAT": {"untyped int", constant.MakeInt64(int64(q.SO_BSDCOMPAT))}, + "SO_BUSY_POLL": {"untyped int", constant.MakeInt64(int64(q.SO_BUSY_POLL))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DETACH_BPF": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_BPF))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_GET_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_GET_FILTER))}, + "SO_INCOMING_CPU": {"untyped int", constant.MakeInt64(int64(q.SO_INCOMING_CPU))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOCK_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_LOCK_FILTER))}, + "SO_MARK": {"untyped int", constant.MakeInt64(int64(q.SO_MARK))}, + "SO_MAX_PACING_RATE": {"untyped int", constant.MakeInt64(int64(q.SO_MAX_PACING_RATE))}, + "SO_NOFCS": {"untyped int", constant.MakeInt64(int64(q.SO_NOFCS))}, + "SO_NO_CHECK": {"untyped int", constant.MakeInt64(int64(q.SO_NO_CHECK))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PASSCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PASSCRED))}, + "SO_PASSSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PASSSEC))}, + "SO_PEEK_OFF": {"untyped int", constant.MakeInt64(int64(q.SO_PEEK_OFF))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PEERNAME": {"untyped int", constant.MakeInt64(int64(q.SO_PEERNAME))}, + "SO_PEERSEC": {"untyped int", constant.MakeInt64(int64(q.SO_PEERSEC))}, + "SO_PRIORITY": {"untyped int", constant.MakeInt64(int64(q.SO_PRIORITY))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUFFORCE))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RXQ_OVFL": {"untyped int", constant.MakeInt64(int64(q.SO_RXQ_OVFL))}, + "SO_SECURITY_AUTHENTICATION": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_AUTHENTICATION))}, + "SO_SECURITY_ENCRYPTION_NETWORK": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_NETWORK))}, + "SO_SECURITY_ENCRYPTION_TRANSPORT": {"untyped int", constant.MakeInt64(int64(q.SO_SECURITY_ENCRYPTION_TRANSPORT))}, + "SO_SELECT_ERR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.SO_SELECT_ERR_QUEUE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDBUFFORCE": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUFFORCE))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TIMESTAMPING": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPING))}, + "SO_TIMESTAMPNS": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMPNS))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_WIFI_STATUS": {"untyped int", constant.MakeInt64(int64(q.SO_WIFI_STATUS))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADD_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_ADD_KEY))}, + "SYS_ADJTIMEX": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIMEX))}, + "SYS_AFS_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_AFS_SYSCALL))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_BDFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_BDFLUSH))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BPF": {"untyped int", constant.MakeInt64(int64(q.SYS_BPF))}, + "SYS_BRK": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK))}, + "SYS_CAPGET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPGET))}, + "SYS_CAPSET": {"untyped int", constant.MakeInt64(int64(q.SYS_CAPSET))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_ADJTIME))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_NANOSLEEP))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLONE))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_CREAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CREAT))}, + "SYS_CREATE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE_MODULE))}, + "SYS_DELETE_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_DELETE_MODULE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EPOLL_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE))}, + "SYS_EPOLL_CREATE1": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CREATE1))}, + "SYS_EPOLL_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_CTL))}, + "SYS_EPOLL_PWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_PWAIT))}, + "SYS_EPOLL_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EPOLL_WAIT))}, + "SYS_EVENTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD))}, + "SYS_EVENTFD2": {"untyped int", constant.MakeInt64(int64(q.SYS_EVENTFD2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXECVEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVEAT))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXIT_GROUP": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT_GROUP))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FADVISE64": {"untyped int", constant.MakeInt64(int64(q.SYS_FADVISE64))}, + "SYS_FALLOCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FALLOCATE))}, + "SYS_FANOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_INIT))}, + "SYS_FANOTIFY_MARK": {"untyped int", constant.MakeInt64(int64(q.SYS_FANOTIFY_MARK))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FINIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_FINIT_MODULE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSTATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS64))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMESAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMESAT))}, + "SYS_GETCPU": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCPU))}, + "SYS_GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCWD))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDENTS64": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS64))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPMSG))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRANDOM": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRANDOM))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_GET_KERNEL_SYMS": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_KERNEL_SYMS))}, + "SYS_GET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_MEMPOLICY))}, + "SYS_GET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_GET_ROBUST_LIST))}, + "SYS_IDLE": {"untyped int", constant.MakeInt64(int64(q.SYS_IDLE))}, + "SYS_INIT_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_INIT_MODULE))}, + "SYS_INOTIFY_ADD_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_ADD_WATCH))}, + "SYS_INOTIFY_INIT": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT))}, + "SYS_INOTIFY_INIT1": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_INIT1))}, + "SYS_INOTIFY_RM_WATCH": {"untyped int", constant.MakeInt64(int64(q.SYS_INOTIFY_RM_WATCH))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_IOPRIO_GET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_GET))}, + "SYS_IOPRIO_SET": {"untyped int", constant.MakeInt64(int64(q.SYS_IOPRIO_SET))}, + "SYS_IO_CANCEL": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_CANCEL))}, + "SYS_IO_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_DESTROY))}, + "SYS_IO_GETEVENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_GETEVENTS))}, + "SYS_IO_SETUP": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SETUP))}, + "SYS_IO_SUBMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_IO_SUBMIT))}, + "SYS_IPC": {"untyped int", constant.MakeInt64(int64(q.SYS_IPC))}, + "SYS_KCMP": {"untyped int", constant.MakeInt64(int64(q.SYS_KCMP))}, + "SYS_KEXEC_LOAD": {"untyped int", constant.MakeInt64(int64(q.SYS_KEXEC_LOAD))}, + "SYS_KEYCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_KEYCTL))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LOOKUP_DCOOKIE": {"untyped int", constant.MakeInt64(int64(q.SYS_LOOKUP_DCOOKIE))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_MBIND))}, + "SYS_MEMBARRIER": {"untyped int", constant.MakeInt64(int64(q.SYS_MEMBARRIER))}, + "SYS_MEMFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_MEMFD_CREATE))}, + "SYS_MIGRATE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MIGRATE_PAGES))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCK2": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK2))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MOVE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_MOVE_PAGES))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQ_GETSETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_GETSETATTR))}, + "SYS_MQ_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_NOTIFY))}, + "SYS_MQ_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_OPEN))}, + "SYS_MQ_TIMEDRECEIVE": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDRECEIVE))}, + "SYS_MQ_TIMEDSEND": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_TIMEDSEND))}, + "SYS_MQ_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_MQ_UNLINK))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NAME_TO_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_NAME_TO_HANDLE_AT))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NEWFSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_NEWFSTATAT))}, + "SYS_NFSSERVCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSERVCTL))}, + "SYS_NICE": {"untyped int", constant.MakeInt64(int64(q.SYS_NICE))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_OPEN_BY_HANDLE_AT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN_BY_HANDLE_AT))}, + "SYS_PAUSE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAUSE))}, + "SYS_PERF_EVENT_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_PERF_EVENT_OPEN))}, + "SYS_PERSONALITY": {"untyped int", constant.MakeInt64(int64(q.SYS_PERSONALITY))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PIVOT_ROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_PIVOT_ROOT))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_PRCTL))}, + "SYS_PREAD64": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD64))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PRLIMIT64": {"untyped int", constant.MakeInt64(int64(q.SYS_PRLIMIT64))}, + "SYS_PROCESS_VM_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_READV))}, + "SYS_PROCESS_VM_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PROCESS_VM_WRITEV))}, + "SYS_PSELECT6": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT6))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PUTPMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_PUTPMSG))}, + "SYS_PWRITE64": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE64))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUERY_MODULE": {"untyped int", constant.MakeInt64(int64(q.SYS_QUERY_MODULE))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READAHEAD": {"untyped int", constant.MakeInt64(int64(q.SYS_READAHEAD))}, + "SYS_READDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_READDIR))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMAP_FILE_PAGES": {"untyped int", constant.MakeInt64(int64(q.SYS_REMAP_FILE_PAGES))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_RENAMEAT2": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT2))}, + "SYS_REQUEST_KEY": {"untyped int", constant.MakeInt64(int64(q.SYS_REQUEST_KEY))}, + "SYS_RESTART_SYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_RESTART_SYSCALL))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_RT_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGACTION))}, + "SYS_RT_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPENDING))}, + "SYS_RT_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGPROCMASK))}, + "SYS_RT_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGQUEUEINFO))}, + "SYS_RT_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGRETURN))}, + "SYS_RT_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGSUSPEND))}, + "SYS_RT_SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_SIGTIMEDWAIT))}, + "SYS_RT_TGSIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_RT_TGSIGQUEUEINFO))}, + "SYS_S390_PCI_MMIO_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_S390_PCI_MMIO_READ))}, + "SYS_S390_PCI_MMIO_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_S390_PCI_MMIO_WRITE))}, + "SYS_S390_RUNTIME_INSTR": {"untyped int", constant.MakeInt64(int64(q.SYS_S390_RUNTIME_INSTR))}, + "SYS_SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETAFFINITY))}, + "SYS_SCHED_GETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETATTR))}, + "SYS_SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETPARAM))}, + "SYS_SCHED_GETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GETSCHEDULER))}, + "SYS_SCHED_GET_PRIORITY_MAX": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MAX))}, + "SYS_SCHED_GET_PRIORITY_MIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_GET_PRIORITY_MIN))}, + "SYS_SCHED_RR_GET_INTERVAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_RR_GET_INTERVAL))}, + "SYS_SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETAFFINITY))}, + "SYS_SCHED_SETATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETATTR))}, + "SYS_SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETPARAM))}, + "SYS_SCHED_SETSCHEDULER": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_SETSCHEDULER))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SECCOMP": {"untyped int", constant.MakeInt64(int64(q.SYS_SECCOMP))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SENDFILE": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDFILE))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETDOMAINNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETDOMAINNAME))}, + "SYS_SETFSGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSGID))}, + "SYS_SETFSUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETFSUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETHOSTNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_SETHOSTNAME))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETNS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETNS))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SET_MEMPOLICY": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_MEMPOLICY))}, + "SYS_SET_ROBUST_LIST": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_ROBUST_LIST))}, + "SYS_SET_TID_ADDRESS": {"untyped int", constant.MakeInt64(int64(q.SYS_SET_TID_ADDRESS))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNAL))}, + "SYS_SIGNALFD": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD))}, + "SYS_SIGNALFD4": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGNALFD4))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETCALL))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_SPLICE))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_STATFS64": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS64))}, + "SYS_SWAPOFF": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPOFF))}, + "SYS_SWAPON": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPON))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYNCFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNCFS))}, + "SYS_SYNC_FILE_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC_FILE_RANGE))}, + "SYS_SYSFS": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSFS))}, + "SYS_SYSINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSINFO))}, + "SYS_SYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSLOG))}, + "SYS_TEE": {"untyped int", constant.MakeInt64(int64(q.SYS_TEE))}, + "SYS_TGKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TGKILL))}, + "SYS_TIMERFD": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD))}, + "SYS_TIMERFD_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_CREATE))}, + "SYS_TIMERFD_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_GETTIME))}, + "SYS_TIMERFD_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMERFD_SETTIME))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMES))}, + "SYS_TKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_TKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT))}, + "SYS_UMOUNT2": {"untyped int", constant.MakeInt64(int64(q.SYS_UMOUNT2))}, + "SYS_UNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_UNAME))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNSHARE))}, + "SYS_USELIB": {"untyped int", constant.MakeInt64(int64(q.SYS_USELIB))}, + "SYS_USERFAULTFD": {"untyped int", constant.MakeInt64(int64(q.SYS_USERFAULTFD))}, + "SYS_USTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_USTAT))}, + "SYS_UTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIME))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_VHANGUP": {"untyped int", constant.MakeInt64(int64(q.SYS_VHANGUP))}, + "SYS_VMSPLICE": {"untyped int", constant.MakeInt64(int64(q.SYS_VMSPLICE))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAITID": {"untyped int", constant.MakeInt64(int64(q.SYS_WAITID))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS__SYSCTL))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPMreqn": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreqn))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAddrmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAddrmsg))}, + "SizeofIfInfomsg": {"untyped int", constant.MakeInt64(int64(q.SizeofIfInfomsg))}, + "SizeofInet4Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet4Pktinfo))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofInotifyEvent": {"untyped int", constant.MakeInt64(int64(q.SizeofInotifyEvent))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofNlAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlAttr))}, + "SizeofNlMsgerr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsgerr))}, + "SizeofNlMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofNlMsghdr))}, + "SizeofRtAttr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtAttr))}, + "SizeofRtGenmsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtGenmsg))}, + "SizeofRtMsg": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsg))}, + "SizeofRtNexthop": {"untyped int", constant.MakeInt64(int64(q.SizeofRtNexthop))}, + "SizeofSockFilter": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFilter))}, + "SizeofSockFprog": {"untyped int", constant.MakeInt64(int64(q.SizeofSockFprog))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrLinklayer": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrLinklayer))}, + "SizeofSockaddrNetlink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrNetlink))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "SizeofTCPInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofTCPInfo))}, + "SizeofUcred": {"untyped int", constant.MakeInt64(int64(q.SizeofUcred))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCGETS": {"untyped int", constant.MakeInt64(int64(q.TCGETS))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGESTION": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGESTION))}, + "TCP_COOKIE_IN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_IN_ALWAYS))}, + "TCP_COOKIE_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MAX))}, + "TCP_COOKIE_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_MIN))}, + "TCP_COOKIE_OUT_NEVER": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_OUT_NEVER))}, + "TCP_COOKIE_PAIR_SIZE": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_PAIR_SIZE))}, + "TCP_COOKIE_TRANSACTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_COOKIE_TRANSACTIONS))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_DEFER_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.TCP_DEFER_ACCEPT))}, + "TCP_FASTOPEN": {"untyped int", constant.MakeInt64(int64(q.TCP_FASTOPEN))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MD5SIG_MAXKEYLEN": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG_MAXKEYLEN))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_MSS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DEFAULT))}, + "TCP_MSS_DESIRED": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS_DESIRED))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_QUEUE_SEQ": {"untyped int", constant.MakeInt64(int64(q.TCP_QUEUE_SEQ))}, + "TCP_QUICKACK": {"untyped int", constant.MakeInt64(int64(q.TCP_QUICKACK))}, + "TCP_REPAIR": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR))}, + "TCP_REPAIR_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_OPTIONS))}, + "TCP_REPAIR_QUEUE": {"untyped int", constant.MakeInt64(int64(q.TCP_REPAIR_QUEUE))}, + "TCP_SYNCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_SYNCNT))}, + "TCP_S_DATA_IN": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_IN))}, + "TCP_S_DATA_OUT": {"untyped int", constant.MakeInt64(int64(q.TCP_S_DATA_OUT))}, + "TCP_THIN_DUPACK": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_DUPACK))}, + "TCP_THIN_LINEAR_TIMEOUTS": {"untyped int", constant.MakeInt64(int64(q.TCP_THIN_LINEAR_TIMEOUTS))}, + "TCP_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_TIMESTAMP))}, + "TCP_USER_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.TCP_USER_TIMEOUT))}, + "TCP_WINDOW_CLAMP": {"untyped int", constant.MakeInt64(int64(q.TCP_WINDOW_CLAMP))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TCSETS": {"untyped int", constant.MakeInt64(int64(q.TCSETS))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCGDEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGDEV))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCGEXCL))}, + "TIOCGICOUNT": {"untyped int", constant.MakeInt64(int64(q.TIOCGICOUNT))}, + "TIOCGLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCGLCKTRMIOS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCGPKT))}, + "TIOCGPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTLCK))}, + "TIOCGPTN": {"untyped int", constant.MakeInt64(int64(q.TIOCGPTN))}, + "TIOCGRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCGRS485))}, + "TIOCGSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCGSERIAL))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCINQ": {"untyped int", constant.MakeInt64(int64(q.TIOCINQ))}, + "TIOCLINUX": {"untyped int", constant.MakeInt64(int64(q.TIOCLINUX))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMIWAIT": {"untyped int", constant.MakeInt64(int64(q.TIOCMIWAIT))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSERCONFIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSERCONFIG))}, + "TIOCSERGETLSR": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETLSR))}, + "TIOCSERGETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGETMULTI))}, + "TIOCSERGSTRUCT": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGSTRUCT))}, + "TIOCSERGWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERGWILD))}, + "TIOCSERSETMULTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSETMULTI))}, + "TIOCSERSWILD": {"untyped int", constant.MakeInt64(int64(q.TIOCSERSWILD))}, + "TIOCSER_TEMT": {"untyped int", constant.MakeInt64(int64(q.TIOCSER_TEMT))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLCKTRMIOS": {"untyped int", constant.MakeInt64(int64(q.TIOCSLCKTRMIOS))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPTLCK": {"untyped int", constant.MakeInt64(int64(q.TIOCSPTLCK))}, + "TIOCSRS485": {"untyped int", constant.MakeInt64(int64(q.TIOCSRS485))}, + "TIOCSSERIAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSSERIAL))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCVHANGUP": {"untyped int", constant.MakeInt64(int64(q.TIOCVHANGUP))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "TUNATTACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNATTACHFILTER))}, + "TUNDETACHFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNDETACHFILTER))}, + "TUNGETFEATURES": {"untyped int", constant.MakeInt64(int64(q.TUNGETFEATURES))}, + "TUNGETFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNGETFILTER))}, + "TUNGETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNGETIFF))}, + "TUNGETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNGETSNDBUF))}, + "TUNGETVNETBE": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETBE))}, + "TUNGETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETHDRSZ))}, + "TUNGETVNETLE": {"untyped int", constant.MakeInt64(int64(q.TUNGETVNETLE))}, + "TUNSETDEBUG": {"untyped int", constant.MakeInt64(int64(q.TUNSETDEBUG))}, + "TUNSETGROUP": {"untyped int", constant.MakeInt64(int64(q.TUNSETGROUP))}, + "TUNSETIFF": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFF))}, + "TUNSETIFINDEX": {"untyped int", constant.MakeInt64(int64(q.TUNSETIFINDEX))}, + "TUNSETLINK": {"untyped int", constant.MakeInt64(int64(q.TUNSETLINK))}, + "TUNSETNOCSUM": {"untyped int", constant.MakeInt64(int64(q.TUNSETNOCSUM))}, + "TUNSETOFFLOAD": {"untyped int", constant.MakeInt64(int64(q.TUNSETOFFLOAD))}, + "TUNSETOWNER": {"untyped int", constant.MakeInt64(int64(q.TUNSETOWNER))}, + "TUNSETPERSIST": {"untyped int", constant.MakeInt64(int64(q.TUNSETPERSIST))}, + "TUNSETQUEUE": {"untyped int", constant.MakeInt64(int64(q.TUNSETQUEUE))}, + "TUNSETSNDBUF": {"untyped int", constant.MakeInt64(int64(q.TUNSETSNDBUF))}, + "TUNSETTXFILTER": {"untyped int", constant.MakeInt64(int64(q.TUNSETTXFILTER))}, + "TUNSETVNETBE": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETBE))}, + "TUNSETVNETHDRSZ": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETHDRSZ))}, + "TUNSETVNETLE": {"untyped int", constant.MakeInt64(int64(q.TUNSETVNETLE))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTC": {"untyped int", constant.MakeInt64(int64(q.VSWTC))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOTHREAD": {"untyped int", constant.MakeInt64(int64(q.WNOTHREAD))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WORDSIZE": {"untyped int", constant.MakeInt64(int64(q.WORDSIZE))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + "XCASE": {"untyped int", constant.MakeInt64(int64(q.XCASE))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_netbsd_386.go b/pkg/syscall/go123_export_netbsd_386.go new file mode 100755 index 00000000..c1a3cb74 --- /dev/null +++ b/pkg/syscall/go123_export_netbsd_386.go @@ -0,0 +1,2139 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Mclpool": reflect.TypeOf((*q.Mclpool)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Sysctlnode": reflect.TypeOf((*q.Sysctlnode)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ARP": {"untyped int", constant.MakeInt64(int64(q.AF_ARP))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_OROUTE))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FRELAY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRELAY))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_STRIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_STRIP))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCFEEDBACK))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCGFEEDBACK))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGSTATSOLD": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATSOLD))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCSFEEDBACK))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTCPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSTCPF))}, + "BIOCSUDPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSUDPF))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALIGNMENT32": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT32))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DFLTBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_DFLTBUFSIZE))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CLONE_CSIGNAL))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_PID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PID))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "CTL_QUERY": {"untyped int", constant.MakeInt64(int64(q.CTL_QUERY))}, + "DIOCBSFLUSH": {"untyped int", constant.MakeInt64(int64(q.DIOCBSFLUSH))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_AOS": {"untyped int", constant.MakeInt64(int64(q.DLT_AOS))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CAN_SOCKETCAN": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN_SOCKETCAN))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DECT": {"untyped int", constant.MakeInt64(int64(q.DLT_DECT))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FC_2": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2))}, + "DLT_FC_2_WITH_FRAME_DELIMS": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2_WITH_FRAME_DELIMS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_GSMTAP_ABIS": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_ABIS))}, + "DLT_GSMTAP_UM": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_UM))}, + "DLT_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HDLC))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.DLT_HIPPI))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPV4": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV4))}, + "DLT_IPV6": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV6))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_EVDEV": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_EVDEV))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RAWAF_MASK": {"untyped int", constant.MakeInt64(int64(q.DLT_RAWAF_MASK))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_USB_LINUX_MMAPPED": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX_MMAPPED))}, + "DLT_WIHART": {"untyped int", constant.MakeInt64(int64(q.DLT_WIHART))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMUL_LINUX": {"untyped int", constant.MakeInt64(int64(q.EMUL_LINUX))}, + "EMUL_LINUX32": {"untyped int", constant.MakeInt64(int64(q.EMUL_LINUX32))}, + "EMUL_MAXID": {"untyped int", constant.MakeInt64(int64(q.EMUL_MAXID))}, + "EN_SW_CTL_INF": {"untyped int", constant.MakeInt64(int64(q.EN_SW_CTL_INF))}, + "EN_SW_CTL_PREC": {"untyped int", constant.MakeInt64(int64(q.EN_SW_CTL_PREC))}, + "EN_SW_CTL_ROUND": {"untyped int", constant.MakeInt64(int64(q.EN_SW_CTL_ROUND))}, + "EN_SW_DATACHAIN": {"untyped int", constant.MakeInt64(int64(q.EN_SW_DATACHAIN))}, + "EN_SW_DENORM": {"untyped int", constant.MakeInt64(int64(q.EN_SW_DENORM))}, + "EN_SW_INVOP": {"untyped int", constant.MakeInt64(int64(q.EN_SW_INVOP))}, + "EN_SW_OVERFLOW": {"untyped int", constant.MakeInt64(int64(q.EN_SW_OVERFLOW))}, + "EN_SW_PRECLOSS": {"untyped int", constant.MakeInt64(int64(q.EN_SW_PRECLOSS))}, + "EN_SW_UNDERFLOW": {"untyped int", constant.MakeInt64(int64(q.EN_SW_UNDERFLOW))}, + "EN_SW_ZERODIV": {"untyped int", constant.MakeInt64(int64(q.EN_SW_ZERODIV))}, + "ETHERCAP_JUMBO_MTU": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_JUMBO_MTU))}, + "ETHERCAP_VLAN_HWTAGGING": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_VLAN_HWTAGGING))}, + "ETHERCAP_VLAN_MTU": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_VLAN_MTU))}, + "ETHERMIN": {"untyped int", constant.MakeInt64(int64(q.ETHERMIN))}, + "ETHERMTU": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU))}, + "ETHERMTU_JUMBO": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU_JUMBO))}, + "ETHERTYPE_8023": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_8023))}, + "ETHERTYPE_AARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AARP))}, + "ETHERTYPE_ACCTON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ACCTON))}, + "ETHERTYPE_AEONIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AEONIC))}, + "ETHERTYPE_ALPHA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ALPHA))}, + "ETHERTYPE_AMBER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMBER))}, + "ETHERTYPE_AMOEBA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMOEBA))}, + "ETHERTYPE_APOLLO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLO))}, + "ETHERTYPE_APOLLODOMAIN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLODOMAIN))}, + "ETHERTYPE_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLETALK))}, + "ETHERTYPE_APPLITEK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLITEK))}, + "ETHERTYPE_ARGONAUT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARGONAUT))}, + "ETHERTYPE_ARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARP))}, + "ETHERTYPE_AT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AT))}, + "ETHERTYPE_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATALK))}, + "ETHERTYPE_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATOMIC))}, + "ETHERTYPE_ATT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATT))}, + "ETHERTYPE_ATTSTANFORD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATTSTANFORD))}, + "ETHERTYPE_AUTOPHON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AUTOPHON))}, + "ETHERTYPE_AXIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AXIS))}, + "ETHERTYPE_BCLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BCLOOP))}, + "ETHERTYPE_BOFL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BOFL))}, + "ETHERTYPE_CABLETRON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CABLETRON))}, + "ETHERTYPE_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CHAOS))}, + "ETHERTYPE_COMDESIGN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMDESIGN))}, + "ETHERTYPE_COMPUGRAPHIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMPUGRAPHIC))}, + "ETHERTYPE_COUNTERPOINT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COUNTERPOINT))}, + "ETHERTYPE_CRONUS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUS))}, + "ETHERTYPE_CRONUSVLN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUSVLN))}, + "ETHERTYPE_DCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DCA))}, + "ETHERTYPE_DDE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DDE))}, + "ETHERTYPE_DEBNI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DEBNI))}, + "ETHERTYPE_DECAM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECAM))}, + "ETHERTYPE_DECCUST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECCUST))}, + "ETHERTYPE_DECDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDIAG))}, + "ETHERTYPE_DECDNS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDNS))}, + "ETHERTYPE_DECDTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDTS))}, + "ETHERTYPE_DECEXPER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECEXPER))}, + "ETHERTYPE_DECLAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLAST))}, + "ETHERTYPE_DECLTM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLTM))}, + "ETHERTYPE_DECMUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECMUMPS))}, + "ETHERTYPE_DECNETBIOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECNETBIOS))}, + "ETHERTYPE_DELTACON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DELTACON))}, + "ETHERTYPE_DIDDLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DIDDLE))}, + "ETHERTYPE_DLOG1": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG1))}, + "ETHERTYPE_DLOG2": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG2))}, + "ETHERTYPE_DN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DN))}, + "ETHERTYPE_DOGFIGHT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DOGFIGHT))}, + "ETHERTYPE_DSMD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DSMD))}, + "ETHERTYPE_ECMA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ECMA))}, + "ETHERTYPE_ENCRYPT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ENCRYPT))}, + "ETHERTYPE_ES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ES))}, + "ETHERTYPE_EXCELAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXCELAN))}, + "ETHERTYPE_EXPERDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXPERDATA))}, + "ETHERTYPE_FLIP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLIP))}, + "ETHERTYPE_FLOWCONTROL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLOWCONTROL))}, + "ETHERTYPE_FRARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FRARP))}, + "ETHERTYPE_GENDYN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_GENDYN))}, + "ETHERTYPE_HAYES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HAYES))}, + "ETHERTYPE_HIPPI_FP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HIPPI_FP))}, + "ETHERTYPE_HITACHI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HITACHI))}, + "ETHERTYPE_HP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HP))}, + "ETHERTYPE_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUP))}, + "ETHERTYPE_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUPAT))}, + "ETHERTYPE_IMLBL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBL))}, + "ETHERTYPE_IMLBLDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBLDIAG))}, + "ETHERTYPE_IP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IP))}, + "ETHERTYPE_IPAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPAS))}, + "ETHERTYPE_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPV6))}, + "ETHERTYPE_IPX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPX))}, + "ETHERTYPE_IPXNEW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPXNEW))}, + "ETHERTYPE_KALPANA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_KALPANA))}, + "ETHERTYPE_LANBRIDGE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANBRIDGE))}, + "ETHERTYPE_LANPROBE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANPROBE))}, + "ETHERTYPE_LAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LAT))}, + "ETHERTYPE_LBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LBACK))}, + "ETHERTYPE_LITTLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LITTLE))}, + "ETHERTYPE_LOGICRAFT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOGICRAFT))}, + "ETHERTYPE_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOOPBACK))}, + "ETHERTYPE_MATRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MATRA))}, + "ETHERTYPE_MAX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MAX))}, + "ETHERTYPE_MERIT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MERIT))}, + "ETHERTYPE_MICP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MICP))}, + "ETHERTYPE_MOPDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPDL))}, + "ETHERTYPE_MOPRC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPRC))}, + "ETHERTYPE_MOTOROLA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOTOROLA))}, + "ETHERTYPE_MPLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS))}, + "ETHERTYPE_MPLS_MCAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS_MCAST))}, + "ETHERTYPE_MUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MUMPS))}, + "ETHERTYPE_NBPCC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCC))}, + "ETHERTYPE_NBPCLAIM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLAIM))}, + "ETHERTYPE_NBPCLREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLREQ))}, + "ETHERTYPE_NBPCLRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLRSP))}, + "ETHERTYPE_NBPCREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCREQ))}, + "ETHERTYPE_NBPCRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCRSP))}, + "ETHERTYPE_NBPDG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDG))}, + "ETHERTYPE_NBPDGB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDGB))}, + "ETHERTYPE_NBPDLTE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDLTE))}, + "ETHERTYPE_NBPRAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAR))}, + "ETHERTYPE_NBPRAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAS))}, + "ETHERTYPE_NBPRST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRST))}, + "ETHERTYPE_NBPSCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPSCD))}, + "ETHERTYPE_NBPVCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPVCD))}, + "ETHERTYPE_NBS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBS))}, + "ETHERTYPE_NCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NCD))}, + "ETHERTYPE_NESTAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NESTAR))}, + "ETHERTYPE_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NETBEUI))}, + "ETHERTYPE_NOVELL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NOVELL))}, + "ETHERTYPE_NS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NS))}, + "ETHERTYPE_NSAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSAT))}, + "ETHERTYPE_NSCOMPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSCOMPAT))}, + "ETHERTYPE_NTRAILER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NTRAILER))}, + "ETHERTYPE_OS9": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9))}, + "ETHERTYPE_OS9NET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9NET))}, + "ETHERTYPE_PACER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PACER))}, + "ETHERTYPE_PAE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PAE))}, + "ETHERTYPE_PCS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PCS))}, + "ETHERTYPE_PLANNING": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PLANNING))}, + "ETHERTYPE_PPP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPP))}, + "ETHERTYPE_PPPOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOE))}, + "ETHERTYPE_PPPOEDISC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOEDISC))}, + "ETHERTYPE_PRIMENTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PRIMENTS))}, + "ETHERTYPE_PUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUP))}, + "ETHERTYPE_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUPAT))}, + "ETHERTYPE_RACAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RACAL))}, + "ETHERTYPE_RATIONAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RATIONAL))}, + "ETHERTYPE_RAWFR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RAWFR))}, + "ETHERTYPE_RCL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RCL))}, + "ETHERTYPE_RDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RDP))}, + "ETHERTYPE_RETIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RETIX))}, + "ETHERTYPE_REVARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_REVARP))}, + "ETHERTYPE_SCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SCA))}, + "ETHERTYPE_SECTRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECTRA))}, + "ETHERTYPE_SECUREDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECUREDATA))}, + "ETHERTYPE_SGITW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SGITW))}, + "ETHERTYPE_SG_BOUNCE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_BOUNCE))}, + "ETHERTYPE_SG_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_DIAG))}, + "ETHERTYPE_SG_NETGAMES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_NETGAMES))}, + "ETHERTYPE_SG_RESV": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_RESV))}, + "ETHERTYPE_SIMNET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SIMNET))}, + "ETHERTYPE_SLOWPROTOCOLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SLOWPROTOCOLS))}, + "ETHERTYPE_SNA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNA))}, + "ETHERTYPE_SNMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNMP))}, + "ETHERTYPE_SONIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SONIX))}, + "ETHERTYPE_SPIDER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPIDER))}, + "ETHERTYPE_SPRITE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPRITE))}, + "ETHERTYPE_STP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_STP))}, + "ETHERTYPE_TALARIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARIS))}, + "ETHERTYPE_TALARISMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARISMC))}, + "ETHERTYPE_TCPCOMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPCOMP))}, + "ETHERTYPE_TCPSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPSM))}, + "ETHERTYPE_TEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TEC))}, + "ETHERTYPE_TIGAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TIGAN))}, + "ETHERTYPE_TRAIL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRAIL))}, + "ETHERTYPE_TRANSETHER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRANSETHER))}, + "ETHERTYPE_TYMSHARE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TYMSHARE))}, + "ETHERTYPE_UBBST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBBST))}, + "ETHERTYPE_UBDEBUG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDEBUG))}, + "ETHERTYPE_UBDIAGLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDIAGLOOP))}, + "ETHERTYPE_UBDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDL))}, + "ETHERTYPE_UBNIU": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNIU))}, + "ETHERTYPE_UBNMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNMC))}, + "ETHERTYPE_VALID": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VALID))}, + "ETHERTYPE_VARIAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VARIAN))}, + "ETHERTYPE_VAXELN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VAXELN))}, + "ETHERTYPE_VEECO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEECO))}, + "ETHERTYPE_VEXP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEXP))}, + "ETHERTYPE_VGLAB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VGLAB))}, + "ETHERTYPE_VINES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINES))}, + "ETHERTYPE_VINESECHO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESECHO))}, + "ETHERTYPE_VINESLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESLOOP))}, + "ETHERTYPE_VITAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VITAL))}, + "ETHERTYPE_VLAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLAN))}, + "ETHERTYPE_VLTLMAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLTLMAN))}, + "ETHERTYPE_VPROD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VPROD))}, + "ETHERTYPE_VURESERVED": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VURESERVED))}, + "ETHERTYPE_WATERLOO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WATERLOO))}, + "ETHERTYPE_WELLFLEET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WELLFLEET))}, + "ETHERTYPE_X25": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X25))}, + "ETHERTYPE_X75": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X75))}, + "ETHERTYPE_XNSSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XNSSM))}, + "ETHERTYPE_XTP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XTP))}, + "ETHER_ADDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ADDR_LEN))}, + "ETHER_CRC_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_LEN))}, + "ETHER_CRC_POLY_BE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_BE))}, + "ETHER_CRC_POLY_LE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_LE))}, + "ETHER_HDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_HDR_LEN))}, + "ETHER_MAX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN))}, + "ETHER_MAX_LEN_JUMBO": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN_JUMBO))}, + "ETHER_MIN_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MIN_LEN))}, + "ETHER_PPPOE_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_PPPOE_ENCAP_LEN))}, + "ETHER_TYPE_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_TYPE_LEN))}, + "ETHER_VLAN_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_VLAN_ENCAP_LEN))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_CLOSEM": {"untyped int", constant.MakeInt64(int64(q.F_CLOSEM))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FSCTL": {"untyped int", constant.MakeInt64(int64(q.F_FSCTL))}, + "F_FSDIRMASK": {"untyped int", constant.MakeInt64(int64(q.F_FSDIRMASK))}, + "F_FSIN": {"untyped int", constant.MakeInt64(int64(q.F_FSIN))}, + "F_FSINOUT": {"untyped int", constant.MakeInt64(int64(q.F_FSINOUT))}, + "F_FSOUT": {"untyped int", constant.MakeInt64(int64(q.F_FSOUT))}, + "F_FSPRIV": {"untyped int", constant.MakeInt64(int64(q.F_FSPRIV))}, + "F_FSVOID": {"untyped int", constant.MakeInt64(int64(q.F_FSVOID))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_GETNOSIGPIPE))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_MAXFD": {"untyped int", constant.MakeInt64(int64(q.F_MAXFD))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_PARAM_MASK": {"untyped int", constant.MakeInt64(int64(q.F_PARAM_MASK))}, + "F_PARAM_MAX": {"untyped int", constant.MakeInt64(int64(q.F_PARAM_MAX))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_SETNOSIGPIPE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFA_ROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_ROUTE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DOCSCABLEUPSTREAMCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAMCHANNEL))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ECONET": {"untyped int", constant.MakeInt64(int64(q.IFT_ECONET))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LINEGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_LINEGROUP))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_PON155": {"untyped int", constant.MakeInt64(int64(q.IFT_PON155))}, + "IFT_PON622": {"untyped int", constant.MakeInt64(int64(q.IFT_PON622))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPATM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPATM))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_Q2931": {"untyped int", constant.MakeInt64(int64(q.IFT_Q2931))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SIPSIG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPSIG))}, + "IFT_SIPTG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPTG))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_TELINK))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VIRTUALTG": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALTG))}, + "IFT_VOICEDID": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEDID))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEEMFGD": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEMFGD))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFGDEANA": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFGDEANA))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERCABLE": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERCABLE))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IPV6_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6_ICMP))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VRRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VRRP))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_EF": {"untyped int", constant.MakeInt64(int64(q.IP_EF))}, + "IP_ERRORMTU": {"untyped int", constant.MakeInt64(int64(q.IP_ERRORMTU))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINFRAGSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_MINFRAGSIZE))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ALIGNMENT_16MB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_16MB))}, + "MAP_ALIGNMENT_1TB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_1TB))}, + "MAP_ALIGNMENT_256TB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_256TB))}, + "MAP_ALIGNMENT_4GB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_4GB))}, + "MAP_ALIGNMENT_64KB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_64KB))}, + "MAP_ALIGNMENT_64PB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_64PB))}, + "MAP_ALIGNMENT_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_MASK))}, + "MAP_ALIGNMENT_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_SHIFT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_INHERIT_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_COPY))}, + "MAP_INHERIT_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DEFAULT))}, + "MAP_INHERIT_DONATE_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DONATE_COPY))}, + "MAP_INHERIT_NONE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_NONE))}, + "MAP_INHERIT_SHARE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_SHARE))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MAP_WIRED": {"untyped int", constant.MakeInt64(int64(q.MAP_WIRED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_BCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_BCAST))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONTROLMBUF": {"untyped int", constant.MakeInt64(int64(q.MSG_CONTROLMBUF))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_IOVUSRSPACE": {"untyped int", constant.MakeInt64(int64(q.MSG_IOVUSRSPACE))}, + "MSG_LENUSRSPACE": {"untyped int", constant.MakeInt64(int64(q.MSG_LENUSRSPACE))}, + "MSG_MCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_MCAST))}, + "MSG_NAMEMBUF": {"untyped int", constant.MakeInt64(int64(q.MSG_NAMEMBUF))}, + "MSG_NBIO": {"untyped int", constant.MakeInt64(int64(q.MSG_NBIO))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_USERFLAGS": {"untyped int", constant.MakeInt64(int64(q.MSG_USERFLAGS))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_OIFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_OIFLIST))}, + "NET_RT_OOIFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_OOIFLIST))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFIOGETBMAP": {"untyped int", constant.MakeInt64(int64(q.OFIOGETBMAP))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_ALT_IO": {"untyped int", constant.MakeInt64(int64(q.O_ALT_IO))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.O_NOSIGPIPE))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PRI_IOFLUSH": {"untyped int", constant.MakeInt64(int64(q.PRI_IOFLUSH))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_TAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_TAG))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_TAG": {"untyped int", constant.MakeInt64(int64(q.RTA_TAG))}, + "RTF_ANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTF_ANNOUNCE))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_SRC": {"untyped int", constant.MakeInt64(int64(q.RTF_SRC))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_CHGADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_CHGADDR))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LLINFO_UPD": {"untyped int", constant.MakeInt64(int64(q.RTM_LLINFO_UPD))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_OIFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_OIFINFO))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_OOIFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_OOIFINFO))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_SETGATE": {"untyped int", constant.MakeInt64(int64(q.RTM_SETGATE))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFSYNC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFADDRPREF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDRPREF))}, + "SIOCGIFALIAS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFALIAS))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDLT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDLT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLINKSTR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLINKSTR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGVH": {"untyped int", constant.MakeInt64(int64(q.SIOCGVH))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCINITIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCINITIFADDR))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFSYNC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFADDRPREF": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDRPREF))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLINKSTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLINKSTR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSVH": {"untyped int", constant.MakeInt64(int64(q.SIOCSVH))}, + "SIOCZIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCZIFDATA))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_FLAGS_MASK": {"untyped int", constant.MakeInt64(int64(q.SOCK_FLAGS_MASK))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SOCK_NOSIGPIPE))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NOHEADER": {"untyped int", constant.MakeInt64(int64(q.SO_NOHEADER))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_OVERFLOWED": {"untyped int", constant.MakeInt64(int64(q.SO_OVERFLOWED))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SYSCTL_VERSION": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERSION))}, + "SYSCTL_VERS_0": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_0))}, + "SYSCTL_VERS_1": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_1))}, + "SYSCTL_VERS_MASK": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_MASK))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FD))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_LINK))}, + "SYS_EXTATTR_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FD))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_LINK))}, + "SYS_EXTATTR_LIST_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FD))}, + "SYS_EXTATTR_LIST_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FILE))}, + "SYS_EXTATTR_LIST_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_LINK))}, + "SYS_EXTATTR_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FD))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTATTR_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_LINK))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHROOT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FEXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_FEXECVE))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FKTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_FKTRACE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATVFS1": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATVFS1))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FSYNC_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC_RANGE))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCONTEXT))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETVFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETVFSSTAT))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KQUEUE1": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE1))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MODCTL))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_NTP_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_GETTIME))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_PACCEPT))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PMC_CONTROL": {"untyped int", constant.MakeInt64(int64(q.SYS_PMC_CONTROL))}, + "SYS_PMC_GET_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_PMC_GET_INFO))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POLLTS": {"untyped int", constant.MakeInt64(int64(q.SYS_POLLTS))}, + "SYS_POSIX_FADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FADVISE))}, + "SYS_POSIX_SPAWN": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_SPAWN))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PSET_ASSIGN": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_ASSIGN))}, + "SYS_PSET_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_CREATE))}, + "SYS_PSET_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_DESTROY))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_RASCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_RASCTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMCONFIG": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCONFIG))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETCONTEXT))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGQUEUEINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATVFS1": {"untyped int", constant.MakeInt64(int64(q.SYS_STATVFS1))}, + "SYS_SWAPCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCTL))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_VADVISE))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LWP_CONTINUE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CONTINUE))}, + "SYS__LWP_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CREATE))}, + "SYS__LWP_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CTL))}, + "SYS__LWP_DETACH": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_DETACH))}, + "SYS__LWP_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_EXIT))}, + "SYS__LWP_GETNAME": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_GETNAME))}, + "SYS__LWP_GETPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_GETPRIVATE))}, + "SYS__LWP_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_KILL))}, + "SYS__LWP_PARK": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_PARK))}, + "SYS__LWP_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SELF))}, + "SYS__LWP_SETNAME": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SETNAME))}, + "SYS__LWP_SETPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SETPRIVATE))}, + "SYS__LWP_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SUSPEND))}, + "SYS__LWP_UNPARK": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_UNPARK))}, + "SYS__LWP_UNPARK_ALL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_UNPARK_ALL))}, + "SYS__LWP_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_WAIT))}, + "SYS__LWP_WAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_WAKEUP))}, + "SYS__PSET_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS__PSET_BIND))}, + "SYS__SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_GETAFFINITY))}, + "SYS__SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_GETPARAM))}, + "SYS__SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_SETAFFINITY))}, + "SYS__SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_SETPARAM))}, + "SYS___CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS___CLONE))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS___GETLOGIN))}, + "SYS___POSIX_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_CHOWN))}, + "SYS___POSIX_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_FCHOWN))}, + "SYS___POSIX_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_LCHOWN))}, + "SYS___POSIX_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_RENAME))}, + "SYS___QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS___QUOTACTL))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS___SETLOGIN))}, + "SYS___SIGACTION_SIGTRAMP": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGACTION_SIGTRAMP))}, + "SYS___SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGTIMEDWAIT))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_ARCH1": {"untyped int", constant.MakeInt64(int64(q.S_ARCH1))}, + "S_ARCH2": {"untyped int", constant.MakeInt64(int64(q.S_ARCH2))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFWHT": {"untyped int", constant.MakeInt64(int64(q.S_IFWHT))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISTXT": {"untyped int", constant.MakeInt64(int64(q.S_ISTXT))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "S_LOGIN_SET": {"untyped int", constant.MakeInt64(int64(q.S_LOGIN_SET))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGCTL": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGCTL))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDCDTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCDCDTIMESTAMP))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLAG_CDTRCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CDTRCTS))}, + "TIOCFLAG_CLOCAL": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CLOCAL))}, + "TIOCFLAG_CRTSCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CRTSCTS))}, + "TIOCFLAG_MDMBUF": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_MDMBUF))}, + "TIOCFLAG_SOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_SOFTCAR))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCGFLAGS))}, + "TIOCGLINED": {"untyped int", constant.MakeInt64(int64(q.TIOCGLINED))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGQSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGQSIZE))}, + "TIOCGRANTPT": {"untyped int", constant.MakeInt64(int64(q.TIOCGRANTPT))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGSIZE))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCPTMGET))}, + "TIOCPTSNAME": {"untyped int", constant.MakeInt64(int64(q.TIOCPTSNAME))}, + "TIOCRCVFRAME": {"untyped int", constant.MakeInt64(int64(q.TIOCRCVFRAME))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCSFLAGS))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLINED": {"untyped int", constant.MakeInt64(int64(q.TIOCSLINED))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSQSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCSQSIZE))}, + "TIOCSSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCSSIZE))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TIOCXMTFRAME": {"untyped int", constant.MakeInt64(int64(q.TIOCXMTFRAME))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WALLSIG": {"untyped int", constant.MakeInt64(int64(q.WALLSIG))}, + "WALTSIG": {"untyped int", constant.MakeInt64(int64(q.WALTSIG))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WNOZOMBIE": {"untyped int", constant.MakeInt64(int64(q.WNOZOMBIE))}, + "WOPTSCHECKED": {"untyped int", constant.MakeInt64(int64(q.WOPTSCHECKED))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_netbsd_amd64.go b/pkg/syscall/go123_export_netbsd_amd64.go new file mode 100755 index 00000000..1dd122ab --- /dev/null +++ b/pkg/syscall/go123_export_netbsd_amd64.go @@ -0,0 +1,2129 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Mclpool": reflect.TypeOf((*q.Mclpool)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Sysctlnode": reflect.TypeOf((*q.Sysctlnode)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ARP": {"untyped int", constant.MakeInt64(int64(q.AF_ARP))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_OROUTE))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FRELAY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRELAY))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_STRIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_STRIP))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCFEEDBACK))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCGFEEDBACK))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGSTATSOLD": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATSOLD))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCSFEEDBACK))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTCPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSTCPF))}, + "BIOCSUDPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSUDPF))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALIGNMENT32": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT32))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DFLTBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_DFLTBUFSIZE))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CLONE_CSIGNAL))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_PID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PID))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "CTL_QUERY": {"untyped int", constant.MakeInt64(int64(q.CTL_QUERY))}, + "DIOCBSFLUSH": {"untyped int", constant.MakeInt64(int64(q.DIOCBSFLUSH))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_AOS": {"untyped int", constant.MakeInt64(int64(q.DLT_AOS))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CAN_SOCKETCAN": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN_SOCKETCAN))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DECT": {"untyped int", constant.MakeInt64(int64(q.DLT_DECT))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FC_2": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2))}, + "DLT_FC_2_WITH_FRAME_DELIMS": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2_WITH_FRAME_DELIMS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_GSMTAP_ABIS": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_ABIS))}, + "DLT_GSMTAP_UM": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_UM))}, + "DLT_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HDLC))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.DLT_HIPPI))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPV4": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV4))}, + "DLT_IPV6": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV6))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_EVDEV": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_EVDEV))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RAWAF_MASK": {"untyped int", constant.MakeInt64(int64(q.DLT_RAWAF_MASK))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_USB_LINUX_MMAPPED": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX_MMAPPED))}, + "DLT_WIHART": {"untyped int", constant.MakeInt64(int64(q.DLT_WIHART))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMUL_LINUX": {"untyped int", constant.MakeInt64(int64(q.EMUL_LINUX))}, + "EMUL_LINUX32": {"untyped int", constant.MakeInt64(int64(q.EMUL_LINUX32))}, + "EMUL_MAXID": {"untyped int", constant.MakeInt64(int64(q.EMUL_MAXID))}, + "ETHERCAP_JUMBO_MTU": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_JUMBO_MTU))}, + "ETHERCAP_VLAN_HWTAGGING": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_VLAN_HWTAGGING))}, + "ETHERCAP_VLAN_MTU": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_VLAN_MTU))}, + "ETHERMIN": {"untyped int", constant.MakeInt64(int64(q.ETHERMIN))}, + "ETHERMTU": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU))}, + "ETHERMTU_JUMBO": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU_JUMBO))}, + "ETHERTYPE_8023": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_8023))}, + "ETHERTYPE_AARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AARP))}, + "ETHERTYPE_ACCTON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ACCTON))}, + "ETHERTYPE_AEONIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AEONIC))}, + "ETHERTYPE_ALPHA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ALPHA))}, + "ETHERTYPE_AMBER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMBER))}, + "ETHERTYPE_AMOEBA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMOEBA))}, + "ETHERTYPE_APOLLO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLO))}, + "ETHERTYPE_APOLLODOMAIN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLODOMAIN))}, + "ETHERTYPE_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLETALK))}, + "ETHERTYPE_APPLITEK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLITEK))}, + "ETHERTYPE_ARGONAUT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARGONAUT))}, + "ETHERTYPE_ARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARP))}, + "ETHERTYPE_AT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AT))}, + "ETHERTYPE_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATALK))}, + "ETHERTYPE_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATOMIC))}, + "ETHERTYPE_ATT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATT))}, + "ETHERTYPE_ATTSTANFORD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATTSTANFORD))}, + "ETHERTYPE_AUTOPHON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AUTOPHON))}, + "ETHERTYPE_AXIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AXIS))}, + "ETHERTYPE_BCLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BCLOOP))}, + "ETHERTYPE_BOFL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BOFL))}, + "ETHERTYPE_CABLETRON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CABLETRON))}, + "ETHERTYPE_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CHAOS))}, + "ETHERTYPE_COMDESIGN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMDESIGN))}, + "ETHERTYPE_COMPUGRAPHIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMPUGRAPHIC))}, + "ETHERTYPE_COUNTERPOINT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COUNTERPOINT))}, + "ETHERTYPE_CRONUS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUS))}, + "ETHERTYPE_CRONUSVLN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUSVLN))}, + "ETHERTYPE_DCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DCA))}, + "ETHERTYPE_DDE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DDE))}, + "ETHERTYPE_DEBNI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DEBNI))}, + "ETHERTYPE_DECAM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECAM))}, + "ETHERTYPE_DECCUST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECCUST))}, + "ETHERTYPE_DECDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDIAG))}, + "ETHERTYPE_DECDNS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDNS))}, + "ETHERTYPE_DECDTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDTS))}, + "ETHERTYPE_DECEXPER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECEXPER))}, + "ETHERTYPE_DECLAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLAST))}, + "ETHERTYPE_DECLTM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLTM))}, + "ETHERTYPE_DECMUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECMUMPS))}, + "ETHERTYPE_DECNETBIOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECNETBIOS))}, + "ETHERTYPE_DELTACON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DELTACON))}, + "ETHERTYPE_DIDDLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DIDDLE))}, + "ETHERTYPE_DLOG1": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG1))}, + "ETHERTYPE_DLOG2": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG2))}, + "ETHERTYPE_DN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DN))}, + "ETHERTYPE_DOGFIGHT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DOGFIGHT))}, + "ETHERTYPE_DSMD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DSMD))}, + "ETHERTYPE_ECMA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ECMA))}, + "ETHERTYPE_ENCRYPT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ENCRYPT))}, + "ETHERTYPE_ES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ES))}, + "ETHERTYPE_EXCELAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXCELAN))}, + "ETHERTYPE_EXPERDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXPERDATA))}, + "ETHERTYPE_FLIP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLIP))}, + "ETHERTYPE_FLOWCONTROL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLOWCONTROL))}, + "ETHERTYPE_FRARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FRARP))}, + "ETHERTYPE_GENDYN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_GENDYN))}, + "ETHERTYPE_HAYES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HAYES))}, + "ETHERTYPE_HIPPI_FP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HIPPI_FP))}, + "ETHERTYPE_HITACHI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HITACHI))}, + "ETHERTYPE_HP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HP))}, + "ETHERTYPE_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUP))}, + "ETHERTYPE_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUPAT))}, + "ETHERTYPE_IMLBL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBL))}, + "ETHERTYPE_IMLBLDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBLDIAG))}, + "ETHERTYPE_IP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IP))}, + "ETHERTYPE_IPAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPAS))}, + "ETHERTYPE_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPV6))}, + "ETHERTYPE_IPX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPX))}, + "ETHERTYPE_IPXNEW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPXNEW))}, + "ETHERTYPE_KALPANA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_KALPANA))}, + "ETHERTYPE_LANBRIDGE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANBRIDGE))}, + "ETHERTYPE_LANPROBE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANPROBE))}, + "ETHERTYPE_LAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LAT))}, + "ETHERTYPE_LBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LBACK))}, + "ETHERTYPE_LITTLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LITTLE))}, + "ETHERTYPE_LOGICRAFT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOGICRAFT))}, + "ETHERTYPE_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOOPBACK))}, + "ETHERTYPE_MATRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MATRA))}, + "ETHERTYPE_MAX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MAX))}, + "ETHERTYPE_MERIT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MERIT))}, + "ETHERTYPE_MICP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MICP))}, + "ETHERTYPE_MOPDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPDL))}, + "ETHERTYPE_MOPRC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPRC))}, + "ETHERTYPE_MOTOROLA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOTOROLA))}, + "ETHERTYPE_MPLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS))}, + "ETHERTYPE_MPLS_MCAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS_MCAST))}, + "ETHERTYPE_MUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MUMPS))}, + "ETHERTYPE_NBPCC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCC))}, + "ETHERTYPE_NBPCLAIM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLAIM))}, + "ETHERTYPE_NBPCLREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLREQ))}, + "ETHERTYPE_NBPCLRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLRSP))}, + "ETHERTYPE_NBPCREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCREQ))}, + "ETHERTYPE_NBPCRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCRSP))}, + "ETHERTYPE_NBPDG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDG))}, + "ETHERTYPE_NBPDGB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDGB))}, + "ETHERTYPE_NBPDLTE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDLTE))}, + "ETHERTYPE_NBPRAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAR))}, + "ETHERTYPE_NBPRAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAS))}, + "ETHERTYPE_NBPRST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRST))}, + "ETHERTYPE_NBPSCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPSCD))}, + "ETHERTYPE_NBPVCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPVCD))}, + "ETHERTYPE_NBS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBS))}, + "ETHERTYPE_NCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NCD))}, + "ETHERTYPE_NESTAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NESTAR))}, + "ETHERTYPE_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NETBEUI))}, + "ETHERTYPE_NOVELL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NOVELL))}, + "ETHERTYPE_NS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NS))}, + "ETHERTYPE_NSAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSAT))}, + "ETHERTYPE_NSCOMPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSCOMPAT))}, + "ETHERTYPE_NTRAILER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NTRAILER))}, + "ETHERTYPE_OS9": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9))}, + "ETHERTYPE_OS9NET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9NET))}, + "ETHERTYPE_PACER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PACER))}, + "ETHERTYPE_PAE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PAE))}, + "ETHERTYPE_PCS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PCS))}, + "ETHERTYPE_PLANNING": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PLANNING))}, + "ETHERTYPE_PPP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPP))}, + "ETHERTYPE_PPPOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOE))}, + "ETHERTYPE_PPPOEDISC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOEDISC))}, + "ETHERTYPE_PRIMENTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PRIMENTS))}, + "ETHERTYPE_PUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUP))}, + "ETHERTYPE_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUPAT))}, + "ETHERTYPE_RACAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RACAL))}, + "ETHERTYPE_RATIONAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RATIONAL))}, + "ETHERTYPE_RAWFR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RAWFR))}, + "ETHERTYPE_RCL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RCL))}, + "ETHERTYPE_RDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RDP))}, + "ETHERTYPE_RETIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RETIX))}, + "ETHERTYPE_REVARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_REVARP))}, + "ETHERTYPE_SCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SCA))}, + "ETHERTYPE_SECTRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECTRA))}, + "ETHERTYPE_SECUREDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECUREDATA))}, + "ETHERTYPE_SGITW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SGITW))}, + "ETHERTYPE_SG_BOUNCE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_BOUNCE))}, + "ETHERTYPE_SG_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_DIAG))}, + "ETHERTYPE_SG_NETGAMES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_NETGAMES))}, + "ETHERTYPE_SG_RESV": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_RESV))}, + "ETHERTYPE_SIMNET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SIMNET))}, + "ETHERTYPE_SLOWPROTOCOLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SLOWPROTOCOLS))}, + "ETHERTYPE_SNA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNA))}, + "ETHERTYPE_SNMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNMP))}, + "ETHERTYPE_SONIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SONIX))}, + "ETHERTYPE_SPIDER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPIDER))}, + "ETHERTYPE_SPRITE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPRITE))}, + "ETHERTYPE_STP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_STP))}, + "ETHERTYPE_TALARIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARIS))}, + "ETHERTYPE_TALARISMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARISMC))}, + "ETHERTYPE_TCPCOMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPCOMP))}, + "ETHERTYPE_TCPSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPSM))}, + "ETHERTYPE_TEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TEC))}, + "ETHERTYPE_TIGAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TIGAN))}, + "ETHERTYPE_TRAIL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRAIL))}, + "ETHERTYPE_TRANSETHER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRANSETHER))}, + "ETHERTYPE_TYMSHARE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TYMSHARE))}, + "ETHERTYPE_UBBST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBBST))}, + "ETHERTYPE_UBDEBUG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDEBUG))}, + "ETHERTYPE_UBDIAGLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDIAGLOOP))}, + "ETHERTYPE_UBDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDL))}, + "ETHERTYPE_UBNIU": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNIU))}, + "ETHERTYPE_UBNMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNMC))}, + "ETHERTYPE_VALID": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VALID))}, + "ETHERTYPE_VARIAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VARIAN))}, + "ETHERTYPE_VAXELN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VAXELN))}, + "ETHERTYPE_VEECO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEECO))}, + "ETHERTYPE_VEXP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEXP))}, + "ETHERTYPE_VGLAB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VGLAB))}, + "ETHERTYPE_VINES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINES))}, + "ETHERTYPE_VINESECHO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESECHO))}, + "ETHERTYPE_VINESLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESLOOP))}, + "ETHERTYPE_VITAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VITAL))}, + "ETHERTYPE_VLAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLAN))}, + "ETHERTYPE_VLTLMAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLTLMAN))}, + "ETHERTYPE_VPROD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VPROD))}, + "ETHERTYPE_VURESERVED": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VURESERVED))}, + "ETHERTYPE_WATERLOO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WATERLOO))}, + "ETHERTYPE_WELLFLEET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WELLFLEET))}, + "ETHERTYPE_X25": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X25))}, + "ETHERTYPE_X75": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X75))}, + "ETHERTYPE_XNSSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XNSSM))}, + "ETHERTYPE_XTP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XTP))}, + "ETHER_ADDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ADDR_LEN))}, + "ETHER_CRC_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_LEN))}, + "ETHER_CRC_POLY_BE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_BE))}, + "ETHER_CRC_POLY_LE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_LE))}, + "ETHER_HDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_HDR_LEN))}, + "ETHER_MAX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN))}, + "ETHER_MAX_LEN_JUMBO": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN_JUMBO))}, + "ETHER_MIN_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MIN_LEN))}, + "ETHER_PPPOE_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_PPPOE_ENCAP_LEN))}, + "ETHER_TYPE_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_TYPE_LEN))}, + "ETHER_VLAN_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_VLAN_ENCAP_LEN))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_CLOSEM": {"untyped int", constant.MakeInt64(int64(q.F_CLOSEM))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FSCTL": {"untyped int", constant.MakeInt64(int64(q.F_FSCTL))}, + "F_FSDIRMASK": {"untyped int", constant.MakeInt64(int64(q.F_FSDIRMASK))}, + "F_FSIN": {"untyped int", constant.MakeInt64(int64(q.F_FSIN))}, + "F_FSINOUT": {"untyped int", constant.MakeInt64(int64(q.F_FSINOUT))}, + "F_FSOUT": {"untyped int", constant.MakeInt64(int64(q.F_FSOUT))}, + "F_FSPRIV": {"untyped int", constant.MakeInt64(int64(q.F_FSPRIV))}, + "F_FSVOID": {"untyped int", constant.MakeInt64(int64(q.F_FSVOID))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_GETNOSIGPIPE))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_MAXFD": {"untyped int", constant.MakeInt64(int64(q.F_MAXFD))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_PARAM_MASK": {"untyped int", constant.MakeInt64(int64(q.F_PARAM_MASK))}, + "F_PARAM_MAX": {"untyped int", constant.MakeInt64(int64(q.F_PARAM_MAX))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_SETNOSIGPIPE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFA_ROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_ROUTE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DOCSCABLEUPSTREAMCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAMCHANNEL))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ECONET": {"untyped int", constant.MakeInt64(int64(q.IFT_ECONET))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LINEGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_LINEGROUP))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_PON155": {"untyped int", constant.MakeInt64(int64(q.IFT_PON155))}, + "IFT_PON622": {"untyped int", constant.MakeInt64(int64(q.IFT_PON622))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPATM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPATM))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_Q2931": {"untyped int", constant.MakeInt64(int64(q.IFT_Q2931))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SIPSIG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPSIG))}, + "IFT_SIPTG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPTG))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_TELINK))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VIRTUALTG": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALTG))}, + "IFT_VOICEDID": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEDID))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEEMFGD": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEMFGD))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFGDEANA": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFGDEANA))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERCABLE": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERCABLE))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IPV6_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6_ICMP))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VRRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VRRP))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_EF": {"untyped int", constant.MakeInt64(int64(q.IP_EF))}, + "IP_ERRORMTU": {"untyped int", constant.MakeInt64(int64(q.IP_ERRORMTU))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINFRAGSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_MINFRAGSIZE))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ALIGNMENT_16MB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_16MB))}, + "MAP_ALIGNMENT_1TB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_1TB))}, + "MAP_ALIGNMENT_256TB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_256TB))}, + "MAP_ALIGNMENT_4GB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_4GB))}, + "MAP_ALIGNMENT_64KB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_64KB))}, + "MAP_ALIGNMENT_64PB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_64PB))}, + "MAP_ALIGNMENT_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_MASK))}, + "MAP_ALIGNMENT_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_SHIFT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_INHERIT_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_COPY))}, + "MAP_INHERIT_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DEFAULT))}, + "MAP_INHERIT_DONATE_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DONATE_COPY))}, + "MAP_INHERIT_NONE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_NONE))}, + "MAP_INHERIT_SHARE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_SHARE))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MAP_WIRED": {"untyped int", constant.MakeInt64(int64(q.MAP_WIRED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_BCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_BCAST))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONTROLMBUF": {"untyped int", constant.MakeInt64(int64(q.MSG_CONTROLMBUF))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_IOVUSRSPACE": {"untyped int", constant.MakeInt64(int64(q.MSG_IOVUSRSPACE))}, + "MSG_LENUSRSPACE": {"untyped int", constant.MakeInt64(int64(q.MSG_LENUSRSPACE))}, + "MSG_MCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_MCAST))}, + "MSG_NAMEMBUF": {"untyped int", constant.MakeInt64(int64(q.MSG_NAMEMBUF))}, + "MSG_NBIO": {"untyped int", constant.MakeInt64(int64(q.MSG_NBIO))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_USERFLAGS": {"untyped int", constant.MakeInt64(int64(q.MSG_USERFLAGS))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_OIFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_OIFLIST))}, + "NET_RT_OOIFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_OOIFLIST))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFIOGETBMAP": {"untyped int", constant.MakeInt64(int64(q.OFIOGETBMAP))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_ALT_IO": {"untyped int", constant.MakeInt64(int64(q.O_ALT_IO))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.O_NOSIGPIPE))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PRI_IOFLUSH": {"untyped int", constant.MakeInt64(int64(q.PRI_IOFLUSH))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_TAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_TAG))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_TAG": {"untyped int", constant.MakeInt64(int64(q.RTA_TAG))}, + "RTF_ANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTF_ANNOUNCE))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_SRC": {"untyped int", constant.MakeInt64(int64(q.RTF_SRC))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_CHGADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_CHGADDR))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LLINFO_UPD": {"untyped int", constant.MakeInt64(int64(q.RTM_LLINFO_UPD))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_OIFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_OIFINFO))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_OOIFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_OOIFINFO))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_SETGATE": {"untyped int", constant.MakeInt64(int64(q.RTM_SETGATE))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFSYNC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFADDRPREF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDRPREF))}, + "SIOCGIFALIAS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFALIAS))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDLT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDLT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLINKSTR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLINKSTR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGVH": {"untyped int", constant.MakeInt64(int64(q.SIOCGVH))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCINITIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCINITIFADDR))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFSYNC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFADDRPREF": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDRPREF))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLINKSTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLINKSTR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSVH": {"untyped int", constant.MakeInt64(int64(q.SIOCSVH))}, + "SIOCZIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCZIFDATA))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_FLAGS_MASK": {"untyped int", constant.MakeInt64(int64(q.SOCK_FLAGS_MASK))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SOCK_NOSIGPIPE))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NOHEADER": {"untyped int", constant.MakeInt64(int64(q.SO_NOHEADER))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_OVERFLOWED": {"untyped int", constant.MakeInt64(int64(q.SO_OVERFLOWED))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SYSCTL_VERSION": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERSION))}, + "SYSCTL_VERS_0": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_0))}, + "SYSCTL_VERS_1": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_1))}, + "SYSCTL_VERS_MASK": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_MASK))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FD))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_LINK))}, + "SYS_EXTATTR_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FD))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_LINK))}, + "SYS_EXTATTR_LIST_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FD))}, + "SYS_EXTATTR_LIST_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FILE))}, + "SYS_EXTATTR_LIST_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_LINK))}, + "SYS_EXTATTR_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FD))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTATTR_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_LINK))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHROOT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FEXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_FEXECVE))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FKTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_FKTRACE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATVFS1": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATVFS1))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FSYNC_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC_RANGE))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCONTEXT))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETVFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETVFSSTAT))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KQUEUE1": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE1))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MODCTL))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_NTP_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_GETTIME))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_PACCEPT))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PMC_CONTROL": {"untyped int", constant.MakeInt64(int64(q.SYS_PMC_CONTROL))}, + "SYS_PMC_GET_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_PMC_GET_INFO))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POLLTS": {"untyped int", constant.MakeInt64(int64(q.SYS_POLLTS))}, + "SYS_POSIX_FADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FADVISE))}, + "SYS_POSIX_SPAWN": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_SPAWN))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PSET_ASSIGN": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_ASSIGN))}, + "SYS_PSET_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_CREATE))}, + "SYS_PSET_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_DESTROY))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_RASCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_RASCTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMCONFIG": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCONFIG))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETCONTEXT))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGQUEUEINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATVFS1": {"untyped int", constant.MakeInt64(int64(q.SYS_STATVFS1))}, + "SYS_SWAPCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCTL))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_VADVISE))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LWP_CONTINUE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CONTINUE))}, + "SYS__LWP_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CREATE))}, + "SYS__LWP_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CTL))}, + "SYS__LWP_DETACH": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_DETACH))}, + "SYS__LWP_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_EXIT))}, + "SYS__LWP_GETNAME": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_GETNAME))}, + "SYS__LWP_GETPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_GETPRIVATE))}, + "SYS__LWP_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_KILL))}, + "SYS__LWP_PARK": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_PARK))}, + "SYS__LWP_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SELF))}, + "SYS__LWP_SETNAME": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SETNAME))}, + "SYS__LWP_SETPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SETPRIVATE))}, + "SYS__LWP_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SUSPEND))}, + "SYS__LWP_UNPARK": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_UNPARK))}, + "SYS__LWP_UNPARK_ALL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_UNPARK_ALL))}, + "SYS__LWP_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_WAIT))}, + "SYS__LWP_WAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_WAKEUP))}, + "SYS__PSET_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS__PSET_BIND))}, + "SYS__SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_GETAFFINITY))}, + "SYS__SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_GETPARAM))}, + "SYS__SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_SETAFFINITY))}, + "SYS__SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_SETPARAM))}, + "SYS___CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS___CLONE))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS___GETLOGIN))}, + "SYS___POSIX_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_CHOWN))}, + "SYS___POSIX_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_FCHOWN))}, + "SYS___POSIX_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_LCHOWN))}, + "SYS___POSIX_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_RENAME))}, + "SYS___QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS___QUOTACTL))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS___SETLOGIN))}, + "SYS___SIGACTION_SIGTRAMP": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGACTION_SIGTRAMP))}, + "SYS___SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGTIMEDWAIT))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_ARCH1": {"untyped int", constant.MakeInt64(int64(q.S_ARCH1))}, + "S_ARCH2": {"untyped int", constant.MakeInt64(int64(q.S_ARCH2))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFWHT": {"untyped int", constant.MakeInt64(int64(q.S_IFWHT))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISTXT": {"untyped int", constant.MakeInt64(int64(q.S_ISTXT))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "S_LOGIN_SET": {"untyped int", constant.MakeInt64(int64(q.S_LOGIN_SET))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGCTL": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGCTL))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDCDTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCDCDTIMESTAMP))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLAG_CDTRCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CDTRCTS))}, + "TIOCFLAG_CLOCAL": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CLOCAL))}, + "TIOCFLAG_CRTSCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CRTSCTS))}, + "TIOCFLAG_MDMBUF": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_MDMBUF))}, + "TIOCFLAG_SOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_SOFTCAR))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCGFLAGS))}, + "TIOCGLINED": {"untyped int", constant.MakeInt64(int64(q.TIOCGLINED))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGQSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGQSIZE))}, + "TIOCGRANTPT": {"untyped int", constant.MakeInt64(int64(q.TIOCGRANTPT))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGSIZE))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCPTMGET))}, + "TIOCPTSNAME": {"untyped int", constant.MakeInt64(int64(q.TIOCPTSNAME))}, + "TIOCRCVFRAME": {"untyped int", constant.MakeInt64(int64(q.TIOCRCVFRAME))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCSFLAGS))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLINED": {"untyped int", constant.MakeInt64(int64(q.TIOCSLINED))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSQSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCSQSIZE))}, + "TIOCSSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCSSIZE))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TIOCXMTFRAME": {"untyped int", constant.MakeInt64(int64(q.TIOCXMTFRAME))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WALLSIG": {"untyped int", constant.MakeInt64(int64(q.WALLSIG))}, + "WALTSIG": {"untyped int", constant.MakeInt64(int64(q.WALTSIG))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WNOZOMBIE": {"untyped int", constant.MakeInt64(int64(q.WNOZOMBIE))}, + "WOPTSCHECKED": {"untyped int", constant.MakeInt64(int64(q.WOPTSCHECKED))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_netbsd_arm.go b/pkg/syscall/go123_export_netbsd_arm.go new file mode 100755 index 00000000..3b69df34 --- /dev/null +++ b/pkg/syscall/go123_export_netbsd_arm.go @@ -0,0 +1,2115 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Mclpool": reflect.TypeOf((*q.Mclpool)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Sysctlnode": reflect.TypeOf((*q.Sysctlnode)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ARP": {"untyped int", constant.MakeInt64(int64(q.AF_ARP))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_OROUTE))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FRELAY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRELAY))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_STRIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_STRIP))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCFEEDBACK))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCGFEEDBACK))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGSTATSOLD": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATSOLD))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCSFEEDBACK))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTCPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSTCPF))}, + "BIOCSUDPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSUDPF))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALIGNMENT32": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT32))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DFLTBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_DFLTBUFSIZE))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "CTL_QUERY": {"untyped int", constant.MakeInt64(int64(q.CTL_QUERY))}, + "DIOCBSFLUSH": {"untyped int", constant.MakeInt64(int64(q.DIOCBSFLUSH))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_AOS": {"untyped int", constant.MakeInt64(int64(q.DLT_AOS))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CAN_SOCKETCAN": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN_SOCKETCAN))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DECT": {"untyped int", constant.MakeInt64(int64(q.DLT_DECT))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FC_2": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2))}, + "DLT_FC_2_WITH_FRAME_DELIMS": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2_WITH_FRAME_DELIMS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_GSMTAP_ABIS": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_ABIS))}, + "DLT_GSMTAP_UM": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_UM))}, + "DLT_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HDLC))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.DLT_HIPPI))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPV4": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV4))}, + "DLT_IPV6": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV6))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_EVDEV": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_EVDEV))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RAWAF_MASK": {"untyped int", constant.MakeInt64(int64(q.DLT_RAWAF_MASK))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_USB_LINUX_MMAPPED": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX_MMAPPED))}, + "DLT_WIHART": {"untyped int", constant.MakeInt64(int64(q.DLT_WIHART))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMUL_LINUX": {"untyped int", constant.MakeInt64(int64(q.EMUL_LINUX))}, + "EMUL_LINUX32": {"untyped int", constant.MakeInt64(int64(q.EMUL_LINUX32))}, + "EMUL_MAXID": {"untyped int", constant.MakeInt64(int64(q.EMUL_MAXID))}, + "ETHERCAP_JUMBO_MTU": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_JUMBO_MTU))}, + "ETHERCAP_VLAN_HWTAGGING": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_VLAN_HWTAGGING))}, + "ETHERCAP_VLAN_MTU": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_VLAN_MTU))}, + "ETHERMIN": {"untyped int", constant.MakeInt64(int64(q.ETHERMIN))}, + "ETHERMTU": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU))}, + "ETHERMTU_JUMBO": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU_JUMBO))}, + "ETHERTYPE_8023": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_8023))}, + "ETHERTYPE_AARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AARP))}, + "ETHERTYPE_ACCTON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ACCTON))}, + "ETHERTYPE_AEONIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AEONIC))}, + "ETHERTYPE_ALPHA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ALPHA))}, + "ETHERTYPE_AMBER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMBER))}, + "ETHERTYPE_AMOEBA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMOEBA))}, + "ETHERTYPE_APOLLO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLO))}, + "ETHERTYPE_APOLLODOMAIN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLODOMAIN))}, + "ETHERTYPE_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLETALK))}, + "ETHERTYPE_APPLITEK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLITEK))}, + "ETHERTYPE_ARGONAUT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARGONAUT))}, + "ETHERTYPE_ARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARP))}, + "ETHERTYPE_AT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AT))}, + "ETHERTYPE_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATALK))}, + "ETHERTYPE_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATOMIC))}, + "ETHERTYPE_ATT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATT))}, + "ETHERTYPE_ATTSTANFORD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATTSTANFORD))}, + "ETHERTYPE_AUTOPHON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AUTOPHON))}, + "ETHERTYPE_AXIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AXIS))}, + "ETHERTYPE_BCLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BCLOOP))}, + "ETHERTYPE_BOFL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BOFL))}, + "ETHERTYPE_CABLETRON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CABLETRON))}, + "ETHERTYPE_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CHAOS))}, + "ETHERTYPE_COMDESIGN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMDESIGN))}, + "ETHERTYPE_COMPUGRAPHIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMPUGRAPHIC))}, + "ETHERTYPE_COUNTERPOINT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COUNTERPOINT))}, + "ETHERTYPE_CRONUS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUS))}, + "ETHERTYPE_CRONUSVLN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUSVLN))}, + "ETHERTYPE_DCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DCA))}, + "ETHERTYPE_DDE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DDE))}, + "ETHERTYPE_DEBNI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DEBNI))}, + "ETHERTYPE_DECAM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECAM))}, + "ETHERTYPE_DECCUST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECCUST))}, + "ETHERTYPE_DECDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDIAG))}, + "ETHERTYPE_DECDNS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDNS))}, + "ETHERTYPE_DECDTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDTS))}, + "ETHERTYPE_DECEXPER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECEXPER))}, + "ETHERTYPE_DECLAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLAST))}, + "ETHERTYPE_DECLTM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLTM))}, + "ETHERTYPE_DECMUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECMUMPS))}, + "ETHERTYPE_DECNETBIOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECNETBIOS))}, + "ETHERTYPE_DELTACON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DELTACON))}, + "ETHERTYPE_DIDDLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DIDDLE))}, + "ETHERTYPE_DLOG1": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG1))}, + "ETHERTYPE_DLOG2": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG2))}, + "ETHERTYPE_DN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DN))}, + "ETHERTYPE_DOGFIGHT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DOGFIGHT))}, + "ETHERTYPE_DSMD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DSMD))}, + "ETHERTYPE_ECMA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ECMA))}, + "ETHERTYPE_ENCRYPT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ENCRYPT))}, + "ETHERTYPE_ES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ES))}, + "ETHERTYPE_EXCELAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXCELAN))}, + "ETHERTYPE_EXPERDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXPERDATA))}, + "ETHERTYPE_FLIP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLIP))}, + "ETHERTYPE_FLOWCONTROL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLOWCONTROL))}, + "ETHERTYPE_FRARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FRARP))}, + "ETHERTYPE_GENDYN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_GENDYN))}, + "ETHERTYPE_HAYES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HAYES))}, + "ETHERTYPE_HIPPI_FP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HIPPI_FP))}, + "ETHERTYPE_HITACHI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HITACHI))}, + "ETHERTYPE_HP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HP))}, + "ETHERTYPE_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUP))}, + "ETHERTYPE_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUPAT))}, + "ETHERTYPE_IMLBL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBL))}, + "ETHERTYPE_IMLBLDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBLDIAG))}, + "ETHERTYPE_IP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IP))}, + "ETHERTYPE_IPAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPAS))}, + "ETHERTYPE_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPV6))}, + "ETHERTYPE_IPX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPX))}, + "ETHERTYPE_IPXNEW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPXNEW))}, + "ETHERTYPE_KALPANA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_KALPANA))}, + "ETHERTYPE_LANBRIDGE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANBRIDGE))}, + "ETHERTYPE_LANPROBE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANPROBE))}, + "ETHERTYPE_LAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LAT))}, + "ETHERTYPE_LBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LBACK))}, + "ETHERTYPE_LITTLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LITTLE))}, + "ETHERTYPE_LOGICRAFT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOGICRAFT))}, + "ETHERTYPE_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOOPBACK))}, + "ETHERTYPE_MATRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MATRA))}, + "ETHERTYPE_MAX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MAX))}, + "ETHERTYPE_MERIT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MERIT))}, + "ETHERTYPE_MICP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MICP))}, + "ETHERTYPE_MOPDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPDL))}, + "ETHERTYPE_MOPRC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPRC))}, + "ETHERTYPE_MOTOROLA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOTOROLA))}, + "ETHERTYPE_MPLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS))}, + "ETHERTYPE_MPLS_MCAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS_MCAST))}, + "ETHERTYPE_MUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MUMPS))}, + "ETHERTYPE_NBPCC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCC))}, + "ETHERTYPE_NBPCLAIM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLAIM))}, + "ETHERTYPE_NBPCLREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLREQ))}, + "ETHERTYPE_NBPCLRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLRSP))}, + "ETHERTYPE_NBPCREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCREQ))}, + "ETHERTYPE_NBPCRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCRSP))}, + "ETHERTYPE_NBPDG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDG))}, + "ETHERTYPE_NBPDGB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDGB))}, + "ETHERTYPE_NBPDLTE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDLTE))}, + "ETHERTYPE_NBPRAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAR))}, + "ETHERTYPE_NBPRAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAS))}, + "ETHERTYPE_NBPRST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRST))}, + "ETHERTYPE_NBPSCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPSCD))}, + "ETHERTYPE_NBPVCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPVCD))}, + "ETHERTYPE_NBS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBS))}, + "ETHERTYPE_NCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NCD))}, + "ETHERTYPE_NESTAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NESTAR))}, + "ETHERTYPE_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NETBEUI))}, + "ETHERTYPE_NOVELL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NOVELL))}, + "ETHERTYPE_NS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NS))}, + "ETHERTYPE_NSAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSAT))}, + "ETHERTYPE_NSCOMPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSCOMPAT))}, + "ETHERTYPE_NTRAILER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NTRAILER))}, + "ETHERTYPE_OS9": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9))}, + "ETHERTYPE_OS9NET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9NET))}, + "ETHERTYPE_PACER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PACER))}, + "ETHERTYPE_PAE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PAE))}, + "ETHERTYPE_PCS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PCS))}, + "ETHERTYPE_PLANNING": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PLANNING))}, + "ETHERTYPE_PPP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPP))}, + "ETHERTYPE_PPPOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOE))}, + "ETHERTYPE_PPPOEDISC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOEDISC))}, + "ETHERTYPE_PRIMENTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PRIMENTS))}, + "ETHERTYPE_PUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUP))}, + "ETHERTYPE_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUPAT))}, + "ETHERTYPE_RACAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RACAL))}, + "ETHERTYPE_RATIONAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RATIONAL))}, + "ETHERTYPE_RAWFR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RAWFR))}, + "ETHERTYPE_RCL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RCL))}, + "ETHERTYPE_RDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RDP))}, + "ETHERTYPE_RETIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RETIX))}, + "ETHERTYPE_REVARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_REVARP))}, + "ETHERTYPE_SCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SCA))}, + "ETHERTYPE_SECTRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECTRA))}, + "ETHERTYPE_SECUREDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECUREDATA))}, + "ETHERTYPE_SGITW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SGITW))}, + "ETHERTYPE_SG_BOUNCE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_BOUNCE))}, + "ETHERTYPE_SG_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_DIAG))}, + "ETHERTYPE_SG_NETGAMES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_NETGAMES))}, + "ETHERTYPE_SG_RESV": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_RESV))}, + "ETHERTYPE_SIMNET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SIMNET))}, + "ETHERTYPE_SLOWPROTOCOLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SLOWPROTOCOLS))}, + "ETHERTYPE_SNA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNA))}, + "ETHERTYPE_SNMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNMP))}, + "ETHERTYPE_SONIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SONIX))}, + "ETHERTYPE_SPIDER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPIDER))}, + "ETHERTYPE_SPRITE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPRITE))}, + "ETHERTYPE_STP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_STP))}, + "ETHERTYPE_TALARIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARIS))}, + "ETHERTYPE_TALARISMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARISMC))}, + "ETHERTYPE_TCPCOMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPCOMP))}, + "ETHERTYPE_TCPSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPSM))}, + "ETHERTYPE_TEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TEC))}, + "ETHERTYPE_TIGAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TIGAN))}, + "ETHERTYPE_TRAIL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRAIL))}, + "ETHERTYPE_TRANSETHER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRANSETHER))}, + "ETHERTYPE_TYMSHARE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TYMSHARE))}, + "ETHERTYPE_UBBST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBBST))}, + "ETHERTYPE_UBDEBUG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDEBUG))}, + "ETHERTYPE_UBDIAGLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDIAGLOOP))}, + "ETHERTYPE_UBDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDL))}, + "ETHERTYPE_UBNIU": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNIU))}, + "ETHERTYPE_UBNMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNMC))}, + "ETHERTYPE_VALID": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VALID))}, + "ETHERTYPE_VARIAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VARIAN))}, + "ETHERTYPE_VAXELN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VAXELN))}, + "ETHERTYPE_VEECO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEECO))}, + "ETHERTYPE_VEXP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEXP))}, + "ETHERTYPE_VGLAB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VGLAB))}, + "ETHERTYPE_VINES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINES))}, + "ETHERTYPE_VINESECHO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESECHO))}, + "ETHERTYPE_VINESLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESLOOP))}, + "ETHERTYPE_VITAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VITAL))}, + "ETHERTYPE_VLAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLAN))}, + "ETHERTYPE_VLTLMAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLTLMAN))}, + "ETHERTYPE_VPROD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VPROD))}, + "ETHERTYPE_VURESERVED": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VURESERVED))}, + "ETHERTYPE_WATERLOO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WATERLOO))}, + "ETHERTYPE_WELLFLEET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WELLFLEET))}, + "ETHERTYPE_X25": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X25))}, + "ETHERTYPE_X75": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X75))}, + "ETHERTYPE_XNSSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XNSSM))}, + "ETHERTYPE_XTP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XTP))}, + "ETHER_ADDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ADDR_LEN))}, + "ETHER_CRC_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_LEN))}, + "ETHER_CRC_POLY_BE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_BE))}, + "ETHER_CRC_POLY_LE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_LE))}, + "ETHER_HDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_HDR_LEN))}, + "ETHER_MAX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN))}, + "ETHER_MAX_LEN_JUMBO": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN_JUMBO))}, + "ETHER_MIN_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MIN_LEN))}, + "ETHER_PPPOE_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_PPPOE_ENCAP_LEN))}, + "ETHER_TYPE_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_TYPE_LEN))}, + "ETHER_VLAN_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_VLAN_ENCAP_LEN))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_CLOSEM": {"untyped int", constant.MakeInt64(int64(q.F_CLOSEM))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FSCTL": {"untyped int", constant.MakeInt64(int64(q.F_FSCTL))}, + "F_FSDIRMASK": {"untyped int", constant.MakeInt64(int64(q.F_FSDIRMASK))}, + "F_FSIN": {"untyped int", constant.MakeInt64(int64(q.F_FSIN))}, + "F_FSINOUT": {"untyped int", constant.MakeInt64(int64(q.F_FSINOUT))}, + "F_FSOUT": {"untyped int", constant.MakeInt64(int64(q.F_FSOUT))}, + "F_FSPRIV": {"untyped int", constant.MakeInt64(int64(q.F_FSPRIV))}, + "F_FSVOID": {"untyped int", constant.MakeInt64(int64(q.F_FSVOID))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_GETNOSIGPIPE))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_MAXFD": {"untyped int", constant.MakeInt64(int64(q.F_MAXFD))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_PARAM_MASK": {"untyped int", constant.MakeInt64(int64(q.F_PARAM_MASK))}, + "F_PARAM_MAX": {"untyped int", constant.MakeInt64(int64(q.F_PARAM_MAX))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_SETNOSIGPIPE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFA_ROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_ROUTE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DOCSCABLEUPSTREAMCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAMCHANNEL))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ECONET": {"untyped int", constant.MakeInt64(int64(q.IFT_ECONET))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LINEGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_LINEGROUP))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_PON155": {"untyped int", constant.MakeInt64(int64(q.IFT_PON155))}, + "IFT_PON622": {"untyped int", constant.MakeInt64(int64(q.IFT_PON622))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPATM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPATM))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_Q2931": {"untyped int", constant.MakeInt64(int64(q.IFT_Q2931))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SIPSIG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPSIG))}, + "IFT_SIPTG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPTG))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_TELINK))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VIRTUALTG": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALTG))}, + "IFT_VOICEDID": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEDID))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEEMFGD": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEMFGD))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFGDEANA": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFGDEANA))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERCABLE": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERCABLE))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IPV6_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6_ICMP))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VRRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VRRP))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_EF": {"untyped int", constant.MakeInt64(int64(q.IP_EF))}, + "IP_ERRORMTU": {"untyped int", constant.MakeInt64(int64(q.IP_ERRORMTU))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINFRAGSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_MINFRAGSIZE))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ALIGNMENT_16MB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_16MB))}, + "MAP_ALIGNMENT_1TB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_1TB))}, + "MAP_ALIGNMENT_256TB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_256TB))}, + "MAP_ALIGNMENT_4GB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_4GB))}, + "MAP_ALIGNMENT_64KB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_64KB))}, + "MAP_ALIGNMENT_64PB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_64PB))}, + "MAP_ALIGNMENT_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_MASK))}, + "MAP_ALIGNMENT_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_SHIFT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_INHERIT_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_COPY))}, + "MAP_INHERIT_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DEFAULT))}, + "MAP_INHERIT_DONATE_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DONATE_COPY))}, + "MAP_INHERIT_NONE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_NONE))}, + "MAP_INHERIT_SHARE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_SHARE))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MAP_WIRED": {"untyped int", constant.MakeInt64(int64(q.MAP_WIRED))}, + "MSG_BCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_BCAST))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONTROLMBUF": {"untyped int", constant.MakeInt64(int64(q.MSG_CONTROLMBUF))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_IOVUSRSPACE": {"untyped int", constant.MakeInt64(int64(q.MSG_IOVUSRSPACE))}, + "MSG_LENUSRSPACE": {"untyped int", constant.MakeInt64(int64(q.MSG_LENUSRSPACE))}, + "MSG_MCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_MCAST))}, + "MSG_NAMEMBUF": {"untyped int", constant.MakeInt64(int64(q.MSG_NAMEMBUF))}, + "MSG_NBIO": {"untyped int", constant.MakeInt64(int64(q.MSG_NBIO))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_USERFLAGS": {"untyped int", constant.MakeInt64(int64(q.MSG_USERFLAGS))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_OIFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_OIFLIST))}, + "NET_RT_OOIFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_OOIFLIST))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFIOGETBMAP": {"untyped int", constant.MakeInt64(int64(q.OFIOGETBMAP))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_ALT_IO": {"untyped int", constant.MakeInt64(int64(q.O_ALT_IO))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.O_NOSIGPIPE))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PRI_IOFLUSH": {"untyped int", constant.MakeInt64(int64(q.PRI_IOFLUSH))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_TAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_TAG))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_TAG": {"untyped int", constant.MakeInt64(int64(q.RTA_TAG))}, + "RTF_ANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTF_ANNOUNCE))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_SRC": {"untyped int", constant.MakeInt64(int64(q.RTF_SRC))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_CHGADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_CHGADDR))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LLINFO_UPD": {"untyped int", constant.MakeInt64(int64(q.RTM_LLINFO_UPD))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_OIFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_OIFINFO))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_OOIFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_OOIFINFO))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_SETGATE": {"untyped int", constant.MakeInt64(int64(q.RTM_SETGATE))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFSYNC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFADDRPREF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDRPREF))}, + "SIOCGIFALIAS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFALIAS))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDLT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDLT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLINKSTR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLINKSTR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGVH": {"untyped int", constant.MakeInt64(int64(q.SIOCGVH))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCINITIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCINITIFADDR))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFSYNC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFADDRPREF": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDRPREF))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLINKSTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLINKSTR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSVH": {"untyped int", constant.MakeInt64(int64(q.SIOCSVH))}, + "SIOCZIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCZIFDATA))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_FLAGS_MASK": {"untyped int", constant.MakeInt64(int64(q.SOCK_FLAGS_MASK))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SOCK_NOSIGPIPE))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NOHEADER": {"untyped int", constant.MakeInt64(int64(q.SO_NOHEADER))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_OVERFLOWED": {"untyped int", constant.MakeInt64(int64(q.SO_OVERFLOWED))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SYSCTL_VERSION": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERSION))}, + "SYSCTL_VERS_0": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_0))}, + "SYSCTL_VERS_1": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_1))}, + "SYSCTL_VERS_MASK": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_MASK))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FD))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_LINK))}, + "SYS_EXTATTR_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FD))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_LINK))}, + "SYS_EXTATTR_LIST_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FD))}, + "SYS_EXTATTR_LIST_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FILE))}, + "SYS_EXTATTR_LIST_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_LINK))}, + "SYS_EXTATTR_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FD))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTATTR_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_LINK))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHROOT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FEXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_FEXECVE))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FKTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_FKTRACE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATVFS1": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATVFS1))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FSYNC_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC_RANGE))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCONTEXT))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETVFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETVFSSTAT))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KQUEUE1": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE1))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MODCTL))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_NTP_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_GETTIME))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_PACCEPT))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PMC_CONTROL": {"untyped int", constant.MakeInt64(int64(q.SYS_PMC_CONTROL))}, + "SYS_PMC_GET_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_PMC_GET_INFO))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POLLTS": {"untyped int", constant.MakeInt64(int64(q.SYS_POLLTS))}, + "SYS_POSIX_FADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FADVISE))}, + "SYS_POSIX_SPAWN": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_SPAWN))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PSET_ASSIGN": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_ASSIGN))}, + "SYS_PSET_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_CREATE))}, + "SYS_PSET_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_DESTROY))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_RASCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_RASCTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMCONFIG": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCONFIG))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETCONTEXT))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGQUEUEINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATVFS1": {"untyped int", constant.MakeInt64(int64(q.SYS_STATVFS1))}, + "SYS_SWAPCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCTL))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_VADVISE))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LWP_CONTINUE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CONTINUE))}, + "SYS__LWP_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CREATE))}, + "SYS__LWP_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CTL))}, + "SYS__LWP_DETACH": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_DETACH))}, + "SYS__LWP_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_EXIT))}, + "SYS__LWP_GETNAME": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_GETNAME))}, + "SYS__LWP_GETPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_GETPRIVATE))}, + "SYS__LWP_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_KILL))}, + "SYS__LWP_PARK": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_PARK))}, + "SYS__LWP_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SELF))}, + "SYS__LWP_SETNAME": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SETNAME))}, + "SYS__LWP_SETPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SETPRIVATE))}, + "SYS__LWP_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SUSPEND))}, + "SYS__LWP_UNPARK": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_UNPARK))}, + "SYS__LWP_UNPARK_ALL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_UNPARK_ALL))}, + "SYS__LWP_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_WAIT))}, + "SYS__LWP_WAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_WAKEUP))}, + "SYS__PSET_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS__PSET_BIND))}, + "SYS__SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_GETAFFINITY))}, + "SYS__SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_GETPARAM))}, + "SYS__SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_SETAFFINITY))}, + "SYS__SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_SETPARAM))}, + "SYS___CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS___CLONE))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS___GETLOGIN))}, + "SYS___POSIX_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_CHOWN))}, + "SYS___POSIX_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_FCHOWN))}, + "SYS___POSIX_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_LCHOWN))}, + "SYS___POSIX_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_RENAME))}, + "SYS___QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS___QUOTACTL))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS___SETLOGIN))}, + "SYS___SIGACTION_SIGTRAMP": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGACTION_SIGTRAMP))}, + "SYS___SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGTIMEDWAIT))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_ARCH1": {"untyped int", constant.MakeInt64(int64(q.S_ARCH1))}, + "S_ARCH2": {"untyped int", constant.MakeInt64(int64(q.S_ARCH2))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFWHT": {"untyped int", constant.MakeInt64(int64(q.S_IFWHT))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISTXT": {"untyped int", constant.MakeInt64(int64(q.S_ISTXT))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGCTL": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGCTL))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDCDTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCDCDTIMESTAMP))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLAG_CDTRCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CDTRCTS))}, + "TIOCFLAG_CLOCAL": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CLOCAL))}, + "TIOCFLAG_CRTSCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CRTSCTS))}, + "TIOCFLAG_MDMBUF": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_MDMBUF))}, + "TIOCFLAG_SOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_SOFTCAR))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCGFLAGS))}, + "TIOCGLINED": {"untyped int", constant.MakeInt64(int64(q.TIOCGLINED))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGQSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGQSIZE))}, + "TIOCGRANTPT": {"untyped int", constant.MakeInt64(int64(q.TIOCGRANTPT))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGSIZE))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCPTMGET))}, + "TIOCPTSNAME": {"untyped int", constant.MakeInt64(int64(q.TIOCPTSNAME))}, + "TIOCRCVFRAME": {"untyped int", constant.MakeInt64(int64(q.TIOCRCVFRAME))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCSFLAGS))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLINED": {"untyped int", constant.MakeInt64(int64(q.TIOCSLINED))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSQSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCSQSIZE))}, + "TIOCSSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCSSIZE))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TIOCXMTFRAME": {"untyped int", constant.MakeInt64(int64(q.TIOCXMTFRAME))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WALLSIG": {"untyped int", constant.MakeInt64(int64(q.WALLSIG))}, + "WALTSIG": {"untyped int", constant.MakeInt64(int64(q.WALTSIG))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WNOZOMBIE": {"untyped int", constant.MakeInt64(int64(q.WNOZOMBIE))}, + "WOPTSCHECKED": {"untyped int", constant.MakeInt64(int64(q.WOPTSCHECKED))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_netbsd_arm64.go b/pkg/syscall/go123_export_netbsd_arm64.go new file mode 100755 index 00000000..1dd122ab --- /dev/null +++ b/pkg/syscall/go123_export_netbsd_arm64.go @@ -0,0 +1,2129 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Mclpool": reflect.TypeOf((*q.Mclpool)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Sysctlnode": reflect.TypeOf((*q.Sysctlnode)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_ARP": {"untyped int", constant.MakeInt64(int64(q.AF_ARP))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.AF_IEEE80211))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_OROUTE))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FRELAY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRELAY))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_STRIP": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_STRIP))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCFEEDBACK))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCGFEEDBACK))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGSTATSOLD": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATSOLD))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSFEEDBACK": {"untyped int", constant.MakeInt64(int64(q.BIOCSFEEDBACK))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTCPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSTCPF))}, + "BIOCSUDPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSUDPF))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALIGNMENT32": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT32))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DFLTBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_DFLTBUFSIZE))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CLONE_CSIGNAL": {"untyped int", constant.MakeInt64(int64(q.CLONE_CSIGNAL))}, + "CLONE_FILES": {"untyped int", constant.MakeInt64(int64(q.CLONE_FILES))}, + "CLONE_FS": {"untyped int", constant.MakeInt64(int64(q.CLONE_FS))}, + "CLONE_PID": {"untyped int", constant.MakeInt64(int64(q.CLONE_PID))}, + "CLONE_PTRACE": {"untyped int", constant.MakeInt64(int64(q.CLONE_PTRACE))}, + "CLONE_SIGHAND": {"untyped int", constant.MakeInt64(int64(q.CLONE_SIGHAND))}, + "CLONE_VFORK": {"untyped int", constant.MakeInt64(int64(q.CLONE_VFORK))}, + "CLONE_VM": {"untyped int", constant.MakeInt64(int64(q.CLONE_VM))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "CTL_QUERY": {"untyped int", constant.MakeInt64(int64(q.CTL_QUERY))}, + "DIOCBSFLUSH": {"untyped int", constant.MakeInt64(int64(q.DIOCBSFLUSH))}, + "DLT_A429": {"untyped int", constant.MakeInt64(int64(q.DLT_A429))}, + "DLT_A653_ICM": {"untyped int", constant.MakeInt64(int64(q.DLT_A653_ICM))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_AOS": {"untyped int", constant.MakeInt64(int64(q.DLT_AOS))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_AX25_KISS": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25_KISS))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_BLUETOOTH_HCI_H4": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4))}, + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_BLUETOOTH_HCI_H4_WITH_PHDR))}, + "DLT_CAN20B": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN20B))}, + "DLT_CAN_SOCKETCAN": {"untyped int", constant.MakeInt64(int64(q.DLT_CAN_SOCKETCAN))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_C_HDLC_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC_WITH_DIR))}, + "DLT_DECT": {"untyped int", constant.MakeInt64(int64(q.DLT_DECT))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FC_2": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2))}, + "DLT_FC_2_WITH_FRAME_DELIMS": {"untyped int", constant.MakeInt64(int64(q.DLT_FC_2_WITH_FRAME_DELIMS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FLEXRAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FLEXRAY))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_FRELAY_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY_WITH_DIR))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_GSMTAP_ABIS": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_ABIS))}, + "DLT_GSMTAP_UM": {"untyped int", constant.MakeInt64(int64(q.DLT_GSMTAP_UM))}, + "DLT_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HDLC))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.DLT_HIPPI))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IEEE802_15_4": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4))}, + "DLT_IEEE802_15_4_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_LINUX))}, + "DLT_IEEE802_15_4_NONASK_PHY": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_15_4_NONASK_PHY))}, + "DLT_IEEE802_16_MAC_CPS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS))}, + "DLT_IEEE802_16_MAC_CPS_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_16_MAC_CPS_RADIO))}, + "DLT_IPMB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB))}, + "DLT_IPMB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_IPMB_LINUX))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPV4": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV4))}, + "DLT_IPV6": {"untyped int", constant.MakeInt64(int64(q.DLT_IPV6))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_ISM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ISM))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_JUNIPER_ST": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ST))}, + "DLT_JUNIPER_VP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_VP))}, + "DLT_LAPB_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPB_WITH_DIR))}, + "DLT_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LAPD))}, + "DLT_LIN": {"untyped int", constant.MakeInt64(int64(q.DLT_LIN))}, + "DLT_LINUX_EVDEV": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_EVDEV))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_MFR))}, + "DLT_MOST": {"untyped int", constant.MakeInt64(int64(q.DLT_MOST))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPI": {"untyped int", constant.MakeInt64(int64(q.DLT_PPI))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PPP_WITH_DIR": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_WITH_DIR))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAIF1": {"untyped int", constant.MakeInt64(int64(q.DLT_RAIF1))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RAWAF_MASK": {"untyped int", constant.MakeInt64(int64(q.DLT_RAWAF_MASK))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SITA": {"untyped int", constant.MakeInt64(int64(q.DLT_SITA))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "DLT_USB": {"untyped int", constant.MakeInt64(int64(q.DLT_USB))}, + "DLT_USB_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX))}, + "DLT_USB_LINUX_MMAPPED": {"untyped int", constant.MakeInt64(int64(q.DLT_USB_LINUX_MMAPPED))}, + "DLT_WIHART": {"untyped int", constant.MakeInt64(int64(q.DLT_WIHART))}, + "DLT_X2E_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_SERIAL))}, + "DLT_X2E_XORAYA": {"untyped int", constant.MakeInt64(int64(q.DLT_X2E_XORAYA))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "DT_WHT": {"untyped int", constant.MakeInt64(int64(q.DT_WHT))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMUL_LINUX": {"untyped int", constant.MakeInt64(int64(q.EMUL_LINUX))}, + "EMUL_LINUX32": {"untyped int", constant.MakeInt64(int64(q.EMUL_LINUX32))}, + "EMUL_MAXID": {"untyped int", constant.MakeInt64(int64(q.EMUL_MAXID))}, + "ETHERCAP_JUMBO_MTU": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_JUMBO_MTU))}, + "ETHERCAP_VLAN_HWTAGGING": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_VLAN_HWTAGGING))}, + "ETHERCAP_VLAN_MTU": {"untyped int", constant.MakeInt64(int64(q.ETHERCAP_VLAN_MTU))}, + "ETHERMIN": {"untyped int", constant.MakeInt64(int64(q.ETHERMIN))}, + "ETHERMTU": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU))}, + "ETHERMTU_JUMBO": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU_JUMBO))}, + "ETHERTYPE_8023": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_8023))}, + "ETHERTYPE_AARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AARP))}, + "ETHERTYPE_ACCTON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ACCTON))}, + "ETHERTYPE_AEONIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AEONIC))}, + "ETHERTYPE_ALPHA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ALPHA))}, + "ETHERTYPE_AMBER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMBER))}, + "ETHERTYPE_AMOEBA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMOEBA))}, + "ETHERTYPE_APOLLO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLO))}, + "ETHERTYPE_APOLLODOMAIN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLODOMAIN))}, + "ETHERTYPE_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLETALK))}, + "ETHERTYPE_APPLITEK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLITEK))}, + "ETHERTYPE_ARGONAUT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARGONAUT))}, + "ETHERTYPE_ARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARP))}, + "ETHERTYPE_AT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AT))}, + "ETHERTYPE_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATALK))}, + "ETHERTYPE_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATOMIC))}, + "ETHERTYPE_ATT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATT))}, + "ETHERTYPE_ATTSTANFORD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATTSTANFORD))}, + "ETHERTYPE_AUTOPHON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AUTOPHON))}, + "ETHERTYPE_AXIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AXIS))}, + "ETHERTYPE_BCLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BCLOOP))}, + "ETHERTYPE_BOFL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BOFL))}, + "ETHERTYPE_CABLETRON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CABLETRON))}, + "ETHERTYPE_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CHAOS))}, + "ETHERTYPE_COMDESIGN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMDESIGN))}, + "ETHERTYPE_COMPUGRAPHIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMPUGRAPHIC))}, + "ETHERTYPE_COUNTERPOINT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COUNTERPOINT))}, + "ETHERTYPE_CRONUS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUS))}, + "ETHERTYPE_CRONUSVLN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUSVLN))}, + "ETHERTYPE_DCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DCA))}, + "ETHERTYPE_DDE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DDE))}, + "ETHERTYPE_DEBNI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DEBNI))}, + "ETHERTYPE_DECAM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECAM))}, + "ETHERTYPE_DECCUST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECCUST))}, + "ETHERTYPE_DECDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDIAG))}, + "ETHERTYPE_DECDNS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDNS))}, + "ETHERTYPE_DECDTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDTS))}, + "ETHERTYPE_DECEXPER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECEXPER))}, + "ETHERTYPE_DECLAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLAST))}, + "ETHERTYPE_DECLTM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLTM))}, + "ETHERTYPE_DECMUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECMUMPS))}, + "ETHERTYPE_DECNETBIOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECNETBIOS))}, + "ETHERTYPE_DELTACON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DELTACON))}, + "ETHERTYPE_DIDDLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DIDDLE))}, + "ETHERTYPE_DLOG1": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG1))}, + "ETHERTYPE_DLOG2": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG2))}, + "ETHERTYPE_DN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DN))}, + "ETHERTYPE_DOGFIGHT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DOGFIGHT))}, + "ETHERTYPE_DSMD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DSMD))}, + "ETHERTYPE_ECMA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ECMA))}, + "ETHERTYPE_ENCRYPT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ENCRYPT))}, + "ETHERTYPE_ES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ES))}, + "ETHERTYPE_EXCELAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXCELAN))}, + "ETHERTYPE_EXPERDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXPERDATA))}, + "ETHERTYPE_FLIP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLIP))}, + "ETHERTYPE_FLOWCONTROL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLOWCONTROL))}, + "ETHERTYPE_FRARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FRARP))}, + "ETHERTYPE_GENDYN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_GENDYN))}, + "ETHERTYPE_HAYES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HAYES))}, + "ETHERTYPE_HIPPI_FP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HIPPI_FP))}, + "ETHERTYPE_HITACHI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HITACHI))}, + "ETHERTYPE_HP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HP))}, + "ETHERTYPE_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUP))}, + "ETHERTYPE_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUPAT))}, + "ETHERTYPE_IMLBL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBL))}, + "ETHERTYPE_IMLBLDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBLDIAG))}, + "ETHERTYPE_IP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IP))}, + "ETHERTYPE_IPAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPAS))}, + "ETHERTYPE_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPV6))}, + "ETHERTYPE_IPX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPX))}, + "ETHERTYPE_IPXNEW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPXNEW))}, + "ETHERTYPE_KALPANA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_KALPANA))}, + "ETHERTYPE_LANBRIDGE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANBRIDGE))}, + "ETHERTYPE_LANPROBE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANPROBE))}, + "ETHERTYPE_LAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LAT))}, + "ETHERTYPE_LBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LBACK))}, + "ETHERTYPE_LITTLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LITTLE))}, + "ETHERTYPE_LOGICRAFT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOGICRAFT))}, + "ETHERTYPE_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOOPBACK))}, + "ETHERTYPE_MATRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MATRA))}, + "ETHERTYPE_MAX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MAX))}, + "ETHERTYPE_MERIT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MERIT))}, + "ETHERTYPE_MICP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MICP))}, + "ETHERTYPE_MOPDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPDL))}, + "ETHERTYPE_MOPRC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPRC))}, + "ETHERTYPE_MOTOROLA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOTOROLA))}, + "ETHERTYPE_MPLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS))}, + "ETHERTYPE_MPLS_MCAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS_MCAST))}, + "ETHERTYPE_MUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MUMPS))}, + "ETHERTYPE_NBPCC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCC))}, + "ETHERTYPE_NBPCLAIM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLAIM))}, + "ETHERTYPE_NBPCLREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLREQ))}, + "ETHERTYPE_NBPCLRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLRSP))}, + "ETHERTYPE_NBPCREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCREQ))}, + "ETHERTYPE_NBPCRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCRSP))}, + "ETHERTYPE_NBPDG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDG))}, + "ETHERTYPE_NBPDGB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDGB))}, + "ETHERTYPE_NBPDLTE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDLTE))}, + "ETHERTYPE_NBPRAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAR))}, + "ETHERTYPE_NBPRAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAS))}, + "ETHERTYPE_NBPRST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRST))}, + "ETHERTYPE_NBPSCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPSCD))}, + "ETHERTYPE_NBPVCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPVCD))}, + "ETHERTYPE_NBS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBS))}, + "ETHERTYPE_NCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NCD))}, + "ETHERTYPE_NESTAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NESTAR))}, + "ETHERTYPE_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NETBEUI))}, + "ETHERTYPE_NOVELL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NOVELL))}, + "ETHERTYPE_NS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NS))}, + "ETHERTYPE_NSAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSAT))}, + "ETHERTYPE_NSCOMPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSCOMPAT))}, + "ETHERTYPE_NTRAILER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NTRAILER))}, + "ETHERTYPE_OS9": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9))}, + "ETHERTYPE_OS9NET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9NET))}, + "ETHERTYPE_PACER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PACER))}, + "ETHERTYPE_PAE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PAE))}, + "ETHERTYPE_PCS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PCS))}, + "ETHERTYPE_PLANNING": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PLANNING))}, + "ETHERTYPE_PPP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPP))}, + "ETHERTYPE_PPPOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOE))}, + "ETHERTYPE_PPPOEDISC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOEDISC))}, + "ETHERTYPE_PRIMENTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PRIMENTS))}, + "ETHERTYPE_PUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUP))}, + "ETHERTYPE_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUPAT))}, + "ETHERTYPE_RACAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RACAL))}, + "ETHERTYPE_RATIONAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RATIONAL))}, + "ETHERTYPE_RAWFR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RAWFR))}, + "ETHERTYPE_RCL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RCL))}, + "ETHERTYPE_RDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RDP))}, + "ETHERTYPE_RETIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RETIX))}, + "ETHERTYPE_REVARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_REVARP))}, + "ETHERTYPE_SCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SCA))}, + "ETHERTYPE_SECTRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECTRA))}, + "ETHERTYPE_SECUREDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECUREDATA))}, + "ETHERTYPE_SGITW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SGITW))}, + "ETHERTYPE_SG_BOUNCE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_BOUNCE))}, + "ETHERTYPE_SG_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_DIAG))}, + "ETHERTYPE_SG_NETGAMES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_NETGAMES))}, + "ETHERTYPE_SG_RESV": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_RESV))}, + "ETHERTYPE_SIMNET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SIMNET))}, + "ETHERTYPE_SLOWPROTOCOLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SLOWPROTOCOLS))}, + "ETHERTYPE_SNA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNA))}, + "ETHERTYPE_SNMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNMP))}, + "ETHERTYPE_SONIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SONIX))}, + "ETHERTYPE_SPIDER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPIDER))}, + "ETHERTYPE_SPRITE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPRITE))}, + "ETHERTYPE_STP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_STP))}, + "ETHERTYPE_TALARIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARIS))}, + "ETHERTYPE_TALARISMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARISMC))}, + "ETHERTYPE_TCPCOMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPCOMP))}, + "ETHERTYPE_TCPSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPSM))}, + "ETHERTYPE_TEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TEC))}, + "ETHERTYPE_TIGAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TIGAN))}, + "ETHERTYPE_TRAIL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRAIL))}, + "ETHERTYPE_TRANSETHER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRANSETHER))}, + "ETHERTYPE_TYMSHARE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TYMSHARE))}, + "ETHERTYPE_UBBST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBBST))}, + "ETHERTYPE_UBDEBUG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDEBUG))}, + "ETHERTYPE_UBDIAGLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDIAGLOOP))}, + "ETHERTYPE_UBDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDL))}, + "ETHERTYPE_UBNIU": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNIU))}, + "ETHERTYPE_UBNMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNMC))}, + "ETHERTYPE_VALID": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VALID))}, + "ETHERTYPE_VARIAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VARIAN))}, + "ETHERTYPE_VAXELN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VAXELN))}, + "ETHERTYPE_VEECO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEECO))}, + "ETHERTYPE_VEXP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEXP))}, + "ETHERTYPE_VGLAB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VGLAB))}, + "ETHERTYPE_VINES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINES))}, + "ETHERTYPE_VINESECHO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESECHO))}, + "ETHERTYPE_VINESLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESLOOP))}, + "ETHERTYPE_VITAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VITAL))}, + "ETHERTYPE_VLAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLAN))}, + "ETHERTYPE_VLTLMAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLTLMAN))}, + "ETHERTYPE_VPROD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VPROD))}, + "ETHERTYPE_VURESERVED": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VURESERVED))}, + "ETHERTYPE_WATERLOO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WATERLOO))}, + "ETHERTYPE_WELLFLEET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WELLFLEET))}, + "ETHERTYPE_X25": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X25))}, + "ETHERTYPE_X75": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X75))}, + "ETHERTYPE_XNSSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XNSSM))}, + "ETHERTYPE_XTP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XTP))}, + "ETHER_ADDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ADDR_LEN))}, + "ETHER_CRC_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_LEN))}, + "ETHER_CRC_POLY_BE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_BE))}, + "ETHER_CRC_POLY_LE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_LE))}, + "ETHER_HDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_HDR_LEN))}, + "ETHER_MAX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN))}, + "ETHER_MAX_LEN_JUMBO": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN_JUMBO))}, + "ETHER_MIN_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MIN_LEN))}, + "ETHER_PPPOE_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_PPPOE_ENCAP_LEN))}, + "ETHER_TYPE_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_TYPE_LEN))}, + "ETHER_VLAN_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_VLAN_ENCAP_LEN))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_CLOSEM": {"untyped int", constant.MakeInt64(int64(q.F_CLOSEM))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FSCTL": {"untyped int", constant.MakeInt64(int64(q.F_FSCTL))}, + "F_FSDIRMASK": {"untyped int", constant.MakeInt64(int64(q.F_FSDIRMASK))}, + "F_FSIN": {"untyped int", constant.MakeInt64(int64(q.F_FSIN))}, + "F_FSINOUT": {"untyped int", constant.MakeInt64(int64(q.F_FSINOUT))}, + "F_FSOUT": {"untyped int", constant.MakeInt64(int64(q.F_FSOUT))}, + "F_FSPRIV": {"untyped int", constant.MakeInt64(int64(q.F_FSPRIV))}, + "F_FSVOID": {"untyped int", constant.MakeInt64(int64(q.F_FSVOID))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_GETNOSIGPIPE))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_MAXFD": {"untyped int", constant.MakeInt64(int64(q.F_MAXFD))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_PARAM_MASK": {"untyped int", constant.MakeInt64(int64(q.F_PARAM_MASK))}, + "F_PARAM_MAX": {"untyped int", constant.MakeInt64(int64(q.F_PARAM_MAX))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETNOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.F_SETNOSIGPIPE))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFA_ROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_ROUTE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DOCSCABLEUPSTREAMCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAMCHANNEL))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ECONET": {"untyped int", constant.MakeInt64(int64(q.IFT_ECONET))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LINEGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_LINEGROUP))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_PON155": {"untyped int", constant.MakeInt64(int64(q.IFT_PON155))}, + "IFT_PON622": {"untyped int", constant.MakeInt64(int64(q.IFT_PON622))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPATM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPATM))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_Q2931": {"untyped int", constant.MakeInt64(int64(q.IFT_Q2931))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SIPSIG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPSIG))}, + "IFT_SIPTG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPTG))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_STF": {"untyped int", constant.MakeInt64(int64(q.IFT_STF))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_TELINK))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VIRTUALTG": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALTG))}, + "IFT_VOICEDID": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEDID))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEEMFGD": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEMFGD))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFGDEANA": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFGDEANA))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERCABLE": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERCABLE))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_IPV6_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6_ICMP))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_VRRP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_VRRP))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPSEC_POLICY))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_EF": {"untyped int", constant.MakeInt64(int64(q.IP_EF))}, + "IP_ERRORMTU": {"untyped int", constant.MakeInt64(int64(q.IP_ERRORMTU))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPSEC_POLICY": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_POLICY))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINFRAGSIZE": {"untyped int", constant.MakeInt64(int64(q.IP_MINFRAGSIZE))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ALIGNMENT_16MB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_16MB))}, + "MAP_ALIGNMENT_1TB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_1TB))}, + "MAP_ALIGNMENT_256TB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_256TB))}, + "MAP_ALIGNMENT_4GB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_4GB))}, + "MAP_ALIGNMENT_64KB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_64KB))}, + "MAP_ALIGNMENT_64PB": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_64PB))}, + "MAP_ALIGNMENT_MASK": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_MASK))}, + "MAP_ALIGNMENT_SHIFT": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGNMENT_SHIFT))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_INHERIT_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_COPY))}, + "MAP_INHERIT_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DEFAULT))}, + "MAP_INHERIT_DONATE_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DONATE_COPY))}, + "MAP_INHERIT_NONE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_NONE))}, + "MAP_INHERIT_SHARE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_SHARE))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MAP_WIRED": {"untyped int", constant.MakeInt64(int64(q.MAP_WIRED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_BCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_BCAST))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CONTROLMBUF": {"untyped int", constant.MakeInt64(int64(q.MSG_CONTROLMBUF))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_IOVUSRSPACE": {"untyped int", constant.MakeInt64(int64(q.MSG_IOVUSRSPACE))}, + "MSG_LENUSRSPACE": {"untyped int", constant.MakeInt64(int64(q.MSG_LENUSRSPACE))}, + "MSG_MCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_MCAST))}, + "MSG_NAMEMBUF": {"untyped int", constant.MakeInt64(int64(q.MSG_NAMEMBUF))}, + "MSG_NBIO": {"untyped int", constant.MakeInt64(int64(q.MSG_NBIO))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_USERFLAGS": {"untyped int", constant.MakeInt64(int64(q.MSG_USERFLAGS))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_OIFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_OIFLIST))}, + "NET_RT_OOIFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_OOIFLIST))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFIOGETBMAP": {"untyped int", constant.MakeInt64(int64(q.OFIOGETBMAP))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_ALT_IO": {"untyped int", constant.MakeInt64(int64(q.O_ALT_IO))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECT": {"untyped int", constant.MakeInt64(int64(q.O_DIRECT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.O_NOSIGPIPE))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PRI_IOFLUSH": {"untyped int", constant.MakeInt64(int64(q.PRI_IOFLUSH))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_TAG": {"untyped int", constant.MakeInt64(int64(q.RTAX_TAG))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_TAG": {"untyped int", constant.MakeInt64(int64(q.RTA_TAG))}, + "RTF_ANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTF_ANNOUNCE))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_SRC": {"untyped int", constant.MakeInt64(int64(q.RTF_SRC))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_CHGADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_CHGADDR))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.RTM_IEEE80211))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LLINFO_UPD": {"untyped int", constant.MakeInt64(int64(q.RTM_LLINFO_UPD))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_OIFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_OIFINFO))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_OOIFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_OOIFINFO))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_SETGATE": {"untyped int", constant.MakeInt64(int64(q.RTM_SETGATE))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_CREDS": {"untyped int", constant.MakeInt64(int64(q.SCM_CREDS))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCGDRVSPEC))}, + "SIOCGETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFSYNC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFADDRPREF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDRPREF))}, + "SIOCGIFALIAS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFALIAS))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCAP))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDLT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDLT))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLINKSTR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLINKSTR))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGVH": {"untyped int", constant.MakeInt64(int64(q.SIOCGVH))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCINITIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCINITIFADDR))}, + "SIOCSDRVSPEC": {"untyped int", constant.MakeInt64(int64(q.SIOCSDRVSPEC))}, + "SIOCSETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFSYNC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFADDRPREF": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDRPREF))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFCAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFCAP))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLINKSTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLINKSTR))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSVH": {"untyped int", constant.MakeInt64(int64(q.SIOCSVH))}, + "SIOCZIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCZIFDATA))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_FLAGS_MASK": {"untyped int", constant.MakeInt64(int64(q.SOCK_FLAGS_MASK))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SOCK_NOSIGPIPE))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ACCEPTFILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTFILTER))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NOHEADER": {"untyped int", constant.MakeInt64(int64(q.SO_NOHEADER))}, + "SO_NOSIGPIPE": {"untyped int", constant.MakeInt64(int64(q.SO_NOSIGPIPE))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_OVERFLOWED": {"untyped int", constant.MakeInt64(int64(q.SO_OVERFLOWED))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SYSCTL_VERSION": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERSION))}, + "SYSCTL_VERS_0": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_0))}, + "SYSCTL_VERS_1": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_1))}, + "SYSCTL_VERS_MASK": {"untyped int", constant.MakeInt64(int64(q.SYSCTL_VERS_MASK))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_BREAK))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_EXTATTRCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTRCTL))}, + "SYS_EXTATTR_DELETE_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FD))}, + "SYS_EXTATTR_DELETE_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_FILE))}, + "SYS_EXTATTR_DELETE_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_DELETE_LINK))}, + "SYS_EXTATTR_GET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FD))}, + "SYS_EXTATTR_GET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_FILE))}, + "SYS_EXTATTR_GET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_GET_LINK))}, + "SYS_EXTATTR_LIST_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FD))}, + "SYS_EXTATTR_LIST_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_FILE))}, + "SYS_EXTATTR_LIST_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_LIST_LINK))}, + "SYS_EXTATTR_SET_FD": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FD))}, + "SYS_EXTATTR_SET_FILE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_FILE))}, + "SYS_EXTATTR_SET_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_EXTATTR_SET_LINK))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHROOT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FDATASYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FDATASYNC))}, + "SYS_FEXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_FEXECVE))}, + "SYS_FGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FGETXATTR))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FKTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_FKTRACE))}, + "SYS_FLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FLISTXATTR))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FREMOVEXATTR))}, + "SYS_FSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_FSETXATTR))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATVFS1": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATVFS1))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FSYNC_RANGE": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC_RANGE))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETCONTEXT))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_GETVFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETVFSSTAT))}, + "SYS_GETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_GETXATTR))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KQUEUE1": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE1))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHFLAGS))}, + "SYS_LCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHMOD))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LGETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LGETXATTR))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTXATTR))}, + "SYS_LLISTXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LLISTXATTR))}, + "SYS_LREMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LREMOVEXATTR))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_LSETXATTR))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_LUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_LUTIMES))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MODCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MODCTL))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MREMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MREMAP))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NTP_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_ADJTIME))}, + "SYS_NTP_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_NTP_GETTIME))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_PACCEPT))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PMC_CONTROL": {"untyped int", constant.MakeInt64(int64(q.SYS_PMC_CONTROL))}, + "SYS_PMC_GET_INFO": {"untyped int", constant.MakeInt64(int64(q.SYS_PMC_GET_INFO))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_POLLTS": {"untyped int", constant.MakeInt64(int64(q.SYS_POLLTS))}, + "SYS_POSIX_FADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_FADVISE))}, + "SYS_POSIX_SPAWN": {"untyped int", constant.MakeInt64(int64(q.SYS_POSIX_SPAWN))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PSET_ASSIGN": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_ASSIGN))}, + "SYS_PSET_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_CREATE))}, + "SYS_PSET_DESTROY": {"untyped int", constant.MakeInt64(int64(q.SYS_PSET_DESTROY))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_RASCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_RASCTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_REMOVEXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVEXATTR))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SBRK))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMCONFIG": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMCONFIG))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETCONTEXT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETCONTEXT))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SETXATTR": {"untyped int", constant.MakeInt64(int64(q.SYS_SETXATTR))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGQUEUEINFO": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGQUEUEINFO))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_SSTK": {"untyped int", constant.MakeInt64(int64(q.SYS_SSTK))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATVFS1": {"untyped int", constant.MakeInt64(int64(q.SYS_STATVFS1))}, + "SYS_SWAPCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCTL))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_TIMER_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_CREATE))}, + "SYS_TIMER_DELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_DELETE))}, + "SYS_TIMER_GETOVERRUN": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETOVERRUN))}, + "SYS_TIMER_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_GETTIME))}, + "SYS_TIMER_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_TIMER_SETTIME))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNDELETE": {"untyped int", constant.MakeInt64(int64(q.SYS_UNDELETE))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_UUIDGEN": {"untyped int", constant.MakeInt64(int64(q.SYS_UUIDGEN))}, + "SYS_VADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_VADVISE))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WAIT6": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT6))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS__LWP_CONTINUE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CONTINUE))}, + "SYS__LWP_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CREATE))}, + "SYS__LWP_CTL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_CTL))}, + "SYS__LWP_DETACH": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_DETACH))}, + "SYS__LWP_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_EXIT))}, + "SYS__LWP_GETNAME": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_GETNAME))}, + "SYS__LWP_GETPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_GETPRIVATE))}, + "SYS__LWP_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_KILL))}, + "SYS__LWP_PARK": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_PARK))}, + "SYS__LWP_SELF": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SELF))}, + "SYS__LWP_SETNAME": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SETNAME))}, + "SYS__LWP_SETPRIVATE": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SETPRIVATE))}, + "SYS__LWP_SUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_SUSPEND))}, + "SYS__LWP_UNPARK": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_UNPARK))}, + "SYS__LWP_UNPARK_ALL": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_UNPARK_ALL))}, + "SYS__LWP_WAIT": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_WAIT))}, + "SYS__LWP_WAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS__LWP_WAKEUP))}, + "SYS__PSET_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS__PSET_BIND))}, + "SYS__SCHED_GETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_GETAFFINITY))}, + "SYS__SCHED_GETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_GETPARAM))}, + "SYS__SCHED_SETAFFINITY": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_SETAFFINITY))}, + "SYS__SCHED_SETPARAM": {"untyped int", constant.MakeInt64(int64(q.SYS__SCHED_SETPARAM))}, + "SYS___CLONE": {"untyped int", constant.MakeInt64(int64(q.SYS___CLONE))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS___GETLOGIN))}, + "SYS___POSIX_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_CHOWN))}, + "SYS___POSIX_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_FCHOWN))}, + "SYS___POSIX_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_LCHOWN))}, + "SYS___POSIX_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS___POSIX_RENAME))}, + "SYS___QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS___QUOTACTL))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS___SETLOGIN))}, + "SYS___SIGACTION_SIGTRAMP": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGACTION_SIGTRAMP))}, + "SYS___SIGTIMEDWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS___SIGTIMEDWAIT))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "S_ARCH1": {"untyped int", constant.MakeInt64(int64(q.S_ARCH1))}, + "S_ARCH2": {"untyped int", constant.MakeInt64(int64(q.S_ARCH2))}, + "S_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.S_BLKSIZE))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFWHT": {"untyped int", constant.MakeInt64(int64(q.S_IFWHT))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISTXT": {"untyped int", constant.MakeInt64(int64(q.S_ISTXT))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "S_LOGIN_SET": {"untyped int", constant.MakeInt64(int64(q.S_LOGIN_SET))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_CONGCTL": {"untyped int", constant.MakeInt64(int64(q.TCP_CONGCTL))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINIT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINIT))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MINMSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MINMSS))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDCDTIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCDCDTIMESTAMP))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLAG_CDTRCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CDTRCTS))}, + "TIOCFLAG_CLOCAL": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CLOCAL))}, + "TIOCFLAG_CRTSCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CRTSCTS))}, + "TIOCFLAG_MDMBUF": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_MDMBUF))}, + "TIOCFLAG_SOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_SOFTCAR))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCGFLAGS))}, + "TIOCGLINED": {"untyped int", constant.MakeInt64(int64(q.TIOCGLINED))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGQSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGQSIZE))}, + "TIOCGRANTPT": {"untyped int", constant.MakeInt64(int64(q.TIOCGRANTPT))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCGSIZE))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCPTMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCPTMGET))}, + "TIOCPTSNAME": {"untyped int", constant.MakeInt64(int64(q.TIOCPTSNAME))}, + "TIOCRCVFRAME": {"untyped int", constant.MakeInt64(int64(q.TIOCRCVFRAME))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCSFLAGS))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSLINED": {"untyped int", constant.MakeInt64(int64(q.TIOCSLINED))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSQSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCSQSIZE))}, + "TIOCSSIZE": {"untyped int", constant.MakeInt64(int64(q.TIOCSSIZE))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TIOCXMTFRAME": {"untyped int", constant.MakeInt64(int64(q.TIOCXMTFRAME))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALL": {"untyped int", constant.MakeInt64(int64(q.WALL))}, + "WALLSIG": {"untyped int", constant.MakeInt64(int64(q.WALLSIG))}, + "WALTSIG": {"untyped int", constant.MakeInt64(int64(q.WALTSIG))}, + "WCLONE": {"untyped int", constant.MakeInt64(int64(q.WCLONE))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WNOZOMBIE": {"untyped int", constant.MakeInt64(int64(q.WNOZOMBIE))}, + "WOPTSCHECKED": {"untyped int", constant.MakeInt64(int64(q.WOPTSCHECKED))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_openbsd_386.go b/pkg/syscall/go123_export_openbsd_386.go new file mode 100755 index 00000000..1a1de311 --- /dev/null +++ b/pkg/syscall/go123_export_openbsd_386.go @@ -0,0 +1,1977 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Mclpool": reflect.TypeOf((*q.Mclpool)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EIPSEC": {reflect.TypeOf(q.EIPSEC), constant.MakeInt64(int64(q.EIPSEC))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_ENCAP": {"untyped int", constant.MakeInt64(int64(q.AF_ENCAP))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FRELAY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRELAY))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRFILT))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCGFILDROP))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRFILT))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCSFILDROP))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIRECTION_IN": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_IN))}, + "BPF_DIRECTION_OUT": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_OUT))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DIOCOSFPFLUSH": {"untyped int", constant.MakeInt64(int64(q.DIOCOSFPFLUSH))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMT_TAGOVF": {"untyped int", constant.MakeInt64(int64(q.EMT_TAGOVF))}, + "EMUL_ENABLED": {"untyped int", constant.MakeInt64(int64(q.EMUL_ENABLED))}, + "EMUL_NATIVE": {"untyped int", constant.MakeInt64(int64(q.EMUL_NATIVE))}, + "ENDRUNDISC": {"untyped int", constant.MakeInt64(int64(q.ENDRUNDISC))}, + "ETHERMIN": {"untyped int", constant.MakeInt64(int64(q.ETHERMIN))}, + "ETHERMTU": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU))}, + "ETHERTYPE_8023": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_8023))}, + "ETHERTYPE_AARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AARP))}, + "ETHERTYPE_ACCTON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ACCTON))}, + "ETHERTYPE_AEONIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AEONIC))}, + "ETHERTYPE_ALPHA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ALPHA))}, + "ETHERTYPE_AMBER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMBER))}, + "ETHERTYPE_AMOEBA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMOEBA))}, + "ETHERTYPE_AOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AOE))}, + "ETHERTYPE_APOLLO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLO))}, + "ETHERTYPE_APOLLODOMAIN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLODOMAIN))}, + "ETHERTYPE_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLETALK))}, + "ETHERTYPE_APPLITEK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLITEK))}, + "ETHERTYPE_ARGONAUT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARGONAUT))}, + "ETHERTYPE_ARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARP))}, + "ETHERTYPE_AT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AT))}, + "ETHERTYPE_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATALK))}, + "ETHERTYPE_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATOMIC))}, + "ETHERTYPE_ATT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATT))}, + "ETHERTYPE_ATTSTANFORD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATTSTANFORD))}, + "ETHERTYPE_AUTOPHON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AUTOPHON))}, + "ETHERTYPE_AXIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AXIS))}, + "ETHERTYPE_BCLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BCLOOP))}, + "ETHERTYPE_BOFL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BOFL))}, + "ETHERTYPE_CABLETRON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CABLETRON))}, + "ETHERTYPE_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CHAOS))}, + "ETHERTYPE_COMDESIGN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMDESIGN))}, + "ETHERTYPE_COMPUGRAPHIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMPUGRAPHIC))}, + "ETHERTYPE_COUNTERPOINT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COUNTERPOINT))}, + "ETHERTYPE_CRONUS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUS))}, + "ETHERTYPE_CRONUSVLN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUSVLN))}, + "ETHERTYPE_DCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DCA))}, + "ETHERTYPE_DDE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DDE))}, + "ETHERTYPE_DEBNI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DEBNI))}, + "ETHERTYPE_DECAM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECAM))}, + "ETHERTYPE_DECCUST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECCUST))}, + "ETHERTYPE_DECDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDIAG))}, + "ETHERTYPE_DECDNS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDNS))}, + "ETHERTYPE_DECDTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDTS))}, + "ETHERTYPE_DECEXPER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECEXPER))}, + "ETHERTYPE_DECLAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLAST))}, + "ETHERTYPE_DECLTM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLTM))}, + "ETHERTYPE_DECMUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECMUMPS))}, + "ETHERTYPE_DECNETBIOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECNETBIOS))}, + "ETHERTYPE_DELTACON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DELTACON))}, + "ETHERTYPE_DIDDLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DIDDLE))}, + "ETHERTYPE_DLOG1": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG1))}, + "ETHERTYPE_DLOG2": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG2))}, + "ETHERTYPE_DN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DN))}, + "ETHERTYPE_DOGFIGHT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DOGFIGHT))}, + "ETHERTYPE_DSMD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DSMD))}, + "ETHERTYPE_ECMA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ECMA))}, + "ETHERTYPE_ENCRYPT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ENCRYPT))}, + "ETHERTYPE_ES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ES))}, + "ETHERTYPE_EXCELAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXCELAN))}, + "ETHERTYPE_EXPERDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXPERDATA))}, + "ETHERTYPE_FLIP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLIP))}, + "ETHERTYPE_FLOWCONTROL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLOWCONTROL))}, + "ETHERTYPE_FRARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FRARP))}, + "ETHERTYPE_GENDYN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_GENDYN))}, + "ETHERTYPE_HAYES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HAYES))}, + "ETHERTYPE_HIPPI_FP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HIPPI_FP))}, + "ETHERTYPE_HITACHI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HITACHI))}, + "ETHERTYPE_HP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HP))}, + "ETHERTYPE_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUP))}, + "ETHERTYPE_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUPAT))}, + "ETHERTYPE_IMLBL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBL))}, + "ETHERTYPE_IMLBLDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBLDIAG))}, + "ETHERTYPE_IP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IP))}, + "ETHERTYPE_IPAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPAS))}, + "ETHERTYPE_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPV6))}, + "ETHERTYPE_IPX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPX))}, + "ETHERTYPE_IPXNEW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPXNEW))}, + "ETHERTYPE_KALPANA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_KALPANA))}, + "ETHERTYPE_LANBRIDGE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANBRIDGE))}, + "ETHERTYPE_LANPROBE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANPROBE))}, + "ETHERTYPE_LAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LAT))}, + "ETHERTYPE_LBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LBACK))}, + "ETHERTYPE_LITTLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LITTLE))}, + "ETHERTYPE_LLDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LLDP))}, + "ETHERTYPE_LOGICRAFT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOGICRAFT))}, + "ETHERTYPE_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOOPBACK))}, + "ETHERTYPE_MATRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MATRA))}, + "ETHERTYPE_MAX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MAX))}, + "ETHERTYPE_MERIT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MERIT))}, + "ETHERTYPE_MICP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MICP))}, + "ETHERTYPE_MOPDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPDL))}, + "ETHERTYPE_MOPRC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPRC))}, + "ETHERTYPE_MOTOROLA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOTOROLA))}, + "ETHERTYPE_MPLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS))}, + "ETHERTYPE_MPLS_MCAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS_MCAST))}, + "ETHERTYPE_MUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MUMPS))}, + "ETHERTYPE_NBPCC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCC))}, + "ETHERTYPE_NBPCLAIM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLAIM))}, + "ETHERTYPE_NBPCLREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLREQ))}, + "ETHERTYPE_NBPCLRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLRSP))}, + "ETHERTYPE_NBPCREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCREQ))}, + "ETHERTYPE_NBPCRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCRSP))}, + "ETHERTYPE_NBPDG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDG))}, + "ETHERTYPE_NBPDGB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDGB))}, + "ETHERTYPE_NBPDLTE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDLTE))}, + "ETHERTYPE_NBPRAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAR))}, + "ETHERTYPE_NBPRAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAS))}, + "ETHERTYPE_NBPRST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRST))}, + "ETHERTYPE_NBPSCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPSCD))}, + "ETHERTYPE_NBPVCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPVCD))}, + "ETHERTYPE_NBS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBS))}, + "ETHERTYPE_NCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NCD))}, + "ETHERTYPE_NESTAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NESTAR))}, + "ETHERTYPE_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NETBEUI))}, + "ETHERTYPE_NOVELL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NOVELL))}, + "ETHERTYPE_NS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NS))}, + "ETHERTYPE_NSAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSAT))}, + "ETHERTYPE_NSCOMPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSCOMPAT))}, + "ETHERTYPE_NTRAILER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NTRAILER))}, + "ETHERTYPE_OS9": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9))}, + "ETHERTYPE_OS9NET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9NET))}, + "ETHERTYPE_PACER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PACER))}, + "ETHERTYPE_PAE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PAE))}, + "ETHERTYPE_PCS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PCS))}, + "ETHERTYPE_PLANNING": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PLANNING))}, + "ETHERTYPE_PPP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPP))}, + "ETHERTYPE_PPPOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOE))}, + "ETHERTYPE_PPPOEDISC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOEDISC))}, + "ETHERTYPE_PRIMENTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PRIMENTS))}, + "ETHERTYPE_PUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUP))}, + "ETHERTYPE_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUPAT))}, + "ETHERTYPE_QINQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_QINQ))}, + "ETHERTYPE_RACAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RACAL))}, + "ETHERTYPE_RATIONAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RATIONAL))}, + "ETHERTYPE_RAWFR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RAWFR))}, + "ETHERTYPE_RCL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RCL))}, + "ETHERTYPE_RDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RDP))}, + "ETHERTYPE_RETIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RETIX))}, + "ETHERTYPE_REVARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_REVARP))}, + "ETHERTYPE_SCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SCA))}, + "ETHERTYPE_SECTRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECTRA))}, + "ETHERTYPE_SECUREDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECUREDATA))}, + "ETHERTYPE_SGITW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SGITW))}, + "ETHERTYPE_SG_BOUNCE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_BOUNCE))}, + "ETHERTYPE_SG_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_DIAG))}, + "ETHERTYPE_SG_NETGAMES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_NETGAMES))}, + "ETHERTYPE_SG_RESV": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_RESV))}, + "ETHERTYPE_SIMNET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SIMNET))}, + "ETHERTYPE_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SLOW))}, + "ETHERTYPE_SNA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNA))}, + "ETHERTYPE_SNMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNMP))}, + "ETHERTYPE_SONIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SONIX))}, + "ETHERTYPE_SPIDER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPIDER))}, + "ETHERTYPE_SPRITE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPRITE))}, + "ETHERTYPE_STP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_STP))}, + "ETHERTYPE_TALARIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARIS))}, + "ETHERTYPE_TALARISMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARISMC))}, + "ETHERTYPE_TCPCOMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPCOMP))}, + "ETHERTYPE_TCPSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPSM))}, + "ETHERTYPE_TEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TEC))}, + "ETHERTYPE_TIGAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TIGAN))}, + "ETHERTYPE_TRAIL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRAIL))}, + "ETHERTYPE_TRANSETHER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRANSETHER))}, + "ETHERTYPE_TYMSHARE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TYMSHARE))}, + "ETHERTYPE_UBBST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBBST))}, + "ETHERTYPE_UBDEBUG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDEBUG))}, + "ETHERTYPE_UBDIAGLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDIAGLOOP))}, + "ETHERTYPE_UBDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDL))}, + "ETHERTYPE_UBNIU": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNIU))}, + "ETHERTYPE_UBNMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNMC))}, + "ETHERTYPE_VALID": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VALID))}, + "ETHERTYPE_VARIAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VARIAN))}, + "ETHERTYPE_VAXELN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VAXELN))}, + "ETHERTYPE_VEECO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEECO))}, + "ETHERTYPE_VEXP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEXP))}, + "ETHERTYPE_VGLAB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VGLAB))}, + "ETHERTYPE_VINES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINES))}, + "ETHERTYPE_VINESECHO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESECHO))}, + "ETHERTYPE_VINESLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESLOOP))}, + "ETHERTYPE_VITAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VITAL))}, + "ETHERTYPE_VLAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLAN))}, + "ETHERTYPE_VLTLMAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLTLMAN))}, + "ETHERTYPE_VPROD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VPROD))}, + "ETHERTYPE_VURESERVED": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VURESERVED))}, + "ETHERTYPE_WATERLOO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WATERLOO))}, + "ETHERTYPE_WELLFLEET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WELLFLEET))}, + "ETHERTYPE_X25": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X25))}, + "ETHERTYPE_X75": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X75))}, + "ETHERTYPE_XNSSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XNSSM))}, + "ETHERTYPE_XTP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XTP))}, + "ETHER_ADDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ADDR_LEN))}, + "ETHER_ALIGN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ALIGN))}, + "ETHER_CRC_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_LEN))}, + "ETHER_CRC_POLY_BE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_BE))}, + "ETHER_CRC_POLY_LE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_LE))}, + "ETHER_HDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_HDR_LEN))}, + "ETHER_MAX_DIX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_DIX_LEN))}, + "ETHER_MAX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN))}, + "ETHER_MIN_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MIN_LEN))}, + "ETHER_TYPE_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_TYPE_LEN))}, + "ETHER_VLAN_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_VLAN_ENCAP_LEN))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFA_ROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_ROUTE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.IFT_BLUETOOTH))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DOCSCABLEUPSTREAMCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAMCHANNEL))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DUMMY": {"untyped int", constant.MakeInt64(int64(q.IFT_DUMMY))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ECONET": {"untyped int", constant.MakeInt64(int64(q.IFT_ECONET))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LINEGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_LINEGROUP))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFLOW": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOW))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_PON155": {"untyped int", constant.MakeInt64(int64(q.IFT_PON155))}, + "IFT_PON622": {"untyped int", constant.MakeInt64(int64(q.IFT_PON622))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPATM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPATM))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_Q2931": {"untyped int", constant.MakeInt64(int64(q.IFT_Q2931))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SIPSIG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPSIG))}, + "IFT_SIPTG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPTG))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_TELINK))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VIRTUALTG": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALTG))}, + "IFT_VOICEDID": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEDID))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEEMFGD": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEMFGD))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFGDEANA": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFGDEANA))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERCABLE": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERCABLE))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_HOST))}, + "IN_RFC3021_NET": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NET))}, + "IN_RFC3021_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NSHIFT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DIVERT_INIT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT_INIT))}, + "IPPROTO_DIVERT_RESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT_RESP))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTH_LEVEL))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_NETWORK_LEVEL))}, + "IPV6_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_TRANS_LEVEL))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPCOMP_LEVEL))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_OPTIONS))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IPV6_PIPEX))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTPORT))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTABLE))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_AUTH_LEVEL))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DIVERTFL": {"untyped int", constant.MakeInt64(int64(q.IP_DIVERTFL))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_NETWORK_LEVEL))}, + "IP_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_TRANS_LEVEL))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_IPCOMP_LEVEL))}, + "IP_IPSECFLOWINFO": {"untyped int", constant.MakeInt64(int64(q.IP_IPSECFLOWINFO))}, + "IP_IPSEC_LOCAL_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_AUTH))}, + "IP_IPSEC_LOCAL_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_CRED))}, + "IP_IPSEC_LOCAL_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_ID))}, + "IP_IPSEC_REMOTE_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_AUTH))}, + "IP_IPSEC_REMOTE_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_CRED))}, + "IP_IPSEC_REMOTE_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_ID))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IP_PIPEX))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTPORT))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVRTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRTABLE))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RTABLE))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LCNT_OVERLOAD_FLUSH": {"untyped int", constant.MakeInt64(int64(q.LCNT_OVERLOAD_FLUSH))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_FLAGMASK": {"untyped int", constant.MakeInt64(int64(q.MAP_FLAGMASK))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_INHERIT_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_COPY))}, + "MAP_INHERIT_DONATE_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DONATE_COPY))}, + "MAP_INHERIT_NONE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_NONE))}, + "MAP_INHERIT_SHARE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_SHARE))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_BCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_BCAST))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_MCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_MCAST))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_STATS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_STATS))}, + "NET_RT_TABLE": {"untyped int", constant.MakeInt64(int64(q.NET_RT_TABLE))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EOF": {"untyped int", constant.MakeInt64(int64(q.NOTE_EOF))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRUNCATE))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PF_FLUSH": {"untyped int", constant.MakeInt64(int64(q.PF_FLUSH))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "PT_MASK": {"untyped int", constant.MakeInt64(int64(q.PT_MASK))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTAX_LABEL))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_SRC": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRC))}, + "RTAX_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRCMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTA_LABEL))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_SRCMASK))}, + "RTF_ANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTF_ANNOUNCE))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MPATH": {"untyped int", constant.MakeInt64(int64(q.RTF_MPATH))}, + "RTF_MPLS": {"untyped int", constant.MakeInt64(int64(q.RTF_MPLS))}, + "RTF_PERMANENT_ARP": {"untyped int", constant.MakeInt64(int64(q.RTF_PERMANENT_ARP))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_SOURCE": {"untyped int", constant.MakeInt64(int64(q.RTF_SOURCE))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.RTF_TUNNEL))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_USETRAILERS": {"untyped int", constant.MakeInt64(int64(q.RTF_USETRAILERS))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DESYNC": {"untyped int", constant.MakeInt64(int64(q.RTM_DESYNC))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MAXSIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_MAXSIZE))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RT_TABLEID_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_MAX))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCBRDGADD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADD))}, + "SIOCBRDGADDS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADDS))}, + "SIOCBRDGARL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGARL))}, + "SIOCBRDGDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDADDR))}, + "SIOCBRDGDEL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDEL))}, + "SIOCBRDGDELS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDELS))}, + "SIOCBRDGFLUSH": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFLUSH))}, + "SIOCBRDGFRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFRL))}, + "SIOCBRDGGCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGCACHE))}, + "SIOCBRDGGFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGFD))}, + "SIOCBRDGGHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGHT))}, + "SIOCBRDGGIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGIFFLGS))}, + "SIOCBRDGGMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGMA))}, + "SIOCBRDGGPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPARAM))}, + "SIOCBRDGGPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPRI))}, + "SIOCBRDGGRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGRL))}, + "SIOCBRDGGSIFS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGSIFS))}, + "SIOCBRDGGTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGTO))}, + "SIOCBRDGIFS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGIFS))}, + "SIOCBRDGRTS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGRTS))}, + "SIOCBRDGSADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSADDR))}, + "SIOCBRDGSCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSCACHE))}, + "SIOCBRDGSFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSFD))}, + "SIOCBRDGSHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSHT))}, + "SIOCBRDGSIFCOST": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFCOST))}, + "SIOCBRDGSIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFFLGS))}, + "SIOCBRDGSIFPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFPRIO))}, + "SIOCBRDGSMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSMA))}, + "SIOCBRDGSPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPRI))}, + "SIOCBRDGSPROTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPROTO))}, + "SIOCBRDGSTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTO))}, + "SIOCBRDGSTXHC": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTXHC))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGETKALIVE))}, + "SIOCGETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGETLABEL))}, + "SIOCGETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFLOW))}, + "SIOCGETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFSYNC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVLAN))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFASYNCMAP))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGATTR))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFHARDMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHARDMTU))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPRIORITY))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRDOMAIN))}, + "SIOCGIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRTLABEL))}, + "SIOCGIFTIMESLOT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTIMESLOT))}, + "SIOCGIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFXFLAGS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYRTABLE))}, + "SIOCGLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYTTL))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSPPPPARAMS))}, + "SIOCGVH": {"untyped int", constant.MakeInt64(int64(q.SIOCGVH))}, + "SIOCGVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCGVNETID))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSETKALIVE))}, + "SIOCSETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSETLABEL))}, + "SIOCSETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFLOW))}, + "SIOCSETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFSYNC))}, + "SIOCSETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSETVLAN))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFASYNCMAP))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGATTR))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPRIORITY))}, + "SIOCSIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRDOMAIN))}, + "SIOCSIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRTLABEL))}, + "SIOCSIFTIMESLOT": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTIMESLOT))}, + "SIOCSIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFXFLAGS))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYRTABLE))}, + "SIOCSLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYTTL))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCSSPPPPARAMS))}, + "SIOCSVH": {"untyped int", constant.MakeInt64(int64(q.SIOCSVH))}, + "SIOCSVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCSVNETID))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_BINDANY": {"untyped int", constant.MakeInt64(int64(q.SO_BINDANY))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NETPROC": {"untyped int", constant.MakeInt64(int64(q.SO_NETPROC))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RTABLE": {"untyped int", constant.MakeInt64(int64(q.SO_RTABLE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SO_SPLICE))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJFREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJFREQ))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDTABLECOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLECOUNT))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRTABLE))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTHRID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTHRID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQUERY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQUERY))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRTABLE))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCTL))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___GET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___GET_TCB))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___SET_TCB))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "SYS___TFORK": {"untyped int", constant.MakeInt64(int64(q.SYS___TFORK))}, + "SYS___THREXIT": {"untyped int", constant.MakeInt64(int64(q.SYS___THREXIT))}, + "SYS___THRSIGDIVERT": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSIGDIVERT))}, + "SYS___THRSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSLEEP))}, + "SYS___THRWAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRWAKEUP))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_NSTATES": {"untyped int", constant.MakeInt64(int64(q.TCP_NSTATES))}, + "TCP_SACK_ENABLE": {"untyped int", constant.MakeInt64(int64(q.TCP_SACK_ENABLE))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLAG_CLOCAL": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CLOCAL))}, + "TIOCFLAG_CRTSCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CRTSCTS))}, + "TIOCFLAG_MDMBUF": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_MDMBUF))}, + "TIOCFLAG_PPS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_PPS))}, + "TIOCFLAG_SOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_SOFTCAR))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCGFLAGS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCGTSTAMP))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCSFLAGS))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTSTAMP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALTSIG": {"untyped int", constant.MakeInt64(int64(q.WALTSIG))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_openbsd_amd64.go b/pkg/syscall/go123_export_openbsd_amd64.go new file mode 100755 index 00000000..59a8af9d --- /dev/null +++ b/pkg/syscall/go123_export_openbsd_amd64.go @@ -0,0 +1,1976 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Mclpool": reflect.TypeOf((*q.Mclpool)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EIPSEC": {reflect.TypeOf(q.EIPSEC), constant.MakeInt64(int64(q.EIPSEC))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_ENCAP": {"untyped int", constant.MakeInt64(int64(q.AF_ENCAP))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FRELAY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRELAY))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRFILT))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCGFILDROP))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRFILT))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCSFILDROP))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIRECTION_IN": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_IN))}, + "BPF_DIRECTION_OUT": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_OUT))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DIOCOSFPFLUSH": {"untyped int", constant.MakeInt64(int64(q.DIOCOSFPFLUSH))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMT_TAGOVF": {"untyped int", constant.MakeInt64(int64(q.EMT_TAGOVF))}, + "EMUL_ENABLED": {"untyped int", constant.MakeInt64(int64(q.EMUL_ENABLED))}, + "EMUL_NATIVE": {"untyped int", constant.MakeInt64(int64(q.EMUL_NATIVE))}, + "ENDRUNDISC": {"untyped int", constant.MakeInt64(int64(q.ENDRUNDISC))}, + "ETHERMIN": {"untyped int", constant.MakeInt64(int64(q.ETHERMIN))}, + "ETHERMTU": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU))}, + "ETHERTYPE_8023": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_8023))}, + "ETHERTYPE_AARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AARP))}, + "ETHERTYPE_ACCTON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ACCTON))}, + "ETHERTYPE_AEONIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AEONIC))}, + "ETHERTYPE_ALPHA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ALPHA))}, + "ETHERTYPE_AMBER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMBER))}, + "ETHERTYPE_AMOEBA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMOEBA))}, + "ETHERTYPE_AOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AOE))}, + "ETHERTYPE_APOLLO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLO))}, + "ETHERTYPE_APOLLODOMAIN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLODOMAIN))}, + "ETHERTYPE_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLETALK))}, + "ETHERTYPE_APPLITEK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLITEK))}, + "ETHERTYPE_ARGONAUT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARGONAUT))}, + "ETHERTYPE_ARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARP))}, + "ETHERTYPE_AT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AT))}, + "ETHERTYPE_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATALK))}, + "ETHERTYPE_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATOMIC))}, + "ETHERTYPE_ATT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATT))}, + "ETHERTYPE_ATTSTANFORD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATTSTANFORD))}, + "ETHERTYPE_AUTOPHON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AUTOPHON))}, + "ETHERTYPE_AXIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AXIS))}, + "ETHERTYPE_BCLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BCLOOP))}, + "ETHERTYPE_BOFL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BOFL))}, + "ETHERTYPE_CABLETRON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CABLETRON))}, + "ETHERTYPE_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CHAOS))}, + "ETHERTYPE_COMDESIGN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMDESIGN))}, + "ETHERTYPE_COMPUGRAPHIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMPUGRAPHIC))}, + "ETHERTYPE_COUNTERPOINT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COUNTERPOINT))}, + "ETHERTYPE_CRONUS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUS))}, + "ETHERTYPE_CRONUSVLN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUSVLN))}, + "ETHERTYPE_DCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DCA))}, + "ETHERTYPE_DDE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DDE))}, + "ETHERTYPE_DEBNI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DEBNI))}, + "ETHERTYPE_DECAM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECAM))}, + "ETHERTYPE_DECCUST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECCUST))}, + "ETHERTYPE_DECDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDIAG))}, + "ETHERTYPE_DECDNS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDNS))}, + "ETHERTYPE_DECDTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDTS))}, + "ETHERTYPE_DECEXPER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECEXPER))}, + "ETHERTYPE_DECLAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLAST))}, + "ETHERTYPE_DECLTM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLTM))}, + "ETHERTYPE_DECMUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECMUMPS))}, + "ETHERTYPE_DECNETBIOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECNETBIOS))}, + "ETHERTYPE_DELTACON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DELTACON))}, + "ETHERTYPE_DIDDLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DIDDLE))}, + "ETHERTYPE_DLOG1": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG1))}, + "ETHERTYPE_DLOG2": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG2))}, + "ETHERTYPE_DN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DN))}, + "ETHERTYPE_DOGFIGHT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DOGFIGHT))}, + "ETHERTYPE_DSMD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DSMD))}, + "ETHERTYPE_ECMA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ECMA))}, + "ETHERTYPE_ENCRYPT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ENCRYPT))}, + "ETHERTYPE_ES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ES))}, + "ETHERTYPE_EXCELAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXCELAN))}, + "ETHERTYPE_EXPERDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXPERDATA))}, + "ETHERTYPE_FLIP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLIP))}, + "ETHERTYPE_FLOWCONTROL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLOWCONTROL))}, + "ETHERTYPE_FRARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FRARP))}, + "ETHERTYPE_GENDYN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_GENDYN))}, + "ETHERTYPE_HAYES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HAYES))}, + "ETHERTYPE_HIPPI_FP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HIPPI_FP))}, + "ETHERTYPE_HITACHI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HITACHI))}, + "ETHERTYPE_HP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HP))}, + "ETHERTYPE_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUP))}, + "ETHERTYPE_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUPAT))}, + "ETHERTYPE_IMLBL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBL))}, + "ETHERTYPE_IMLBLDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBLDIAG))}, + "ETHERTYPE_IP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IP))}, + "ETHERTYPE_IPAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPAS))}, + "ETHERTYPE_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPV6))}, + "ETHERTYPE_IPX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPX))}, + "ETHERTYPE_IPXNEW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPXNEW))}, + "ETHERTYPE_KALPANA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_KALPANA))}, + "ETHERTYPE_LANBRIDGE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANBRIDGE))}, + "ETHERTYPE_LANPROBE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANPROBE))}, + "ETHERTYPE_LAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LAT))}, + "ETHERTYPE_LBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LBACK))}, + "ETHERTYPE_LITTLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LITTLE))}, + "ETHERTYPE_LLDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LLDP))}, + "ETHERTYPE_LOGICRAFT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOGICRAFT))}, + "ETHERTYPE_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOOPBACK))}, + "ETHERTYPE_MATRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MATRA))}, + "ETHERTYPE_MAX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MAX))}, + "ETHERTYPE_MERIT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MERIT))}, + "ETHERTYPE_MICP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MICP))}, + "ETHERTYPE_MOPDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPDL))}, + "ETHERTYPE_MOPRC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPRC))}, + "ETHERTYPE_MOTOROLA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOTOROLA))}, + "ETHERTYPE_MPLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS))}, + "ETHERTYPE_MPLS_MCAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS_MCAST))}, + "ETHERTYPE_MUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MUMPS))}, + "ETHERTYPE_NBPCC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCC))}, + "ETHERTYPE_NBPCLAIM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLAIM))}, + "ETHERTYPE_NBPCLREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLREQ))}, + "ETHERTYPE_NBPCLRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLRSP))}, + "ETHERTYPE_NBPCREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCREQ))}, + "ETHERTYPE_NBPCRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCRSP))}, + "ETHERTYPE_NBPDG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDG))}, + "ETHERTYPE_NBPDGB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDGB))}, + "ETHERTYPE_NBPDLTE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDLTE))}, + "ETHERTYPE_NBPRAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAR))}, + "ETHERTYPE_NBPRAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAS))}, + "ETHERTYPE_NBPRST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRST))}, + "ETHERTYPE_NBPSCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPSCD))}, + "ETHERTYPE_NBPVCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPVCD))}, + "ETHERTYPE_NBS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBS))}, + "ETHERTYPE_NCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NCD))}, + "ETHERTYPE_NESTAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NESTAR))}, + "ETHERTYPE_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NETBEUI))}, + "ETHERTYPE_NOVELL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NOVELL))}, + "ETHERTYPE_NS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NS))}, + "ETHERTYPE_NSAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSAT))}, + "ETHERTYPE_NSCOMPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSCOMPAT))}, + "ETHERTYPE_NTRAILER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NTRAILER))}, + "ETHERTYPE_OS9": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9))}, + "ETHERTYPE_OS9NET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9NET))}, + "ETHERTYPE_PACER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PACER))}, + "ETHERTYPE_PAE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PAE))}, + "ETHERTYPE_PCS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PCS))}, + "ETHERTYPE_PLANNING": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PLANNING))}, + "ETHERTYPE_PPP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPP))}, + "ETHERTYPE_PPPOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOE))}, + "ETHERTYPE_PPPOEDISC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOEDISC))}, + "ETHERTYPE_PRIMENTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PRIMENTS))}, + "ETHERTYPE_PUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUP))}, + "ETHERTYPE_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUPAT))}, + "ETHERTYPE_QINQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_QINQ))}, + "ETHERTYPE_RACAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RACAL))}, + "ETHERTYPE_RATIONAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RATIONAL))}, + "ETHERTYPE_RAWFR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RAWFR))}, + "ETHERTYPE_RCL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RCL))}, + "ETHERTYPE_RDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RDP))}, + "ETHERTYPE_RETIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RETIX))}, + "ETHERTYPE_REVARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_REVARP))}, + "ETHERTYPE_SCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SCA))}, + "ETHERTYPE_SECTRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECTRA))}, + "ETHERTYPE_SECUREDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECUREDATA))}, + "ETHERTYPE_SGITW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SGITW))}, + "ETHERTYPE_SG_BOUNCE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_BOUNCE))}, + "ETHERTYPE_SG_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_DIAG))}, + "ETHERTYPE_SG_NETGAMES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_NETGAMES))}, + "ETHERTYPE_SG_RESV": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_RESV))}, + "ETHERTYPE_SIMNET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SIMNET))}, + "ETHERTYPE_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SLOW))}, + "ETHERTYPE_SNA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNA))}, + "ETHERTYPE_SNMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNMP))}, + "ETHERTYPE_SONIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SONIX))}, + "ETHERTYPE_SPIDER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPIDER))}, + "ETHERTYPE_SPRITE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPRITE))}, + "ETHERTYPE_STP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_STP))}, + "ETHERTYPE_TALARIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARIS))}, + "ETHERTYPE_TALARISMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARISMC))}, + "ETHERTYPE_TCPCOMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPCOMP))}, + "ETHERTYPE_TCPSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPSM))}, + "ETHERTYPE_TEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TEC))}, + "ETHERTYPE_TIGAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TIGAN))}, + "ETHERTYPE_TRAIL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRAIL))}, + "ETHERTYPE_TRANSETHER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRANSETHER))}, + "ETHERTYPE_TYMSHARE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TYMSHARE))}, + "ETHERTYPE_UBBST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBBST))}, + "ETHERTYPE_UBDEBUG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDEBUG))}, + "ETHERTYPE_UBDIAGLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDIAGLOOP))}, + "ETHERTYPE_UBDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDL))}, + "ETHERTYPE_UBNIU": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNIU))}, + "ETHERTYPE_UBNMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNMC))}, + "ETHERTYPE_VALID": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VALID))}, + "ETHERTYPE_VARIAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VARIAN))}, + "ETHERTYPE_VAXELN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VAXELN))}, + "ETHERTYPE_VEECO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEECO))}, + "ETHERTYPE_VEXP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEXP))}, + "ETHERTYPE_VGLAB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VGLAB))}, + "ETHERTYPE_VINES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINES))}, + "ETHERTYPE_VINESECHO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESECHO))}, + "ETHERTYPE_VINESLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESLOOP))}, + "ETHERTYPE_VITAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VITAL))}, + "ETHERTYPE_VLAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLAN))}, + "ETHERTYPE_VLTLMAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLTLMAN))}, + "ETHERTYPE_VPROD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VPROD))}, + "ETHERTYPE_VURESERVED": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VURESERVED))}, + "ETHERTYPE_WATERLOO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WATERLOO))}, + "ETHERTYPE_WELLFLEET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WELLFLEET))}, + "ETHERTYPE_X25": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X25))}, + "ETHERTYPE_X75": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X75))}, + "ETHERTYPE_XNSSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XNSSM))}, + "ETHERTYPE_XTP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XTP))}, + "ETHER_ADDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ADDR_LEN))}, + "ETHER_ALIGN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ALIGN))}, + "ETHER_CRC_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_LEN))}, + "ETHER_CRC_POLY_BE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_BE))}, + "ETHER_CRC_POLY_LE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_LE))}, + "ETHER_HDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_HDR_LEN))}, + "ETHER_MAX_DIX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_DIX_LEN))}, + "ETHER_MAX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN))}, + "ETHER_MIN_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MIN_LEN))}, + "ETHER_TYPE_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_TYPE_LEN))}, + "ETHER_VLAN_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_VLAN_ENCAP_LEN))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_OK": {"untyped int", constant.MakeInt64(int64(q.F_OK))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFA_ROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_ROUTE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.IFT_BLUETOOTH))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DOCSCABLEUPSTREAMCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAMCHANNEL))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DUMMY": {"untyped int", constant.MakeInt64(int64(q.IFT_DUMMY))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ECONET": {"untyped int", constant.MakeInt64(int64(q.IFT_ECONET))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LINEGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_LINEGROUP))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFLOW": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOW))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_PON155": {"untyped int", constant.MakeInt64(int64(q.IFT_PON155))}, + "IFT_PON622": {"untyped int", constant.MakeInt64(int64(q.IFT_PON622))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPATM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPATM))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_Q2931": {"untyped int", constant.MakeInt64(int64(q.IFT_Q2931))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SIPSIG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPSIG))}, + "IFT_SIPTG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPTG))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_TELINK))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VIRTUALTG": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALTG))}, + "IFT_VOICEDID": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEDID))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEEMFGD": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEMFGD))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFGDEANA": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFGDEANA))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERCABLE": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERCABLE))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_HOST))}, + "IN_RFC3021_NET": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NET))}, + "IN_RFC3021_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NSHIFT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DIVERT_INIT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT_INIT))}, + "IPPROTO_DIVERT_RESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT_RESP))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTH_LEVEL))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_NETWORK_LEVEL))}, + "IPV6_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_TRANS_LEVEL))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPCOMP_LEVEL))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_OPTIONS))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IPV6_PIPEX))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTPORT))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTABLE))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_AUTH_LEVEL))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DIVERTFL": {"untyped int", constant.MakeInt64(int64(q.IP_DIVERTFL))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_NETWORK_LEVEL))}, + "IP_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_TRANS_LEVEL))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_IPCOMP_LEVEL))}, + "IP_IPSECFLOWINFO": {"untyped int", constant.MakeInt64(int64(q.IP_IPSECFLOWINFO))}, + "IP_IPSEC_LOCAL_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_AUTH))}, + "IP_IPSEC_LOCAL_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_CRED))}, + "IP_IPSEC_LOCAL_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_ID))}, + "IP_IPSEC_REMOTE_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_AUTH))}, + "IP_IPSEC_REMOTE_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_CRED))}, + "IP_IPSEC_REMOTE_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_ID))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IP_PIPEX))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTPORT))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVRTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRTABLE))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RTABLE))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LCNT_OVERLOAD_FLUSH": {"untyped int", constant.MakeInt64(int64(q.LCNT_OVERLOAD_FLUSH))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_FLAGMASK": {"untyped int", constant.MakeInt64(int64(q.MAP_FLAGMASK))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_INHERIT_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_COPY))}, + "MAP_INHERIT_DONATE_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_DONATE_COPY))}, + "MAP_INHERIT_NONE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_NONE))}, + "MAP_INHERIT_SHARE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_SHARE))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_BCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_BCAST))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_MCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_MCAST))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_STATS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_STATS))}, + "NET_RT_TABLE": {"untyped int", constant.MakeInt64(int64(q.NET_RT_TABLE))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EOF": {"untyped int", constant.MakeInt64(int64(q.NOTE_EOF))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRUNCATE))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PF_FLUSH": {"untyped int", constant.MakeInt64(int64(q.PF_FLUSH))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTAX_LABEL))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_SRC": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRC))}, + "RTAX_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRCMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTA_LABEL))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_SRCMASK))}, + "RTF_ANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTF_ANNOUNCE))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MPATH": {"untyped int", constant.MakeInt64(int64(q.RTF_MPATH))}, + "RTF_MPLS": {"untyped int", constant.MakeInt64(int64(q.RTF_MPLS))}, + "RTF_PERMANENT_ARP": {"untyped int", constant.MakeInt64(int64(q.RTF_PERMANENT_ARP))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_SOURCE": {"untyped int", constant.MakeInt64(int64(q.RTF_SOURCE))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.RTF_TUNNEL))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_USETRAILERS": {"untyped int", constant.MakeInt64(int64(q.RTF_USETRAILERS))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DESYNC": {"untyped int", constant.MakeInt64(int64(q.RTM_DESYNC))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MAXSIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_MAXSIZE))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RT_TABLEID_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_MAX))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCBRDGADD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADD))}, + "SIOCBRDGADDS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADDS))}, + "SIOCBRDGARL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGARL))}, + "SIOCBRDGDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDADDR))}, + "SIOCBRDGDEL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDEL))}, + "SIOCBRDGDELS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDELS))}, + "SIOCBRDGFLUSH": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFLUSH))}, + "SIOCBRDGFRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFRL))}, + "SIOCBRDGGCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGCACHE))}, + "SIOCBRDGGFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGFD))}, + "SIOCBRDGGHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGHT))}, + "SIOCBRDGGIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGIFFLGS))}, + "SIOCBRDGGMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGMA))}, + "SIOCBRDGGPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPARAM))}, + "SIOCBRDGGPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPRI))}, + "SIOCBRDGGRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGRL))}, + "SIOCBRDGGSIFS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGSIFS))}, + "SIOCBRDGGTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGTO))}, + "SIOCBRDGIFS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGIFS))}, + "SIOCBRDGRTS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGRTS))}, + "SIOCBRDGSADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSADDR))}, + "SIOCBRDGSCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSCACHE))}, + "SIOCBRDGSFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSFD))}, + "SIOCBRDGSHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSHT))}, + "SIOCBRDGSIFCOST": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFCOST))}, + "SIOCBRDGSIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFFLGS))}, + "SIOCBRDGSIFPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFPRIO))}, + "SIOCBRDGSMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSMA))}, + "SIOCBRDGSPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPRI))}, + "SIOCBRDGSPROTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPROTO))}, + "SIOCBRDGSTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTO))}, + "SIOCBRDGSTXHC": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTXHC))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGETKALIVE))}, + "SIOCGETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGETLABEL))}, + "SIOCGETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFLOW))}, + "SIOCGETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFSYNC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVLAN))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFASYNCMAP))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGATTR))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFHARDMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHARDMTU))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPRIORITY))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRDOMAIN))}, + "SIOCGIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRTLABEL))}, + "SIOCGIFTIMESLOT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTIMESLOT))}, + "SIOCGIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFXFLAGS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYRTABLE))}, + "SIOCGLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYTTL))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSPPPPARAMS))}, + "SIOCGVH": {"untyped int", constant.MakeInt64(int64(q.SIOCGVH))}, + "SIOCGVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCGVNETID))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSETKALIVE))}, + "SIOCSETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSETLABEL))}, + "SIOCSETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFLOW))}, + "SIOCSETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFSYNC))}, + "SIOCSETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSETVLAN))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFASYNCMAP))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGATTR))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPRIORITY))}, + "SIOCSIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRDOMAIN))}, + "SIOCSIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRTLABEL))}, + "SIOCSIFTIMESLOT": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTIMESLOT))}, + "SIOCSIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFXFLAGS))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYRTABLE))}, + "SIOCSLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYTTL))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCSSPPPPARAMS))}, + "SIOCSVH": {"untyped int", constant.MakeInt64(int64(q.SIOCSVH))}, + "SIOCSVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCSVNETID))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_BINDANY": {"untyped int", constant.MakeInt64(int64(q.SO_BINDANY))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NETPROC": {"untyped int", constant.MakeInt64(int64(q.SO_NETPROC))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RTABLE": {"untyped int", constant.MakeInt64(int64(q.SO_RTABLE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SO_SPLICE))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJFREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJFREQ))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDTABLECOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLECOUNT))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRTABLE))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTHRID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTHRID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQUERY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQUERY))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRTABLE))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCTL))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___GET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___GET_TCB))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___SET_TCB))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "SYS___TFORK": {"untyped int", constant.MakeInt64(int64(q.SYS___TFORK))}, + "SYS___THREXIT": {"untyped int", constant.MakeInt64(int64(q.SYS___THREXIT))}, + "SYS___THRSIGDIVERT": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSIGDIVERT))}, + "SYS___THRSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSLEEP))}, + "SYS___THRWAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRWAKEUP))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_NSTATES": {"untyped int", constant.MakeInt64(int64(q.TCP_NSTATES))}, + "TCP_SACK_ENABLE": {"untyped int", constant.MakeInt64(int64(q.TCP_SACK_ENABLE))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLAG_CLOCAL": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CLOCAL))}, + "TIOCFLAG_CRTSCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CRTSCTS))}, + "TIOCFLAG_MDMBUF": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_MDMBUF))}, + "TIOCFLAG_PPS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_PPS))}, + "TIOCFLAG_SOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_SOFTCAR))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCGFLAGS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCGTSTAMP))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCSFLAGS))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTSTAMP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALTSIG": {"untyped int", constant.MakeInt64(int64(q.WALTSIG))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_openbsd_arm.go b/pkg/syscall/go123_export_openbsd_arm.go new file mode 100755 index 00000000..c6b8ceff --- /dev/null +++ b/pkg/syscall/go123_export_openbsd_arm.go @@ -0,0 +1,1980 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Mclpool": reflect.TypeOf((*q.Mclpool)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EIPSEC": {reflect.TypeOf(q.EIPSEC), constant.MakeInt64(int64(q.EIPSEC))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_ENCAP": {"untyped int", constant.MakeInt64(int64(q.AF_ENCAP))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FRELAY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRELAY))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRFILT))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCGFILDROP))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRFILT))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCSFILDROP))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIRECTION_IN": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_IN))}, + "BPF_DIRECTION_OUT": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_OUT))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DIOCOSFPFLUSH": {"untyped int", constant.MakeInt64(int64(q.DIOCOSFPFLUSH))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMT_TAGOVF": {"untyped int", constant.MakeInt64(int64(q.EMT_TAGOVF))}, + "EMUL_ENABLED": {"untyped int", constant.MakeInt64(int64(q.EMUL_ENABLED))}, + "EMUL_NATIVE": {"untyped int", constant.MakeInt64(int64(q.EMUL_NATIVE))}, + "ENDRUNDISC": {"untyped int", constant.MakeInt64(int64(q.ENDRUNDISC))}, + "ETHERMIN": {"untyped int", constant.MakeInt64(int64(q.ETHERMIN))}, + "ETHERMTU": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU))}, + "ETHERTYPE_8023": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_8023))}, + "ETHERTYPE_AARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AARP))}, + "ETHERTYPE_ACCTON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ACCTON))}, + "ETHERTYPE_AEONIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AEONIC))}, + "ETHERTYPE_ALPHA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ALPHA))}, + "ETHERTYPE_AMBER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMBER))}, + "ETHERTYPE_AMOEBA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMOEBA))}, + "ETHERTYPE_AOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AOE))}, + "ETHERTYPE_APOLLO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLO))}, + "ETHERTYPE_APOLLODOMAIN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLODOMAIN))}, + "ETHERTYPE_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLETALK))}, + "ETHERTYPE_APPLITEK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLITEK))}, + "ETHERTYPE_ARGONAUT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARGONAUT))}, + "ETHERTYPE_ARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARP))}, + "ETHERTYPE_AT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AT))}, + "ETHERTYPE_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATALK))}, + "ETHERTYPE_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATOMIC))}, + "ETHERTYPE_ATT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATT))}, + "ETHERTYPE_ATTSTANFORD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATTSTANFORD))}, + "ETHERTYPE_AUTOPHON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AUTOPHON))}, + "ETHERTYPE_AXIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AXIS))}, + "ETHERTYPE_BCLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BCLOOP))}, + "ETHERTYPE_BOFL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BOFL))}, + "ETHERTYPE_CABLETRON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CABLETRON))}, + "ETHERTYPE_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CHAOS))}, + "ETHERTYPE_COMDESIGN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMDESIGN))}, + "ETHERTYPE_COMPUGRAPHIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMPUGRAPHIC))}, + "ETHERTYPE_COUNTERPOINT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COUNTERPOINT))}, + "ETHERTYPE_CRONUS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUS))}, + "ETHERTYPE_CRONUSVLN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUSVLN))}, + "ETHERTYPE_DCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DCA))}, + "ETHERTYPE_DDE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DDE))}, + "ETHERTYPE_DEBNI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DEBNI))}, + "ETHERTYPE_DECAM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECAM))}, + "ETHERTYPE_DECCUST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECCUST))}, + "ETHERTYPE_DECDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDIAG))}, + "ETHERTYPE_DECDNS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDNS))}, + "ETHERTYPE_DECDTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDTS))}, + "ETHERTYPE_DECEXPER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECEXPER))}, + "ETHERTYPE_DECLAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLAST))}, + "ETHERTYPE_DECLTM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLTM))}, + "ETHERTYPE_DECMUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECMUMPS))}, + "ETHERTYPE_DECNETBIOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECNETBIOS))}, + "ETHERTYPE_DELTACON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DELTACON))}, + "ETHERTYPE_DIDDLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DIDDLE))}, + "ETHERTYPE_DLOG1": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG1))}, + "ETHERTYPE_DLOG2": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG2))}, + "ETHERTYPE_DN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DN))}, + "ETHERTYPE_DOGFIGHT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DOGFIGHT))}, + "ETHERTYPE_DSMD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DSMD))}, + "ETHERTYPE_ECMA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ECMA))}, + "ETHERTYPE_ENCRYPT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ENCRYPT))}, + "ETHERTYPE_ES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ES))}, + "ETHERTYPE_EXCELAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXCELAN))}, + "ETHERTYPE_EXPERDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXPERDATA))}, + "ETHERTYPE_FLIP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLIP))}, + "ETHERTYPE_FLOWCONTROL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLOWCONTROL))}, + "ETHERTYPE_FRARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FRARP))}, + "ETHERTYPE_GENDYN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_GENDYN))}, + "ETHERTYPE_HAYES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HAYES))}, + "ETHERTYPE_HIPPI_FP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HIPPI_FP))}, + "ETHERTYPE_HITACHI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HITACHI))}, + "ETHERTYPE_HP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HP))}, + "ETHERTYPE_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUP))}, + "ETHERTYPE_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUPAT))}, + "ETHERTYPE_IMLBL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBL))}, + "ETHERTYPE_IMLBLDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBLDIAG))}, + "ETHERTYPE_IP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IP))}, + "ETHERTYPE_IPAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPAS))}, + "ETHERTYPE_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPV6))}, + "ETHERTYPE_IPX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPX))}, + "ETHERTYPE_IPXNEW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPXNEW))}, + "ETHERTYPE_KALPANA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_KALPANA))}, + "ETHERTYPE_LANBRIDGE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANBRIDGE))}, + "ETHERTYPE_LANPROBE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANPROBE))}, + "ETHERTYPE_LAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LAT))}, + "ETHERTYPE_LBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LBACK))}, + "ETHERTYPE_LITTLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LITTLE))}, + "ETHERTYPE_LLDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LLDP))}, + "ETHERTYPE_LOGICRAFT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOGICRAFT))}, + "ETHERTYPE_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOOPBACK))}, + "ETHERTYPE_MATRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MATRA))}, + "ETHERTYPE_MAX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MAX))}, + "ETHERTYPE_MERIT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MERIT))}, + "ETHERTYPE_MICP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MICP))}, + "ETHERTYPE_MOPDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPDL))}, + "ETHERTYPE_MOPRC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPRC))}, + "ETHERTYPE_MOTOROLA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOTOROLA))}, + "ETHERTYPE_MPLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS))}, + "ETHERTYPE_MPLS_MCAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS_MCAST))}, + "ETHERTYPE_MUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MUMPS))}, + "ETHERTYPE_NBPCC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCC))}, + "ETHERTYPE_NBPCLAIM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLAIM))}, + "ETHERTYPE_NBPCLREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLREQ))}, + "ETHERTYPE_NBPCLRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLRSP))}, + "ETHERTYPE_NBPCREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCREQ))}, + "ETHERTYPE_NBPCRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCRSP))}, + "ETHERTYPE_NBPDG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDG))}, + "ETHERTYPE_NBPDGB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDGB))}, + "ETHERTYPE_NBPDLTE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDLTE))}, + "ETHERTYPE_NBPRAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAR))}, + "ETHERTYPE_NBPRAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAS))}, + "ETHERTYPE_NBPRST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRST))}, + "ETHERTYPE_NBPSCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPSCD))}, + "ETHERTYPE_NBPVCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPVCD))}, + "ETHERTYPE_NBS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBS))}, + "ETHERTYPE_NCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NCD))}, + "ETHERTYPE_NESTAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NESTAR))}, + "ETHERTYPE_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NETBEUI))}, + "ETHERTYPE_NOVELL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NOVELL))}, + "ETHERTYPE_NS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NS))}, + "ETHERTYPE_NSAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSAT))}, + "ETHERTYPE_NSCOMPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSCOMPAT))}, + "ETHERTYPE_NTRAILER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NTRAILER))}, + "ETHERTYPE_OS9": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9))}, + "ETHERTYPE_OS9NET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9NET))}, + "ETHERTYPE_PACER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PACER))}, + "ETHERTYPE_PAE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PAE))}, + "ETHERTYPE_PCS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PCS))}, + "ETHERTYPE_PLANNING": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PLANNING))}, + "ETHERTYPE_PPP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPP))}, + "ETHERTYPE_PPPOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOE))}, + "ETHERTYPE_PPPOEDISC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOEDISC))}, + "ETHERTYPE_PRIMENTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PRIMENTS))}, + "ETHERTYPE_PUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUP))}, + "ETHERTYPE_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUPAT))}, + "ETHERTYPE_QINQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_QINQ))}, + "ETHERTYPE_RACAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RACAL))}, + "ETHERTYPE_RATIONAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RATIONAL))}, + "ETHERTYPE_RAWFR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RAWFR))}, + "ETHERTYPE_RCL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RCL))}, + "ETHERTYPE_RDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RDP))}, + "ETHERTYPE_RETIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RETIX))}, + "ETHERTYPE_REVARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_REVARP))}, + "ETHERTYPE_SCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SCA))}, + "ETHERTYPE_SECTRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECTRA))}, + "ETHERTYPE_SECUREDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECUREDATA))}, + "ETHERTYPE_SGITW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SGITW))}, + "ETHERTYPE_SG_BOUNCE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_BOUNCE))}, + "ETHERTYPE_SG_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_DIAG))}, + "ETHERTYPE_SG_NETGAMES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_NETGAMES))}, + "ETHERTYPE_SG_RESV": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_RESV))}, + "ETHERTYPE_SIMNET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SIMNET))}, + "ETHERTYPE_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SLOW))}, + "ETHERTYPE_SNA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNA))}, + "ETHERTYPE_SNMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNMP))}, + "ETHERTYPE_SONIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SONIX))}, + "ETHERTYPE_SPIDER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPIDER))}, + "ETHERTYPE_SPRITE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPRITE))}, + "ETHERTYPE_STP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_STP))}, + "ETHERTYPE_TALARIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARIS))}, + "ETHERTYPE_TALARISMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARISMC))}, + "ETHERTYPE_TCPCOMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPCOMP))}, + "ETHERTYPE_TCPSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPSM))}, + "ETHERTYPE_TEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TEC))}, + "ETHERTYPE_TIGAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TIGAN))}, + "ETHERTYPE_TRAIL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRAIL))}, + "ETHERTYPE_TRANSETHER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRANSETHER))}, + "ETHERTYPE_TYMSHARE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TYMSHARE))}, + "ETHERTYPE_UBBST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBBST))}, + "ETHERTYPE_UBDEBUG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDEBUG))}, + "ETHERTYPE_UBDIAGLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDIAGLOOP))}, + "ETHERTYPE_UBDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDL))}, + "ETHERTYPE_UBNIU": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNIU))}, + "ETHERTYPE_UBNMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNMC))}, + "ETHERTYPE_VALID": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VALID))}, + "ETHERTYPE_VARIAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VARIAN))}, + "ETHERTYPE_VAXELN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VAXELN))}, + "ETHERTYPE_VEECO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEECO))}, + "ETHERTYPE_VEXP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEXP))}, + "ETHERTYPE_VGLAB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VGLAB))}, + "ETHERTYPE_VINES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINES))}, + "ETHERTYPE_VINESECHO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESECHO))}, + "ETHERTYPE_VINESLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESLOOP))}, + "ETHERTYPE_VITAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VITAL))}, + "ETHERTYPE_VLAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLAN))}, + "ETHERTYPE_VLTLMAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLTLMAN))}, + "ETHERTYPE_VPROD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VPROD))}, + "ETHERTYPE_VURESERVED": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VURESERVED))}, + "ETHERTYPE_WATERLOO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WATERLOO))}, + "ETHERTYPE_WELLFLEET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WELLFLEET))}, + "ETHERTYPE_X25": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X25))}, + "ETHERTYPE_X75": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X75))}, + "ETHERTYPE_XNSSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XNSSM))}, + "ETHERTYPE_XTP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XTP))}, + "ETHER_ADDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ADDR_LEN))}, + "ETHER_ALIGN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ALIGN))}, + "ETHER_CRC_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_LEN))}, + "ETHER_CRC_POLY_BE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_BE))}, + "ETHER_CRC_POLY_LE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_LE))}, + "ETHER_HDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_HDR_LEN))}, + "ETHER_MAX_DIX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_DIX_LEN))}, + "ETHER_MAX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN))}, + "ETHER_MIN_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MIN_LEN))}, + "ETHER_TYPE_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_TYPE_LEN))}, + "ETHER_VLAN_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_VLAN_ENCAP_LEN))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFA_ROUTE": {"untyped int", constant.MakeInt64(int64(q.IFA_ROUTE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.IFT_BLUETOOTH))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DOCSCABLEUPSTREAMCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAMCHANNEL))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DUMMY": {"untyped int", constant.MakeInt64(int64(q.IFT_DUMMY))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ECONET": {"untyped int", constant.MakeInt64(int64(q.IFT_ECONET))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LINEGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_LINEGROUP))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFLOW": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOW))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_PON155": {"untyped int", constant.MakeInt64(int64(q.IFT_PON155))}, + "IFT_PON622": {"untyped int", constant.MakeInt64(int64(q.IFT_PON622))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPATM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPATM))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_Q2931": {"untyped int", constant.MakeInt64(int64(q.IFT_Q2931))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SIPSIG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPSIG))}, + "IFT_SIPTG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPTG))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_TELINK))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VIRTUALTG": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALTG))}, + "IFT_VOICEDID": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEDID))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEEMFGD": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEMFGD))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFGDEANA": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFGDEANA))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERCABLE": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERCABLE))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_HOST))}, + "IN_RFC3021_NET": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NET))}, + "IN_RFC3021_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NSHIFT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DIVERT_INIT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT_INIT))}, + "IPPROTO_DIVERT_RESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT_RESP))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTH_LEVEL))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_NETWORK_LEVEL))}, + "IPV6_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_TRANS_LEVEL))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPCOMP_LEVEL))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_OPTIONS))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IPV6_PIPEX))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTPORT))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTABLE))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_AUTH_LEVEL))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DIVERTFL": {"untyped int", constant.MakeInt64(int64(q.IP_DIVERTFL))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_NETWORK_LEVEL))}, + "IP_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_TRANS_LEVEL))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_IPCOMP_LEVEL))}, + "IP_IPSECFLOWINFO": {"untyped int", constant.MakeInt64(int64(q.IP_IPSECFLOWINFO))}, + "IP_IPSEC_LOCAL_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_AUTH))}, + "IP_IPSEC_LOCAL_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_CRED))}, + "IP_IPSEC_LOCAL_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_ID))}, + "IP_IPSEC_REMOTE_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_AUTH))}, + "IP_IPSEC_REMOTE_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_CRED))}, + "IP_IPSEC_REMOTE_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_ID))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IP_PIPEX))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTPORT))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVRTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRTABLE))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RTABLE))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LCNT_OVERLOAD_FLUSH": {"untyped int", constant.MakeInt64(int64(q.LCNT_OVERLOAD_FLUSH))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_FLAGMASK": {"untyped int", constant.MakeInt64(int64(q.MAP_FLAGMASK))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_INHERIT_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_COPY))}, + "MAP_INHERIT_NONE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_NONE))}, + "MAP_INHERIT_SHARE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_SHARE))}, + "MAP_INHERIT_ZERO": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_ZERO))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_BCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_BCAST))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_MCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_MCAST))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_STATS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_STATS))}, + "NET_RT_TABLE": {"untyped int", constant.MakeInt64(int64(q.NET_RT_TABLE))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EOF": {"untyped int", constant.MakeInt64(int64(q.NOTE_EOF))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRUNCATE))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PF_FLUSH": {"untyped int", constant.MakeInt64(int64(q.PF_FLUSH))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTAX_LABEL))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_SRC": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRC))}, + "RTAX_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRCMASK))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTA_LABEL))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_SRCMASK))}, + "RTF_ANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTF_ANNOUNCE))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MPATH": {"untyped int", constant.MakeInt64(int64(q.RTF_MPATH))}, + "RTF_MPLS": {"untyped int", constant.MakeInt64(int64(q.RTF_MPLS))}, + "RTF_PERMANENT_ARP": {"untyped int", constant.MakeInt64(int64(q.RTF_PERMANENT_ARP))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_USETRAILERS": {"untyped int", constant.MakeInt64(int64(q.RTF_USETRAILERS))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DESYNC": {"untyped int", constant.MakeInt64(int64(q.RTM_DESYNC))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MAXSIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_MAXSIZE))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RT_TABLEID_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_MAX))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCALIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCALIFADDR))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCBRDGADD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADD))}, + "SIOCBRDGADDS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADDS))}, + "SIOCBRDGARL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGARL))}, + "SIOCBRDGDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDADDR))}, + "SIOCBRDGDEL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDEL))}, + "SIOCBRDGDELS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDELS))}, + "SIOCBRDGFLUSH": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFLUSH))}, + "SIOCBRDGFRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFRL))}, + "SIOCBRDGGCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGCACHE))}, + "SIOCBRDGGFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGFD))}, + "SIOCBRDGGHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGHT))}, + "SIOCBRDGGIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGIFFLGS))}, + "SIOCBRDGGMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGMA))}, + "SIOCBRDGGPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPARAM))}, + "SIOCBRDGGPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPRI))}, + "SIOCBRDGGRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGRL))}, + "SIOCBRDGGSIFS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGSIFS))}, + "SIOCBRDGGTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGTO))}, + "SIOCBRDGIFS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGIFS))}, + "SIOCBRDGRTS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGRTS))}, + "SIOCBRDGSADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSADDR))}, + "SIOCBRDGSCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSCACHE))}, + "SIOCBRDGSFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSFD))}, + "SIOCBRDGSHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSHT))}, + "SIOCBRDGSIFCOST": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFCOST))}, + "SIOCBRDGSIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFFLGS))}, + "SIOCBRDGSIFPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFPRIO))}, + "SIOCBRDGSMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSMA))}, + "SIOCBRDGSPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPRI))}, + "SIOCBRDGSPROTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPROTO))}, + "SIOCBRDGSTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTO))}, + "SIOCBRDGSTXHC": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTXHC))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDLIFADDR))}, + "SIOCGETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGETKALIVE))}, + "SIOCGETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGETLABEL))}, + "SIOCGETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFLOW))}, + "SIOCGETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFSYNC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVLAN))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFASYNCMAP))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGATTR))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFHARDMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHARDMTU))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPDSTADDR))}, + "SIOCGIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPRIORITY))}, + "SIOCGIFPSRCADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPSRCADDR))}, + "SIOCGIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRDOMAIN))}, + "SIOCGIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRTLABEL))}, + "SIOCGIFRXR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRXR))}, + "SIOCGIFTIMESLOT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFTIMESLOT))}, + "SIOCGIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFXFLAGS))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYRTABLE))}, + "SIOCGLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYTTL))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSPPPPARAMS))}, + "SIOCGVH": {"untyped int", constant.MakeInt64(int64(q.SIOCGVH))}, + "SIOCGVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCGVNETID))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSETKALIVE))}, + "SIOCSETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSETLABEL))}, + "SIOCSETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFLOW))}, + "SIOCSETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFSYNC))}, + "SIOCSETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSETVLAN))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFASYNCMAP": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFASYNCMAP))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGATTR))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPHYADDR))}, + "SIOCSIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPRIORITY))}, + "SIOCSIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRDOMAIN))}, + "SIOCSIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRTLABEL))}, + "SIOCSIFTIMESLOT": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFTIMESLOT))}, + "SIOCSIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFXFLAGS))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYRTABLE))}, + "SIOCSLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYTTL))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCSSPPPPARAMS))}, + "SIOCSVH": {"untyped int", constant.MakeInt64(int64(q.SIOCSVH))}, + "SIOCSVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCSVNETID))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_BINDANY": {"untyped int", constant.MakeInt64(int64(q.SO_BINDANY))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NETPROC": {"untyped int", constant.MakeInt64(int64(q.SO_NETPROC))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RTABLE": {"untyped int", constant.MakeInt64(int64(q.SO_RTABLE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SO_SPLICE))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJFREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJFREQ))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHFLAGSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGSAT))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDTABLECOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLECOUNT))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETENTROPY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETENTROPY))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRTABLE))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTHRID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTHRID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINCORE": {"untyped int", constant.MakeInt64(int64(q.SYS_MINCORE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQUERY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQUERY))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDSYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDSYSLOG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRTABLE))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCTL))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___GET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___GET_TCB))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___SET_TCB))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "SYS___TFORK": {"untyped int", constant.MakeInt64(int64(q.SYS___TFORK))}, + "SYS___THREXIT": {"untyped int", constant.MakeInt64(int64(q.SYS___THREXIT))}, + "SYS___THRSIGDIVERT": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSIGDIVERT))}, + "SYS___THRSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSLEEP))}, + "SYS___THRWAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRWAKEUP))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_NSTATES": {"untyped int", constant.MakeInt64(int64(q.TCP_NSTATES))}, + "TCP_SACK_ENABLE": {"untyped int", constant.MakeInt64(int64(q.TCP_SACK_ENABLE))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLAG_CLOCAL": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CLOCAL))}, + "TIOCFLAG_CRTSCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CRTSCTS))}, + "TIOCFLAG_MDMBUF": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_MDMBUF))}, + "TIOCFLAG_PPS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_PPS))}, + "TIOCFLAG_SOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_SOFTCAR))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCGFLAGS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCGTSTAMP))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCSFLAGS))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTSTAMP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALTSIG": {"untyped int", constant.MakeInt64(int64(q.WALTSIG))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_openbsd_arm64.go b/pkg/syscall/go123_export_openbsd_arm64.go new file mode 100755 index 00000000..dca2c6e9 --- /dev/null +++ b/pkg/syscall/go123_export_openbsd_arm64.go @@ -0,0 +1,2071 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Mclpool": reflect.TypeOf((*q.Mclpool)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EIPSEC": {reflect.TypeOf(q.EIPSEC), constant.MakeInt64(int64(q.EIPSEC))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_ENCAP": {"untyped int", constant.MakeInt64(int64(q.AF_ENCAP))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FRELAY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRELAY))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRFILT))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCGFILDROP))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRFILT))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCSFILDROP))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIRECTION_IN": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_IN))}, + "BPF_DIRECTION_OUT": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_OUT))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_FILDROP_CAPTURE": {"untyped int", constant.MakeInt64(int64(q.BPF_FILDROP_CAPTURE))}, + "BPF_FILDROP_DROP": {"untyped int", constant.MakeInt64(int64(q.BPF_FILDROP_DROP))}, + "BPF_FILDROP_PASS": {"untyped int", constant.MakeInt64(int64(q.BPF_FILDROP_PASS))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DIOCOSFPFLUSH": {"untyped int", constant.MakeInt64(int64(q.DIOCOSFPFLUSH))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_OPENFLOW": {"untyped int", constant.MakeInt64(int64(q.DLT_OPENFLOW))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_USBPCAP": {"untyped int", constant.MakeInt64(int64(q.DLT_USBPCAP))}, + "DLT_USER0": {"untyped int", constant.MakeInt64(int64(q.DLT_USER0))}, + "DLT_USER1": {"untyped int", constant.MakeInt64(int64(q.DLT_USER1))}, + "DLT_USER10": {"untyped int", constant.MakeInt64(int64(q.DLT_USER10))}, + "DLT_USER11": {"untyped int", constant.MakeInt64(int64(q.DLT_USER11))}, + "DLT_USER12": {"untyped int", constant.MakeInt64(int64(q.DLT_USER12))}, + "DLT_USER13": {"untyped int", constant.MakeInt64(int64(q.DLT_USER13))}, + "DLT_USER14": {"untyped int", constant.MakeInt64(int64(q.DLT_USER14))}, + "DLT_USER15": {"untyped int", constant.MakeInt64(int64(q.DLT_USER15))}, + "DLT_USER2": {"untyped int", constant.MakeInt64(int64(q.DLT_USER2))}, + "DLT_USER3": {"untyped int", constant.MakeInt64(int64(q.DLT_USER3))}, + "DLT_USER4": {"untyped int", constant.MakeInt64(int64(q.DLT_USER4))}, + "DLT_USER5": {"untyped int", constant.MakeInt64(int64(q.DLT_USER5))}, + "DLT_USER6": {"untyped int", constant.MakeInt64(int64(q.DLT_USER6))}, + "DLT_USER7": {"untyped int", constant.MakeInt64(int64(q.DLT_USER7))}, + "DLT_USER8": {"untyped int", constant.MakeInt64(int64(q.DLT_USER8))}, + "DLT_USER9": {"untyped int", constant.MakeInt64(int64(q.DLT_USER9))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMT_TAGOVF": {"untyped int", constant.MakeInt64(int64(q.EMT_TAGOVF))}, + "EMUL_ENABLED": {"untyped int", constant.MakeInt64(int64(q.EMUL_ENABLED))}, + "EMUL_NATIVE": {"untyped int", constant.MakeInt64(int64(q.EMUL_NATIVE))}, + "ENDRUNDISC": {"untyped int", constant.MakeInt64(int64(q.ENDRUNDISC))}, + "ETHERMIN": {"untyped int", constant.MakeInt64(int64(q.ETHERMIN))}, + "ETHERMTU": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU))}, + "ETHERTYPE_8023": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_8023))}, + "ETHERTYPE_AARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AARP))}, + "ETHERTYPE_ACCTON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ACCTON))}, + "ETHERTYPE_AEONIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AEONIC))}, + "ETHERTYPE_ALPHA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ALPHA))}, + "ETHERTYPE_AMBER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMBER))}, + "ETHERTYPE_AMOEBA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMOEBA))}, + "ETHERTYPE_AOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AOE))}, + "ETHERTYPE_APOLLO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLO))}, + "ETHERTYPE_APOLLODOMAIN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLODOMAIN))}, + "ETHERTYPE_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLETALK))}, + "ETHERTYPE_APPLITEK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLITEK))}, + "ETHERTYPE_ARGONAUT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARGONAUT))}, + "ETHERTYPE_ARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARP))}, + "ETHERTYPE_AT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AT))}, + "ETHERTYPE_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATALK))}, + "ETHERTYPE_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATOMIC))}, + "ETHERTYPE_ATT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATT))}, + "ETHERTYPE_ATTSTANFORD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATTSTANFORD))}, + "ETHERTYPE_AUTOPHON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AUTOPHON))}, + "ETHERTYPE_AXIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AXIS))}, + "ETHERTYPE_BCLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BCLOOP))}, + "ETHERTYPE_BOFL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BOFL))}, + "ETHERTYPE_CABLETRON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CABLETRON))}, + "ETHERTYPE_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CHAOS))}, + "ETHERTYPE_COMDESIGN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMDESIGN))}, + "ETHERTYPE_COMPUGRAPHIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMPUGRAPHIC))}, + "ETHERTYPE_COUNTERPOINT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COUNTERPOINT))}, + "ETHERTYPE_CRONUS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUS))}, + "ETHERTYPE_CRONUSVLN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUSVLN))}, + "ETHERTYPE_DCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DCA))}, + "ETHERTYPE_DDE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DDE))}, + "ETHERTYPE_DEBNI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DEBNI))}, + "ETHERTYPE_DECAM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECAM))}, + "ETHERTYPE_DECCUST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECCUST))}, + "ETHERTYPE_DECDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDIAG))}, + "ETHERTYPE_DECDNS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDNS))}, + "ETHERTYPE_DECDTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDTS))}, + "ETHERTYPE_DECEXPER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECEXPER))}, + "ETHERTYPE_DECLAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLAST))}, + "ETHERTYPE_DECLTM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLTM))}, + "ETHERTYPE_DECMUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECMUMPS))}, + "ETHERTYPE_DECNETBIOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECNETBIOS))}, + "ETHERTYPE_DELTACON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DELTACON))}, + "ETHERTYPE_DIDDLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DIDDLE))}, + "ETHERTYPE_DLOG1": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG1))}, + "ETHERTYPE_DLOG2": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG2))}, + "ETHERTYPE_DN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DN))}, + "ETHERTYPE_DOGFIGHT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DOGFIGHT))}, + "ETHERTYPE_DSMD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DSMD))}, + "ETHERTYPE_ECMA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ECMA))}, + "ETHERTYPE_ENCRYPT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ENCRYPT))}, + "ETHERTYPE_ES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ES))}, + "ETHERTYPE_EXCELAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXCELAN))}, + "ETHERTYPE_EXPERDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXPERDATA))}, + "ETHERTYPE_FLIP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLIP))}, + "ETHERTYPE_FLOWCONTROL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLOWCONTROL))}, + "ETHERTYPE_FRARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FRARP))}, + "ETHERTYPE_GENDYN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_GENDYN))}, + "ETHERTYPE_HAYES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HAYES))}, + "ETHERTYPE_HIPPI_FP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HIPPI_FP))}, + "ETHERTYPE_HITACHI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HITACHI))}, + "ETHERTYPE_HP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HP))}, + "ETHERTYPE_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUP))}, + "ETHERTYPE_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUPAT))}, + "ETHERTYPE_IMLBL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBL))}, + "ETHERTYPE_IMLBLDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBLDIAG))}, + "ETHERTYPE_IP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IP))}, + "ETHERTYPE_IPAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPAS))}, + "ETHERTYPE_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPV6))}, + "ETHERTYPE_IPX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPX))}, + "ETHERTYPE_IPXNEW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPXNEW))}, + "ETHERTYPE_KALPANA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_KALPANA))}, + "ETHERTYPE_LANBRIDGE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANBRIDGE))}, + "ETHERTYPE_LANPROBE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANPROBE))}, + "ETHERTYPE_LAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LAT))}, + "ETHERTYPE_LBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LBACK))}, + "ETHERTYPE_LITTLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LITTLE))}, + "ETHERTYPE_LLDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LLDP))}, + "ETHERTYPE_LOGICRAFT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOGICRAFT))}, + "ETHERTYPE_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOOPBACK))}, + "ETHERTYPE_MATRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MATRA))}, + "ETHERTYPE_MAX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MAX))}, + "ETHERTYPE_MERIT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MERIT))}, + "ETHERTYPE_MICP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MICP))}, + "ETHERTYPE_MOPDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPDL))}, + "ETHERTYPE_MOPRC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPRC))}, + "ETHERTYPE_MOTOROLA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOTOROLA))}, + "ETHERTYPE_MPLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS))}, + "ETHERTYPE_MPLS_MCAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS_MCAST))}, + "ETHERTYPE_MUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MUMPS))}, + "ETHERTYPE_NBPCC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCC))}, + "ETHERTYPE_NBPCLAIM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLAIM))}, + "ETHERTYPE_NBPCLREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLREQ))}, + "ETHERTYPE_NBPCLRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLRSP))}, + "ETHERTYPE_NBPCREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCREQ))}, + "ETHERTYPE_NBPCRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCRSP))}, + "ETHERTYPE_NBPDG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDG))}, + "ETHERTYPE_NBPDGB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDGB))}, + "ETHERTYPE_NBPDLTE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDLTE))}, + "ETHERTYPE_NBPRAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAR))}, + "ETHERTYPE_NBPRAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAS))}, + "ETHERTYPE_NBPRST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRST))}, + "ETHERTYPE_NBPSCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPSCD))}, + "ETHERTYPE_NBPVCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPVCD))}, + "ETHERTYPE_NBS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBS))}, + "ETHERTYPE_NCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NCD))}, + "ETHERTYPE_NESTAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NESTAR))}, + "ETHERTYPE_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NETBEUI))}, + "ETHERTYPE_NOVELL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NOVELL))}, + "ETHERTYPE_NS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NS))}, + "ETHERTYPE_NSAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSAT))}, + "ETHERTYPE_NSCOMPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSCOMPAT))}, + "ETHERTYPE_NTRAILER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NTRAILER))}, + "ETHERTYPE_OS9": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9))}, + "ETHERTYPE_OS9NET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9NET))}, + "ETHERTYPE_PACER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PACER))}, + "ETHERTYPE_PAE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PAE))}, + "ETHERTYPE_PBB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PBB))}, + "ETHERTYPE_PCS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PCS))}, + "ETHERTYPE_PLANNING": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PLANNING))}, + "ETHERTYPE_PPP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPP))}, + "ETHERTYPE_PPPOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOE))}, + "ETHERTYPE_PPPOEDISC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOEDISC))}, + "ETHERTYPE_PRIMENTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PRIMENTS))}, + "ETHERTYPE_PUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUP))}, + "ETHERTYPE_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUPAT))}, + "ETHERTYPE_QINQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_QINQ))}, + "ETHERTYPE_RACAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RACAL))}, + "ETHERTYPE_RATIONAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RATIONAL))}, + "ETHERTYPE_RAWFR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RAWFR))}, + "ETHERTYPE_RCL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RCL))}, + "ETHERTYPE_RDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RDP))}, + "ETHERTYPE_RETIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RETIX))}, + "ETHERTYPE_REVARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_REVARP))}, + "ETHERTYPE_SCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SCA))}, + "ETHERTYPE_SECTRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECTRA))}, + "ETHERTYPE_SECUREDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECUREDATA))}, + "ETHERTYPE_SGITW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SGITW))}, + "ETHERTYPE_SG_BOUNCE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_BOUNCE))}, + "ETHERTYPE_SG_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_DIAG))}, + "ETHERTYPE_SG_NETGAMES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_NETGAMES))}, + "ETHERTYPE_SG_RESV": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_RESV))}, + "ETHERTYPE_SIMNET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SIMNET))}, + "ETHERTYPE_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SLOW))}, + "ETHERTYPE_SNA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNA))}, + "ETHERTYPE_SNMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNMP))}, + "ETHERTYPE_SONIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SONIX))}, + "ETHERTYPE_SPIDER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPIDER))}, + "ETHERTYPE_SPRITE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPRITE))}, + "ETHERTYPE_STP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_STP))}, + "ETHERTYPE_TALARIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARIS))}, + "ETHERTYPE_TALARISMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARISMC))}, + "ETHERTYPE_TCPCOMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPCOMP))}, + "ETHERTYPE_TCPSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPSM))}, + "ETHERTYPE_TEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TEC))}, + "ETHERTYPE_TIGAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TIGAN))}, + "ETHERTYPE_TRAIL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRAIL))}, + "ETHERTYPE_TRANSETHER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRANSETHER))}, + "ETHERTYPE_TYMSHARE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TYMSHARE))}, + "ETHERTYPE_UBBST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBBST))}, + "ETHERTYPE_UBDEBUG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDEBUG))}, + "ETHERTYPE_UBDIAGLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDIAGLOOP))}, + "ETHERTYPE_UBDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDL))}, + "ETHERTYPE_UBNIU": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNIU))}, + "ETHERTYPE_UBNMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNMC))}, + "ETHERTYPE_VALID": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VALID))}, + "ETHERTYPE_VARIAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VARIAN))}, + "ETHERTYPE_VAXELN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VAXELN))}, + "ETHERTYPE_VEECO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEECO))}, + "ETHERTYPE_VEXP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEXP))}, + "ETHERTYPE_VGLAB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VGLAB))}, + "ETHERTYPE_VINES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINES))}, + "ETHERTYPE_VINESECHO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESECHO))}, + "ETHERTYPE_VINESLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESLOOP))}, + "ETHERTYPE_VITAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VITAL))}, + "ETHERTYPE_VLAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLAN))}, + "ETHERTYPE_VLTLMAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLTLMAN))}, + "ETHERTYPE_VPROD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VPROD))}, + "ETHERTYPE_VURESERVED": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VURESERVED))}, + "ETHERTYPE_WATERLOO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WATERLOO))}, + "ETHERTYPE_WELLFLEET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WELLFLEET))}, + "ETHERTYPE_X25": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X25))}, + "ETHERTYPE_X75": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X75))}, + "ETHERTYPE_XNSSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XNSSM))}, + "ETHERTYPE_XTP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XTP))}, + "ETHER_ADDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ADDR_LEN))}, + "ETHER_ALIGN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ALIGN))}, + "ETHER_CRC_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_LEN))}, + "ETHER_CRC_POLY_BE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_BE))}, + "ETHER_CRC_POLY_LE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_LE))}, + "ETHER_HDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_HDR_LEN))}, + "ETHER_MAX_DIX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_DIX_LEN))}, + "ETHER_MAX_HARDMTU_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_HARDMTU_LEN))}, + "ETHER_MAX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN))}, + "ETHER_MIN_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MIN_LEN))}, + "ETHER_TYPE_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_TYPE_LEN))}, + "ETHER_VLAN_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_VLAN_ENCAP_LEN))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_DEVICE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_DEVICE))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EVL_ENCAPLEN": {"untyped int", constant.MakeInt64(int64(q.EVL_ENCAPLEN))}, + "EVL_PRIO_BITS": {"untyped int", constant.MakeInt64(int64(q.EVL_PRIO_BITS))}, + "EVL_PRIO_MAX": {"untyped int", constant.MakeInt64(int64(q.EVL_PRIO_MAX))}, + "EVL_VLID_MASK": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_MASK))}, + "EVL_VLID_MAX": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_MAX))}, + "EVL_VLID_MIN": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_MIN))}, + "EVL_VLID_NULL": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_NULL))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_ISATTY": {"untyped int", constant.MakeInt64(int64(q.F_ISATTY))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_STATICARP": {"untyped int", constant.MakeInt64(int64(q.IFF_STATICARP))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.IFT_BLUETOOTH))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DOCSCABLEUPSTREAMCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAMCHANNEL))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DUMMY": {"untyped int", constant.MakeInt64(int64(q.IFT_DUMMY))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ECONET": {"untyped int", constant.MakeInt64(int64(q.IFT_ECONET))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LINEGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_LINEGROUP))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MBIM": {"untyped int", constant.MakeInt64(int64(q.IFT_MBIM))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFLOW": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOW))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_PON155": {"untyped int", constant.MakeInt64(int64(q.IFT_PON155))}, + "IFT_PON622": {"untyped int", constant.MakeInt64(int64(q.IFT_PON622))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPATM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPATM))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_Q2931": {"untyped int", constant.MakeInt64(int64(q.IFT_Q2931))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SIPSIG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPSIG))}, + "IFT_SIPTG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPTG))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_TELINK))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VIRTUALTG": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALTG))}, + "IFT_VOICEDID": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEDID))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEEMFGD": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEMFGD))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFGDEANA": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFGDEANA))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERCABLE": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERCABLE))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_HOST))}, + "IN_RFC3021_NET": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NET))}, + "IN_RFC3021_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NSHIFT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTH_LEVEL))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_NETWORK_LEVEL))}, + "IPV6_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_TRANS_LEVEL))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPCOMP_LEVEL))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MINHOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.IPV6_MINHOPCOUNT))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_OPTIONS))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IPV6_PIPEX))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTPORT))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTABLE))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_AUTH_LEVEL))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_NETWORK_LEVEL))}, + "IP_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_TRANS_LEVEL))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_IPCOMP_LEVEL))}, + "IP_IPDEFTTL": {"untyped int", constant.MakeInt64(int64(q.IP_IPDEFTTL))}, + "IP_IPSECFLOWINFO": {"untyped int", constant.MakeInt64(int64(q.IP_IPSECFLOWINFO))}, + "IP_IPSEC_LOCAL_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_AUTH))}, + "IP_IPSEC_LOCAL_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_CRED))}, + "IP_IPSEC_LOCAL_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_ID))}, + "IP_IPSEC_REMOTE_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_AUTH))}, + "IP_IPSEC_REMOTE_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_CRED))}, + "IP_IPSEC_REMOTE_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_ID))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IP_PIPEX))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTPORT))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVRTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRTABLE))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RTABLE))}, + "IP_SENDSRCADDR": {"untyped int", constant.MakeInt64(int64(q.IP_SENDSRCADDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LCNT_OVERLOAD_FLUSH": {"untyped int", constant.MakeInt64(int64(q.LCNT_OVERLOAD_FLUSH))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_CONCEAL": {"untyped int", constant.MakeInt64(int64(q.MAP_CONCEAL))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_FLAGMASK": {"untyped int", constant.MakeInt64(int64(q.MAP_FLAGMASK))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_INHERIT_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_COPY))}, + "MAP_INHERIT_NONE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_NONE))}, + "MAP_INHERIT_SHARE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_SHARE))}, + "MAP_INHERIT_ZERO": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_ZERO))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_BCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_BCAST))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_MCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_MCAST))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFNAMES": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFNAMES))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_STATS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_STATS))}, + "NET_RT_TABLE": {"untyped int", constant.MakeInt64(int64(q.NET_RT_TABLE))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHANGE": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHANGE))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EOF": {"untyped int", constant.MakeInt64(int64(q.NOTE_EOF))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRUNCATE))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PF_FLUSH": {"untyped int", constant.MakeInt64(int64(q.PF_FLUSH))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BFD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BFD))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DNS": {"untyped int", constant.MakeInt64(int64(q.RTAX_DNS))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTAX_LABEL))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_SEARCH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SEARCH))}, + "RTAX_SRC": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRC))}, + "RTAX_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRCMASK))}, + "RTAX_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTAX_STATIC))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BFD": {"untyped int", constant.MakeInt64(int64(q.RTA_BFD))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DNS": {"untyped int", constant.MakeInt64(int64(q.RTA_DNS))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTA_LABEL))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_SEARCH": {"untyped int", constant.MakeInt64(int64(q.RTA_SEARCH))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_SRCMASK))}, + "RTA_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTA_STATIC))}, + "RTF_ANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTF_ANNOUNCE))}, + "RTF_BFD": {"untyped int", constant.MakeInt64(int64(q.RTF_BFD))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHED": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHED))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_CONNECTED": {"untyped int", constant.MakeInt64(int64(q.RTF_CONNECTED))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MPATH": {"untyped int", constant.MakeInt64(int64(q.RTF_MPATH))}, + "RTF_MPLS": {"untyped int", constant.MakeInt64(int64(q.RTF_MPLS))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PERMANENT_ARP": {"untyped int", constant.MakeInt64(int64(q.RTF_PERMANENT_ARP))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_USETRAILERS": {"untyped int", constant.MakeInt64(int64(q.RTF_USETRAILERS))}, + "RTM_80211INFO": {"untyped int", constant.MakeInt64(int64(q.RTM_80211INFO))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_BFD": {"untyped int", constant.MakeInt64(int64(q.RTM_BFD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_CHGADDRATTR": {"untyped int", constant.MakeInt64(int64(q.RTM_CHGADDRATTR))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DESYNC": {"untyped int", constant.MakeInt64(int64(q.RTM_DESYNC))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.RTM_INVALIDATE))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MAXSIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_MAXSIZE))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_PROPOSAL": {"untyped int", constant.MakeInt64(int64(q.RTM_PROPOSAL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_RTTUNIT": {"untyped int", constant.MakeInt64(int64(q.RTM_RTTUNIT))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RT_TABLEID_BITS": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_BITS))}, + "RT_TABLEID_MASK": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_MASK))}, + "RT_TABLEID_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_MAX))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCBRDGADD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADD))}, + "SIOCBRDGADDL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADDL))}, + "SIOCBRDGADDS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADDS))}, + "SIOCBRDGARL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGARL))}, + "SIOCBRDGDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDADDR))}, + "SIOCBRDGDEL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDEL))}, + "SIOCBRDGDELS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDELS))}, + "SIOCBRDGFLUSH": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFLUSH))}, + "SIOCBRDGFRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFRL))}, + "SIOCBRDGGCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGCACHE))}, + "SIOCBRDGGFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGFD))}, + "SIOCBRDGGHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGHT))}, + "SIOCBRDGGIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGIFFLGS))}, + "SIOCBRDGGMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGMA))}, + "SIOCBRDGGPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPARAM))}, + "SIOCBRDGGPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPRI))}, + "SIOCBRDGGRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGRL))}, + "SIOCBRDGGTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGTO))}, + "SIOCBRDGIFS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGIFS))}, + "SIOCBRDGRTS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGRTS))}, + "SIOCBRDGSADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSADDR))}, + "SIOCBRDGSCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSCACHE))}, + "SIOCBRDGSFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSFD))}, + "SIOCBRDGSHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSHT))}, + "SIOCBRDGSIFCOST": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFCOST))}, + "SIOCBRDGSIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFFLGS))}, + "SIOCBRDGSIFPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFPRIO))}, + "SIOCBRDGSIFPROT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFPROT))}, + "SIOCBRDGSMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSMA))}, + "SIOCBRDGSPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPRI))}, + "SIOCBRDGSPROTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPROTO))}, + "SIOCBRDGSTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTO))}, + "SIOCBRDGSTXHC": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTXHC))}, + "SIOCDELLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCDELLABEL))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPARENT": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPARENT))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDPWE3NEIGHBOR": {"untyped int", constant.MakeInt64(int64(q.SIOCDPWE3NEIGHBOR))}, + "SIOCDVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCDVNETID))}, + "SIOCGETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGETKALIVE))}, + "SIOCGETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGETLABEL))}, + "SIOCGETMPWCFG": {"untyped int", constant.MakeInt64(int64(q.SIOCGETMPWCFG))}, + "SIOCGETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFLOW))}, + "SIOCGETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFSYNC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVLAN))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGATTR))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGLIST": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGLIST))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFHARDMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHARDMTU))}, + "SIOCGIFLLPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFLLPRIO))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPAIR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPAIR))}, + "SIOCGIFPARENT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPARENT))}, + "SIOCGIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPRIORITY))}, + "SIOCGIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRDOMAIN))}, + "SIOCGIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRTLABEL))}, + "SIOCGIFRXR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRXR))}, + "SIOCGIFSFFPAGE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSFFPAGE))}, + "SIOCGIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFXFLAGS))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLIFPHYDF": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYDF))}, + "SIOCGLIFPHYECN": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYECN))}, + "SIOCGLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYRTABLE))}, + "SIOCGLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYTTL))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGPWE3": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3))}, + "SIOCGPWE3CTRLWORD": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3CTRLWORD))}, + "SIOCGPWE3FAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3FAT))}, + "SIOCGPWE3NEIGHBOR": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3NEIGHBOR))}, + "SIOCGSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSPPPPARAMS))}, + "SIOCGTXHPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCGTXHPRIO))}, + "SIOCGUMBINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCGUMBINFO))}, + "SIOCGUMBPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCGUMBPARAM))}, + "SIOCGVH": {"untyped int", constant.MakeInt64(int64(q.SIOCGVH))}, + "SIOCGVNETFLOWID": {"untyped int", constant.MakeInt64(int64(q.SIOCGVNETFLOWID))}, + "SIOCGVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCGVNETID))}, + "SIOCIFAFATTACH": {"untyped int", constant.MakeInt64(int64(q.SIOCIFAFATTACH))}, + "SIOCIFAFDETACH": {"untyped int", constant.MakeInt64(int64(q.SIOCIFAFDETACH))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSETKALIVE))}, + "SIOCSETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSETLABEL))}, + "SIOCSETMPWCFG": {"untyped int", constant.MakeInt64(int64(q.SIOCSETMPWCFG))}, + "SIOCSETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFLOW))}, + "SIOCSETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFSYNC))}, + "SIOCSETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSETVLAN))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGATTR))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFLLPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLPRIO))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPAIR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPAIR))}, + "SIOCSIFPARENT": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPARENT))}, + "SIOCSIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPRIORITY))}, + "SIOCSIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRDOMAIN))}, + "SIOCSIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRTLABEL))}, + "SIOCSIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFXFLAGS))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLIFPHYDF": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYDF))}, + "SIOCSLIFPHYECN": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYECN))}, + "SIOCSLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYRTABLE))}, + "SIOCSLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYTTL))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSPWE3CTRLWORD": {"untyped int", constant.MakeInt64(int64(q.SIOCSPWE3CTRLWORD))}, + "SIOCSPWE3FAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSPWE3FAT))}, + "SIOCSPWE3NEIGHBOR": {"untyped int", constant.MakeInt64(int64(q.SIOCSPWE3NEIGHBOR))}, + "SIOCSSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCSSPPPPARAMS))}, + "SIOCSTXHPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCSTXHPRIO))}, + "SIOCSUMBPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCSUMBPARAM))}, + "SIOCSVH": {"untyped int", constant.MakeInt64(int64(q.SIOCSVH))}, + "SIOCSVNETFLOWID": {"untyped int", constant.MakeInt64(int64(q.SIOCSVNETFLOWID))}, + "SIOCSVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCSVNETID))}, + "SIOCSWGDPID": {"untyped int", constant.MakeInt64(int64(q.SIOCSWGDPID))}, + "SIOCSWGMAXFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCSWGMAXFLOW))}, + "SIOCSWGMAXGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCSWGMAXGROUP))}, + "SIOCSWSDPID": {"untyped int", constant.MakeInt64(int64(q.SIOCSWSDPID))}, + "SIOCSWSPORTNO": {"untyped int", constant.MakeInt64(int64(q.SIOCSWSPORTNO))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_DNS": {"untyped int", constant.MakeInt64(int64(q.SOCK_DNS))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_BINDANY": {"untyped int", constant.MakeInt64(int64(q.SO_BINDANY))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NETPROC": {"untyped int", constant.MakeInt64(int64(q.SO_NETPROC))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RTABLE": {"untyped int", constant.MakeInt64(int64(q.SO_RTABLE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SO_SPLICE))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_ZEROIZE": {"untyped int", constant.MakeInt64(int64(q.SO_ZEROIZE))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJFREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJFREQ))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHFLAGSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGSAT))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDTABLECOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLECOUNT))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETENTROPY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETENTROPY))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN_R": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN_R))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRTABLE))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTHRID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTHRID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_KBIND))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQUERY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQUERY))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PLEDGE": {"untyped int", constant.MakeInt64(int64(q.SYS_PLEDGE))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDSYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDSYSLOG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRTABLE))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCTL))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCTL))}, + "SYS_THRKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_THRKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UNVEIL": {"untyped int", constant.MakeInt64(int64(q.SYS_UNVEIL))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___GET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___GET_TCB))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___SET_TCB))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "SYS___TFORK": {"untyped int", constant.MakeInt64(int64(q.SYS___TFORK))}, + "SYS___THREXIT": {"untyped int", constant.MakeInt64(int64(q.SYS___THREXIT))}, + "SYS___THRSIGDIVERT": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSIGDIVERT))}, + "SYS___THRSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSLEEP))}, + "SYS___THRWAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRWAKEUP))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_MAXBURST": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXBURST))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_SACK_ENABLE": {"untyped int", constant.MakeInt64(int64(q.TCP_SACK_ENABLE))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCHKVERAUTH": {"untyped int", constant.MakeInt64(int64(q.TIOCCHKVERAUTH))}, + "TIOCCLRVERAUTH": {"untyped int", constant.MakeInt64(int64(q.TIOCCLRVERAUTH))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLAG_CLOCAL": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CLOCAL))}, + "TIOCFLAG_CRTSCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CRTSCTS))}, + "TIOCFLAG_MDMBUF": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_MDMBUF))}, + "TIOCFLAG_PPS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_PPS))}, + "TIOCFLAG_SOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_SOFTCAR))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCGFLAGS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCGTSTAMP))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETVERAUTH": {"untyped int", constant.MakeInt64(int64(q.TIOCSETVERAUTH))}, + "TIOCSFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCSFLAGS))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTSTAMP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TIOCUCNTL_CBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL_CBRK))}, + "TIOCUCNTL_SBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL_SBRK))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALTSIG": {"untyped int", constant.MakeInt64(int64(q.WALTSIG))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_openbsd_ppc64.go b/pkg/syscall/go123_export_openbsd_ppc64.go new file mode 100755 index 00000000..7e04b5e3 --- /dev/null +++ b/pkg/syscall/go123_export_openbsd_ppc64.go @@ -0,0 +1,2105 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Mclpool": reflect.TypeOf((*q.Mclpool)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EIPSEC": {reflect.TypeOf(q.EIPSEC), constant.MakeInt64(int64(q.EIPSEC))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_ENCAP": {"untyped int", constant.MakeInt64(int64(q.AF_ENCAP))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FRELAY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRELAY))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRFILT))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCGFILDROP))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRFILT))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCSFILDROP))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIRECTION_IN": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_IN))}, + "BPF_DIRECTION_OUT": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_OUT))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_FILDROP_CAPTURE": {"untyped int", constant.MakeInt64(int64(q.BPF_FILDROP_CAPTURE))}, + "BPF_FILDROP_DROP": {"untyped int", constant.MakeInt64(int64(q.BPF_FILDROP_DROP))}, + "BPF_FILDROP_PASS": {"untyped int", constant.MakeInt64(int64(q.BPF_FILDROP_PASS))}, + "BPF_F_DIR_IN": {"untyped int", constant.MakeInt64(int64(q.BPF_F_DIR_IN))}, + "BPF_F_DIR_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_F_DIR_MASK))}, + "BPF_F_DIR_OUT": {"untyped int", constant.MakeInt64(int64(q.BPF_F_DIR_OUT))}, + "BPF_F_DIR_SHIFT": {"untyped int", constant.MakeInt64(int64(q.BPF_F_DIR_SHIFT))}, + "BPF_F_FLOWID": {"untyped int", constant.MakeInt64(int64(q.BPF_F_FLOWID))}, + "BPF_F_PRI_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_F_PRI_MASK))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RND": {"untyped int", constant.MakeInt64(int64(q.BPF_RND))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DIOCOSFPFLUSH": {"untyped int", constant.MakeInt64(int64(q.DIOCOSFPFLUSH))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_OPENFLOW": {"untyped int", constant.MakeInt64(int64(q.DLT_OPENFLOW))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_USBPCAP": {"untyped int", constant.MakeInt64(int64(q.DLT_USBPCAP))}, + "DLT_USER0": {"untyped int", constant.MakeInt64(int64(q.DLT_USER0))}, + "DLT_USER1": {"untyped int", constant.MakeInt64(int64(q.DLT_USER1))}, + "DLT_USER10": {"untyped int", constant.MakeInt64(int64(q.DLT_USER10))}, + "DLT_USER11": {"untyped int", constant.MakeInt64(int64(q.DLT_USER11))}, + "DLT_USER12": {"untyped int", constant.MakeInt64(int64(q.DLT_USER12))}, + "DLT_USER13": {"untyped int", constant.MakeInt64(int64(q.DLT_USER13))}, + "DLT_USER14": {"untyped int", constant.MakeInt64(int64(q.DLT_USER14))}, + "DLT_USER15": {"untyped int", constant.MakeInt64(int64(q.DLT_USER15))}, + "DLT_USER2": {"untyped int", constant.MakeInt64(int64(q.DLT_USER2))}, + "DLT_USER3": {"untyped int", constant.MakeInt64(int64(q.DLT_USER3))}, + "DLT_USER4": {"untyped int", constant.MakeInt64(int64(q.DLT_USER4))}, + "DLT_USER5": {"untyped int", constant.MakeInt64(int64(q.DLT_USER5))}, + "DLT_USER6": {"untyped int", constant.MakeInt64(int64(q.DLT_USER6))}, + "DLT_USER7": {"untyped int", constant.MakeInt64(int64(q.DLT_USER7))}, + "DLT_USER8": {"untyped int", constant.MakeInt64(int64(q.DLT_USER8))}, + "DLT_USER9": {"untyped int", constant.MakeInt64(int64(q.DLT_USER9))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMT_TAGOVF": {"untyped int", constant.MakeInt64(int64(q.EMT_TAGOVF))}, + "EMUL_ENABLED": {"untyped int", constant.MakeInt64(int64(q.EMUL_ENABLED))}, + "EMUL_NATIVE": {"untyped int", constant.MakeInt64(int64(q.EMUL_NATIVE))}, + "ENDRUNDISC": {"untyped int", constant.MakeInt64(int64(q.ENDRUNDISC))}, + "ETH64_8021_RSVD_MASK": {"untyped int", constant.MakeInt64(int64(q.ETH64_8021_RSVD_MASK))}, + "ETH64_8021_RSVD_PREFIX": {"untyped int", constant.MakeInt64(int64(q.ETH64_8021_RSVD_PREFIX))}, + "ETHERMIN": {"untyped int", constant.MakeInt64(int64(q.ETHERMIN))}, + "ETHERMTU": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU))}, + "ETHERTYPE_8023": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_8023))}, + "ETHERTYPE_AARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AARP))}, + "ETHERTYPE_ACCTON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ACCTON))}, + "ETHERTYPE_AEONIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AEONIC))}, + "ETHERTYPE_ALPHA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ALPHA))}, + "ETHERTYPE_AMBER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMBER))}, + "ETHERTYPE_AMOEBA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMOEBA))}, + "ETHERTYPE_AOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AOE))}, + "ETHERTYPE_APOLLO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLO))}, + "ETHERTYPE_APOLLODOMAIN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLODOMAIN))}, + "ETHERTYPE_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLETALK))}, + "ETHERTYPE_APPLITEK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLITEK))}, + "ETHERTYPE_ARGONAUT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARGONAUT))}, + "ETHERTYPE_ARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARP))}, + "ETHERTYPE_AT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AT))}, + "ETHERTYPE_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATALK))}, + "ETHERTYPE_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATOMIC))}, + "ETHERTYPE_ATT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATT))}, + "ETHERTYPE_ATTSTANFORD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATTSTANFORD))}, + "ETHERTYPE_AUTOPHON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AUTOPHON))}, + "ETHERTYPE_AXIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AXIS))}, + "ETHERTYPE_BCLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BCLOOP))}, + "ETHERTYPE_BOFL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BOFL))}, + "ETHERTYPE_CABLETRON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CABLETRON))}, + "ETHERTYPE_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CHAOS))}, + "ETHERTYPE_COMDESIGN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMDESIGN))}, + "ETHERTYPE_COMPUGRAPHIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMPUGRAPHIC))}, + "ETHERTYPE_COUNTERPOINT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COUNTERPOINT))}, + "ETHERTYPE_CRONUS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUS))}, + "ETHERTYPE_CRONUSVLN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUSVLN))}, + "ETHERTYPE_DCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DCA))}, + "ETHERTYPE_DDE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DDE))}, + "ETHERTYPE_DEBNI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DEBNI))}, + "ETHERTYPE_DECAM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECAM))}, + "ETHERTYPE_DECCUST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECCUST))}, + "ETHERTYPE_DECDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDIAG))}, + "ETHERTYPE_DECDNS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDNS))}, + "ETHERTYPE_DECDTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDTS))}, + "ETHERTYPE_DECEXPER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECEXPER))}, + "ETHERTYPE_DECLAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLAST))}, + "ETHERTYPE_DECLTM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLTM))}, + "ETHERTYPE_DECMUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECMUMPS))}, + "ETHERTYPE_DECNETBIOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECNETBIOS))}, + "ETHERTYPE_DELTACON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DELTACON))}, + "ETHERTYPE_DIDDLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DIDDLE))}, + "ETHERTYPE_DLOG1": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG1))}, + "ETHERTYPE_DLOG2": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG2))}, + "ETHERTYPE_DN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DN))}, + "ETHERTYPE_DOGFIGHT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DOGFIGHT))}, + "ETHERTYPE_DSMD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DSMD))}, + "ETHERTYPE_EAPOL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EAPOL))}, + "ETHERTYPE_ECMA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ECMA))}, + "ETHERTYPE_ENCRYPT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ENCRYPT))}, + "ETHERTYPE_ES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ES))}, + "ETHERTYPE_EXCELAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXCELAN))}, + "ETHERTYPE_EXPERDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXPERDATA))}, + "ETHERTYPE_FLIP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLIP))}, + "ETHERTYPE_FLOWCONTROL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLOWCONTROL))}, + "ETHERTYPE_FRARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FRARP))}, + "ETHERTYPE_GENDYN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_GENDYN))}, + "ETHERTYPE_HAYES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HAYES))}, + "ETHERTYPE_HIPPI_FP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HIPPI_FP))}, + "ETHERTYPE_HITACHI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HITACHI))}, + "ETHERTYPE_HP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HP))}, + "ETHERTYPE_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUP))}, + "ETHERTYPE_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUPAT))}, + "ETHERTYPE_IMLBL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBL))}, + "ETHERTYPE_IMLBLDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBLDIAG))}, + "ETHERTYPE_IP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IP))}, + "ETHERTYPE_IPAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPAS))}, + "ETHERTYPE_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPV6))}, + "ETHERTYPE_IPX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPX))}, + "ETHERTYPE_IPXNEW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPXNEW))}, + "ETHERTYPE_KALPANA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_KALPANA))}, + "ETHERTYPE_LANBRIDGE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANBRIDGE))}, + "ETHERTYPE_LANPROBE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANPROBE))}, + "ETHERTYPE_LAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LAT))}, + "ETHERTYPE_LBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LBACK))}, + "ETHERTYPE_LITTLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LITTLE))}, + "ETHERTYPE_LLDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LLDP))}, + "ETHERTYPE_LOGICRAFT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOGICRAFT))}, + "ETHERTYPE_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOOPBACK))}, + "ETHERTYPE_MACSEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MACSEC))}, + "ETHERTYPE_MATRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MATRA))}, + "ETHERTYPE_MAX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MAX))}, + "ETHERTYPE_MERIT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MERIT))}, + "ETHERTYPE_MICP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MICP))}, + "ETHERTYPE_MOPDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPDL))}, + "ETHERTYPE_MOPRC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPRC))}, + "ETHERTYPE_MOTOROLA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOTOROLA))}, + "ETHERTYPE_MPLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS))}, + "ETHERTYPE_MPLS_MCAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS_MCAST))}, + "ETHERTYPE_MUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MUMPS))}, + "ETHERTYPE_NBPCC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCC))}, + "ETHERTYPE_NBPCLAIM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLAIM))}, + "ETHERTYPE_NBPCLREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLREQ))}, + "ETHERTYPE_NBPCLRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLRSP))}, + "ETHERTYPE_NBPCREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCREQ))}, + "ETHERTYPE_NBPCRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCRSP))}, + "ETHERTYPE_NBPDG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDG))}, + "ETHERTYPE_NBPDGB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDGB))}, + "ETHERTYPE_NBPDLTE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDLTE))}, + "ETHERTYPE_NBPRAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAR))}, + "ETHERTYPE_NBPRAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAS))}, + "ETHERTYPE_NBPRST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRST))}, + "ETHERTYPE_NBPSCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPSCD))}, + "ETHERTYPE_NBPVCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPVCD))}, + "ETHERTYPE_NBS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBS))}, + "ETHERTYPE_NCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NCD))}, + "ETHERTYPE_NESTAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NESTAR))}, + "ETHERTYPE_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NETBEUI))}, + "ETHERTYPE_NHRP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NHRP))}, + "ETHERTYPE_NOVELL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NOVELL))}, + "ETHERTYPE_NS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NS))}, + "ETHERTYPE_NSAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSAT))}, + "ETHERTYPE_NSCOMPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSCOMPAT))}, + "ETHERTYPE_NSH": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSH))}, + "ETHERTYPE_NTRAILER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NTRAILER))}, + "ETHERTYPE_OS9": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9))}, + "ETHERTYPE_OS9NET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9NET))}, + "ETHERTYPE_PACER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PACER))}, + "ETHERTYPE_PBB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PBB))}, + "ETHERTYPE_PCS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PCS))}, + "ETHERTYPE_PLANNING": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PLANNING))}, + "ETHERTYPE_PPP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPP))}, + "ETHERTYPE_PPPOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOE))}, + "ETHERTYPE_PPPOEDISC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOEDISC))}, + "ETHERTYPE_PRIMENTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PRIMENTS))}, + "ETHERTYPE_PUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUP))}, + "ETHERTYPE_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUPAT))}, + "ETHERTYPE_QINQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_QINQ))}, + "ETHERTYPE_RACAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RACAL))}, + "ETHERTYPE_RATIONAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RATIONAL))}, + "ETHERTYPE_RAWFR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RAWFR))}, + "ETHERTYPE_RCL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RCL))}, + "ETHERTYPE_RDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RDP))}, + "ETHERTYPE_RETIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RETIX))}, + "ETHERTYPE_REVARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_REVARP))}, + "ETHERTYPE_SCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SCA))}, + "ETHERTYPE_SECTRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECTRA))}, + "ETHERTYPE_SECUREDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECUREDATA))}, + "ETHERTYPE_SGITW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SGITW))}, + "ETHERTYPE_SG_BOUNCE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_BOUNCE))}, + "ETHERTYPE_SG_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_DIAG))}, + "ETHERTYPE_SG_NETGAMES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_NETGAMES))}, + "ETHERTYPE_SG_RESV": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_RESV))}, + "ETHERTYPE_SIMNET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SIMNET))}, + "ETHERTYPE_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SLOW))}, + "ETHERTYPE_SNA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNA))}, + "ETHERTYPE_SNMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNMP))}, + "ETHERTYPE_SONIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SONIX))}, + "ETHERTYPE_SPIDER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPIDER))}, + "ETHERTYPE_SPRITE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPRITE))}, + "ETHERTYPE_STP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_STP))}, + "ETHERTYPE_TALARIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARIS))}, + "ETHERTYPE_TALARISMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARISMC))}, + "ETHERTYPE_TCPCOMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPCOMP))}, + "ETHERTYPE_TCPSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPSM))}, + "ETHERTYPE_TEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TEC))}, + "ETHERTYPE_TIGAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TIGAN))}, + "ETHERTYPE_TRAIL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRAIL))}, + "ETHERTYPE_TRANSETHER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRANSETHER))}, + "ETHERTYPE_TYMSHARE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TYMSHARE))}, + "ETHERTYPE_UBBST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBBST))}, + "ETHERTYPE_UBDEBUG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDEBUG))}, + "ETHERTYPE_UBDIAGLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDIAGLOOP))}, + "ETHERTYPE_UBDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDL))}, + "ETHERTYPE_UBNIU": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNIU))}, + "ETHERTYPE_UBNMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNMC))}, + "ETHERTYPE_VALID": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VALID))}, + "ETHERTYPE_VARIAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VARIAN))}, + "ETHERTYPE_VAXELN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VAXELN))}, + "ETHERTYPE_VEECO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEECO))}, + "ETHERTYPE_VEXP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEXP))}, + "ETHERTYPE_VGLAB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VGLAB))}, + "ETHERTYPE_VINES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINES))}, + "ETHERTYPE_VINESECHO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESECHO))}, + "ETHERTYPE_VINESLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESLOOP))}, + "ETHERTYPE_VITAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VITAL))}, + "ETHERTYPE_VLAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLAN))}, + "ETHERTYPE_VLTLMAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLTLMAN))}, + "ETHERTYPE_VPROD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VPROD))}, + "ETHERTYPE_VURESERVED": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VURESERVED))}, + "ETHERTYPE_WATERLOO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WATERLOO))}, + "ETHERTYPE_WELLFLEET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WELLFLEET))}, + "ETHERTYPE_X25": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X25))}, + "ETHERTYPE_X75": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X75))}, + "ETHERTYPE_XNSSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XNSSM))}, + "ETHERTYPE_XTP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XTP))}, + "ETHER_ADDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ADDR_LEN))}, + "ETHER_ALIGN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ALIGN))}, + "ETHER_CRC_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_LEN))}, + "ETHER_CRC_POLY_BE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_BE))}, + "ETHER_CRC_POLY_LE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_LE))}, + "ETHER_HDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_HDR_LEN))}, + "ETHER_MAX_DIX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_DIX_LEN))}, + "ETHER_MAX_HARDMTU_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_HARDMTU_LEN))}, + "ETHER_MAX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN))}, + "ETHER_MIN_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MIN_LEN))}, + "ETHER_TYPE_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_TYPE_LEN))}, + "ETHER_VLAN_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_VLAN_ENCAP_LEN))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_DEVICE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_DEVICE))}, + "EVFILT_EXCEPT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_EXCEPT))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EVL_ENCAPLEN": {"untyped int", constant.MakeInt64(int64(q.EVL_ENCAPLEN))}, + "EVL_PRIO_BITS": {"untyped int", constant.MakeInt64(int64(q.EVL_PRIO_BITS))}, + "EVL_PRIO_MAX": {"untyped int", constant.MakeInt64(int64(q.EVL_PRIO_MAX))}, + "EVL_VLID_MASK": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_MASK))}, + "EVL_VLID_MAX": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_MAX))}, + "EVL_VLID_MIN": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_MIN))}, + "EVL_VLID_NULL": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_NULL))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_ISATTY": {"untyped int", constant.MakeInt64(int64(q.F_ISATTY))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_STATICARP": {"untyped int", constant.MakeInt64(int64(q.IFF_STATICARP))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.IFT_BLUETOOTH))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DOCSCABLEUPSTREAMCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAMCHANNEL))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DUMMY": {"untyped int", constant.MakeInt64(int64(q.IFT_DUMMY))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ECONET": {"untyped int", constant.MakeInt64(int64(q.IFT_ECONET))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LINEGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_LINEGROUP))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MBIM": {"untyped int", constant.MakeInt64(int64(q.IFT_MBIM))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFLOW": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOW))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_PON155": {"untyped int", constant.MakeInt64(int64(q.IFT_PON155))}, + "IFT_PON622": {"untyped int", constant.MakeInt64(int64(q.IFT_PON622))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPATM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPATM))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_Q2931": {"untyped int", constant.MakeInt64(int64(q.IFT_Q2931))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SIPSIG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPSIG))}, + "IFT_SIPTG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPTG))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_TELINK))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VIRTUALTG": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALTG))}, + "IFT_VOICEDID": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEDID))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEEMFGD": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEMFGD))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFGDEANA": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFGDEANA))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERCABLE": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERCABLE))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_WIREGUARD": {"untyped int", constant.MakeInt64(int64(q.IFT_WIREGUARD))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_HOST))}, + "IN_RFC3021_NET": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NET))}, + "IN_RFC3021_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NSHIFT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTH_LEVEL))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_NETWORK_LEVEL))}, + "IPV6_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_TRANS_LEVEL))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPCOMP_LEVEL))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MINHOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.IPV6_MINHOPCOUNT))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_OPTIONS))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IPV6_PIPEX))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTPORT))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTABLE))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_AUTH_LEVEL))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_NETWORK_LEVEL))}, + "IP_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_TRANS_LEVEL))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_IPCOMP_LEVEL))}, + "IP_IPDEFTTL": {"untyped int", constant.MakeInt64(int64(q.IP_IPDEFTTL))}, + "IP_IPSECFLOWINFO": {"untyped int", constant.MakeInt64(int64(q.IP_IPSECFLOWINFO))}, + "IP_IPSEC_LOCAL_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_AUTH))}, + "IP_IPSEC_LOCAL_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_CRED))}, + "IP_IPSEC_LOCAL_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_ID))}, + "IP_IPSEC_REMOTE_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_AUTH))}, + "IP_IPSEC_REMOTE_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_CRED))}, + "IP_IPSEC_REMOTE_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_ID))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IP_PIPEX))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTPORT))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVRTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRTABLE))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RTABLE))}, + "IP_SENDSRCADDR": {"untyped int", constant.MakeInt64(int64(q.IP_SENDSRCADDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LCNT_OVERLOAD_FLUSH": {"untyped int", constant.MakeInt64(int64(q.LCNT_OVERLOAD_FLUSH))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_CONCEAL": {"untyped int", constant.MakeInt64(int64(q.MAP_CONCEAL))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_FLAGMASK": {"untyped int", constant.MakeInt64(int64(q.MAP_FLAGMASK))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_INHERIT_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_COPY))}, + "MAP_INHERIT_NONE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_NONE))}, + "MAP_INHERIT_SHARE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_SHARE))}, + "MAP_INHERIT_ZERO": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_ZERO))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_BCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_BCAST))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_MCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_MCAST))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_WAITFORONE": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITFORONE))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFNAMES": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFNAMES))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_SOURCE": {"untyped int", constant.MakeInt64(int64(q.NET_RT_SOURCE))}, + "NET_RT_STATS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_STATS))}, + "NET_RT_TABLE": {"untyped int", constant.MakeInt64(int64(q.NET_RT_TABLE))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHANGE": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHANGE))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EOF": {"untyped int", constant.MakeInt64(int64(q.NOTE_EOF))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_OOB": {"untyped int", constant.MakeInt64(int64(q.NOTE_OOB))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRUNCATE))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PF_FLUSH": {"untyped int", constant.MakeInt64(int64(q.PF_FLUSH))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BFD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BFD))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DNS": {"untyped int", constant.MakeInt64(int64(q.RTAX_DNS))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTAX_LABEL))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_SEARCH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SEARCH))}, + "RTAX_SRC": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRC))}, + "RTAX_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRCMASK))}, + "RTAX_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTAX_STATIC))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BFD": {"untyped int", constant.MakeInt64(int64(q.RTA_BFD))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DNS": {"untyped int", constant.MakeInt64(int64(q.RTA_DNS))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTA_LABEL))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_SEARCH": {"untyped int", constant.MakeInt64(int64(q.RTA_SEARCH))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_SRCMASK))}, + "RTA_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTA_STATIC))}, + "RTF_ANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTF_ANNOUNCE))}, + "RTF_BFD": {"untyped int", constant.MakeInt64(int64(q.RTF_BFD))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHED": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHED))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_CONNECTED": {"untyped int", constant.MakeInt64(int64(q.RTF_CONNECTED))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MPATH": {"untyped int", constant.MakeInt64(int64(q.RTF_MPATH))}, + "RTF_MPLS": {"untyped int", constant.MakeInt64(int64(q.RTF_MPLS))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PERMANENT_ARP": {"untyped int", constant.MakeInt64(int64(q.RTF_PERMANENT_ARP))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_USETRAILERS": {"untyped int", constant.MakeInt64(int64(q.RTF_USETRAILERS))}, + "RTM_80211INFO": {"untyped int", constant.MakeInt64(int64(q.RTM_80211INFO))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_BFD": {"untyped int", constant.MakeInt64(int64(q.RTM_BFD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_CHGADDRATTR": {"untyped int", constant.MakeInt64(int64(q.RTM_CHGADDRATTR))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DESYNC": {"untyped int", constant.MakeInt64(int64(q.RTM_DESYNC))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.RTM_INVALIDATE))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MAXSIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_MAXSIZE))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_PROPOSAL": {"untyped int", constant.MakeInt64(int64(q.RTM_PROPOSAL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_SOURCE": {"untyped int", constant.MakeInt64(int64(q.RTM_SOURCE))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RT_TABLEID_BITS": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_BITS))}, + "RT_TABLEID_MASK": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_MASK))}, + "RT_TABLEID_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_MAX))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCBRDGADD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADD))}, + "SIOCBRDGADDL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADDL))}, + "SIOCBRDGADDS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADDS))}, + "SIOCBRDGARL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGARL))}, + "SIOCBRDGDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDADDR))}, + "SIOCBRDGDEL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDEL))}, + "SIOCBRDGDELS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDELS))}, + "SIOCBRDGFLUSH": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFLUSH))}, + "SIOCBRDGFRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFRL))}, + "SIOCBRDGGCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGCACHE))}, + "SIOCBRDGGFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGFD))}, + "SIOCBRDGGHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGHT))}, + "SIOCBRDGGIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGIFFLGS))}, + "SIOCBRDGGMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGMA))}, + "SIOCBRDGGPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPARAM))}, + "SIOCBRDGGPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPRI))}, + "SIOCBRDGGRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGRL))}, + "SIOCBRDGGTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGTO))}, + "SIOCBRDGIFS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGIFS))}, + "SIOCBRDGRTS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGRTS))}, + "SIOCBRDGSADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSADDR))}, + "SIOCBRDGSCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSCACHE))}, + "SIOCBRDGSFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSFD))}, + "SIOCBRDGSHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSHT))}, + "SIOCBRDGSIFCOST": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFCOST))}, + "SIOCBRDGSIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFFLGS))}, + "SIOCBRDGSIFPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFPRIO))}, + "SIOCBRDGSIFPROT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFPROT))}, + "SIOCBRDGSMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSMA))}, + "SIOCBRDGSPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPRI))}, + "SIOCBRDGSPROTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPROTO))}, + "SIOCBRDGSTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTO))}, + "SIOCBRDGSTXHC": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTXHC))}, + "SIOCDELLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCDELLABEL))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPARENT": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPARENT))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDPWE3NEIGHBOR": {"untyped int", constant.MakeInt64(int64(q.SIOCDPWE3NEIGHBOR))}, + "SIOCDVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCDVNETID))}, + "SIOCGETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGETKALIVE))}, + "SIOCGETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGETLABEL))}, + "SIOCGETMPWCFG": {"untyped int", constant.MakeInt64(int64(q.SIOCGETMPWCFG))}, + "SIOCGETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFLOW))}, + "SIOCGETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFSYNC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVLAN))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGATTR))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGLIST": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGLIST))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFHARDMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHARDMTU))}, + "SIOCGIFLLPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFLLPRIO))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPAIR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPAIR))}, + "SIOCGIFPARENT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPARENT))}, + "SIOCGIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPRIORITY))}, + "SIOCGIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRDOMAIN))}, + "SIOCGIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRTLABEL))}, + "SIOCGIFRXR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRXR))}, + "SIOCGIFSFFPAGE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSFFPAGE))}, + "SIOCGIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFXFLAGS))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLIFPHYDF": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYDF))}, + "SIOCGLIFPHYECN": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYECN))}, + "SIOCGLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYRTABLE))}, + "SIOCGLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYTTL))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGPWE3": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3))}, + "SIOCGPWE3CTRLWORD": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3CTRLWORD))}, + "SIOCGPWE3FAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3FAT))}, + "SIOCGPWE3NEIGHBOR": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3NEIGHBOR))}, + "SIOCGRXHPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCGRXHPRIO))}, + "SIOCGSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSPPPPARAMS))}, + "SIOCGTXHPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCGTXHPRIO))}, + "SIOCGUMBINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCGUMBINFO))}, + "SIOCGUMBPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCGUMBPARAM))}, + "SIOCGVH": {"untyped int", constant.MakeInt64(int64(q.SIOCGVH))}, + "SIOCGVNETFLOWID": {"untyped int", constant.MakeInt64(int64(q.SIOCGVNETFLOWID))}, + "SIOCGVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCGVNETID))}, + "SIOCIFAFATTACH": {"untyped int", constant.MakeInt64(int64(q.SIOCIFAFATTACH))}, + "SIOCIFAFDETACH": {"untyped int", constant.MakeInt64(int64(q.SIOCIFAFDETACH))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSETKALIVE))}, + "SIOCSETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSETLABEL))}, + "SIOCSETMPWCFG": {"untyped int", constant.MakeInt64(int64(q.SIOCSETMPWCFG))}, + "SIOCSETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFLOW))}, + "SIOCSETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFSYNC))}, + "SIOCSETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSETVLAN))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGATTR))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFLLPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLPRIO))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPAIR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPAIR))}, + "SIOCSIFPARENT": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPARENT))}, + "SIOCSIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPRIORITY))}, + "SIOCSIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRDOMAIN))}, + "SIOCSIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRTLABEL))}, + "SIOCSIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFXFLAGS))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLIFPHYDF": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYDF))}, + "SIOCSLIFPHYECN": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYECN))}, + "SIOCSLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYRTABLE))}, + "SIOCSLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYTTL))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSPWE3CTRLWORD": {"untyped int", constant.MakeInt64(int64(q.SIOCSPWE3CTRLWORD))}, + "SIOCSPWE3FAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSPWE3FAT))}, + "SIOCSPWE3NEIGHBOR": {"untyped int", constant.MakeInt64(int64(q.SIOCSPWE3NEIGHBOR))}, + "SIOCSRXHPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCSRXHPRIO))}, + "SIOCSSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCSSPPPPARAMS))}, + "SIOCSTXHPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCSTXHPRIO))}, + "SIOCSUMBPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCSUMBPARAM))}, + "SIOCSVH": {"untyped int", constant.MakeInt64(int64(q.SIOCSVH))}, + "SIOCSVNETFLOWID": {"untyped int", constant.MakeInt64(int64(q.SIOCSVNETFLOWID))}, + "SIOCSVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCSVNETID))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_DNS": {"untyped int", constant.MakeInt64(int64(q.SOCK_DNS))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_BINDANY": {"untyped int", constant.MakeInt64(int64(q.SO_BINDANY))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NETPROC": {"untyped int", constant.MakeInt64(int64(q.SO_NETPROC))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RTABLE": {"untyped int", constant.MakeInt64(int64(q.SO_RTABLE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SO_SPLICE))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_ZEROIZE": {"untyped int", constant.MakeInt64(int64(q.SO_ZEROIZE))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJFREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJFREQ))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHFLAGSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGSAT))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDTABLECOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLECOUNT))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETENTROPY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETENTROPY))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN_R": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN_R))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRTABLE))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTHRID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTHRID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_KBIND))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQUERY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQUERY))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MSYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYSCALL))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PAD_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_FTRUNCATE))}, + "SYS_PAD_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_LSEEK))}, + "SYS_PAD_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_MMAP))}, + "SYS_PAD_MQUERY": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_MQUERY))}, + "SYS_PAD_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_PREAD))}, + "SYS_PAD_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_PREADV))}, + "SYS_PAD_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_PWRITE))}, + "SYS_PAD_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_PWRITEV))}, + "SYS_PAD_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_TRUNCATE))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PLEDGE": {"untyped int", constant.MakeInt64(int64(q.SYS_PLEDGE))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMMSG))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDMMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMMSG))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDSYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDSYSLOG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRTABLE))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCTL))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCTL))}, + "SYS_THRKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_THRKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UNVEIL": {"untyped int", constant.MakeInt64(int64(q.SYS_UNVEIL))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_YPCONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_YPCONNECT))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___GET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___GET_TCB))}, + "SYS___REALPATH": {"untyped int", constant.MakeInt64(int64(q.SYS___REALPATH))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___SET_TCB))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "SYS___TFORK": {"untyped int", constant.MakeInt64(int64(q.SYS___TFORK))}, + "SYS___THREXIT": {"untyped int", constant.MakeInt64(int64(q.SYS___THREXIT))}, + "SYS___THRSIGDIVERT": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSIGDIVERT))}, + "SYS___THRSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSLEEP))}, + "SYS___THRWAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRWAKEUP))}, + "SYS___TMPFD": {"untyped int", constant.MakeInt64(int64(q.SYS___TMPFD))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_SACKHOLE_LIMIT": {"untyped int", constant.MakeInt64(int64(q.TCP_SACKHOLE_LIMIT))}, + "TCP_SACK_ENABLE": {"untyped int", constant.MakeInt64(int64(q.TCP_SACK_ENABLE))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCHKVERAUTH": {"untyped int", constant.MakeInt64(int64(q.TIOCCHKVERAUTH))}, + "TIOCCLRVERAUTH": {"untyped int", constant.MakeInt64(int64(q.TIOCCLRVERAUTH))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLAG_CLOCAL": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CLOCAL))}, + "TIOCFLAG_CRTSCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CRTSCTS))}, + "TIOCFLAG_MDMBUF": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_MDMBUF))}, + "TIOCFLAG_PPS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_PPS))}, + "TIOCFLAG_SOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_SOFTCAR))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCGFLAGS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCGTSTAMP))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETVERAUTH": {"untyped int", constant.MakeInt64(int64(q.TIOCSETVERAUTH))}, + "TIOCSFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCSFLAGS))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTSTAMP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TIOCUCNTL_CBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL_CBRK))}, + "TIOCUCNTL_SBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL_SBRK))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALTSIG": {"untyped int", constant.MakeInt64(int64(q.WALTSIG))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_openbsd_riscv64.go b/pkg/syscall/go123_export_openbsd_riscv64.go new file mode 100755 index 00000000..d74eeb9f --- /dev/null +++ b/pkg/syscall/go123_export_openbsd_riscv64.go @@ -0,0 +1,2102 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/abi": "abi", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "RoutingMessage": reflect.TypeOf((*q.RoutingMessage)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "Fsid": reflect.TypeOf((*q.Fsid)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfAnnounceMsghdr": reflect.TypeOf((*q.IfAnnounceMsghdr)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "InterfaceAddrMessage": reflect.TypeOf((*q.InterfaceAddrMessage)(nil)).Elem(), + "InterfaceAnnounceMessage": reflect.TypeOf((*q.InterfaceAnnounceMessage)(nil)).Elem(), + "InterfaceMessage": reflect.TypeOf((*q.InterfaceMessage)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Kevent_t": reflect.TypeOf((*q.Kevent_t)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Mclpool": reflect.TypeOf((*q.Mclpool)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RouteMessage": reflect.TypeOf((*q.RouteMessage)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "Statfs_t": reflect.TypeOf((*q.Statfs_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BpfBuflen": reflect.ValueOf(q.BpfBuflen), + "BpfDatalink": reflect.ValueOf(q.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(q.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(q.BpfInterface), + "BpfJump": reflect.ValueOf(q.BpfJump), + "BpfStats": reflect.ValueOf(q.BpfStats), + "BpfStmt": reflect.ValueOf(q.BpfStmt), + "BpfTimeout": reflect.ValueOf(q.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "CheckBpfVersion": reflect.ValueOf(q.CheckBpfVersion), + "Chflags": reflect.ValueOf(q.Chflags), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchflags": reflect.ValueOf(q.Fchflags), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "Flock": reflect.ValueOf(q.Flock), + "FlushBpf": reflect.ValueOf(q.FlushBpf), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fstatfs": reflect.ValueOf(q.Fstatfs), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Futimes": reflect.ValueOf(q.Futimes), + "Getdirentries": reflect.ValueOf(q.Getdirentries), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getfsstat": reflect.ValueOf(q.Getfsstat), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpgid": reflect.ValueOf(q.Getpgid), + "Getpgrp": reflect.ValueOf(q.Getpgrp), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsid": reflect.ValueOf(q.Getsid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptByte": reflect.ValueOf(q.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(q.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(q.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(q.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(q.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(q.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Issetugid": reflect.ValueOf(q.Issetugid), + "Kevent": reflect.ValueOf(q.Kevent), + "Kill": reflect.ValueOf(q.Kill), + "Kqueue": reflect.ValueOf(q.Kqueue), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mkfifo": reflect.ValueOf(q.Mkfifo), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(q.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(q.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Revoke": reflect.ValueOf(q.Revoke), + "Rmdir": reflect.ValueOf(q.Rmdir), + "RouteRIB": reflect.ValueOf(q.RouteRIB), + "Seek": reflect.ValueOf(q.Seek), + "Select": reflect.ValueOf(q.Select), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetBpf": reflect.ValueOf(q.SetBpf), + "SetBpfBuflen": reflect.ValueOf(q.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(q.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(q.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(q.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(q.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(q.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(q.SetBpfTimeout), + "SetKevent": reflect.ValueOf(q.SetKevent), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setlogin": reflect.ValueOf(q.Setlogin), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(q.Settimeofday), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "Statfs": reflect.ValueOf(q.Statfs), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "Sysctl": reflect.ValueOf(q.Sysctl), + "SysctlUint32": reflect.ValueOf(q.SysctlUint32), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EAUTH": {reflect.TypeOf(q.EAUTH), constant.MakeInt64(int64(q.EAUTH))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADRPC": {reflect.TypeOf(q.EBADRPC), constant.MakeInt64(int64(q.EBADRPC))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EFTYPE": {reflect.TypeOf(q.EFTYPE), constant.MakeInt64(int64(q.EFTYPE))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EIPSEC": {reflect.TypeOf(q.EIPSEC), constant.MakeInt64(int64(q.EIPSEC))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELAST": {reflect.TypeOf(q.ELAST), constant.MakeInt64(int64(q.ELAST))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENEEDAUTH": {reflect.TypeOf(q.ENEEDAUTH), constant.MakeInt64(int64(q.ENEEDAUTH))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOATTR": {reflect.TypeOf(q.ENOATTR), constant.MakeInt64(int64(q.ENOATTR))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROCLIM": {reflect.TypeOf(q.EPROCLIM), constant.MakeInt64(int64(q.EPROCLIM))}, + "EPROCUNAVAIL": {reflect.TypeOf(q.EPROCUNAVAIL), constant.MakeInt64(int64(q.EPROCUNAVAIL))}, + "EPROGMISMATCH": {reflect.TypeOf(q.EPROGMISMATCH), constant.MakeInt64(int64(q.EPROGMISMATCH))}, + "EPROGUNAVAIL": {reflect.TypeOf(q.EPROGUNAVAIL), constant.MakeInt64(int64(q.EPROGUNAVAIL))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERPCMISMATCH": {reflect.TypeOf(q.ERPCMISMATCH), constant.MakeInt64(int64(q.ERPCMISMATCH))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINFO": {reflect.TypeOf(q.SIGINFO), constant.MakeInt64(int64(q.SIGINFO))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHR": {reflect.TypeOf(q.SIGTHR), constant.MakeInt64(int64(q.SIGTHR))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.AF_BLUETOOTH))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_CNT": {"untyped int", constant.MakeInt64(int64(q.AF_CNT))}, + "AF_COIP": {"untyped int", constant.MakeInt64(int64(q.AF_COIP))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_E164": {"untyped int", constant.MakeInt64(int64(q.AF_E164))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_ENCAP": {"untyped int", constant.MakeInt64(int64(q.AF_ENCAP))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_ISDN": {"untyped int", constant.MakeInt64(int64(q.AF_ISDN))}, + "AF_ISO": {"untyped int", constant.MakeInt64(int64(q.AF_ISO))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_MPLS": {"untyped int", constant.MakeInt64(int64(q.AF_MPLS))}, + "AF_NATM": {"untyped int", constant.MakeInt64(int64(q.AF_NATM))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SIP": {"untyped int", constant.MakeInt64(int64(q.AF_SIP))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FRELAY": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRELAY))}, + "ARPHRD_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE1394))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B14400": {"untyped int", constant.MakeInt64(int64(q.B14400))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B28800": {"untyped int", constant.MakeInt64(int64(q.B28800))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B7200": {"untyped int", constant.MakeInt64(int64(q.B7200))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDIRFILT))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCGFILDROP))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCGRSIG))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCLOCK": {"untyped int", constant.MakeInt64(int64(q.BIOCLOCK))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDIRFILT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDIRFILT))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETWF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETWF))}, + "BIOCSFILDROP": {"untyped int", constant.MakeInt64(int64(q.BIOCSFILDROP))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRSIG": {"untyped int", constant.MakeInt64(int64(q.BIOCSRSIG))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DIRECTION_IN": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_IN))}, + "BPF_DIRECTION_OUT": {"untyped int", constant.MakeInt64(int64(q.BPF_DIRECTION_OUT))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_FILDROP_CAPTURE": {"untyped int", constant.MakeInt64(int64(q.BPF_FILDROP_CAPTURE))}, + "BPF_FILDROP_DROP": {"untyped int", constant.MakeInt64(int64(q.BPF_FILDROP_DROP))}, + "BPF_FILDROP_PASS": {"untyped int", constant.MakeInt64(int64(q.BPF_FILDROP_PASS))}, + "BPF_F_DIR_IN": {"untyped int", constant.MakeInt64(int64(q.BPF_F_DIR_IN))}, + "BPF_F_DIR_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_F_DIR_MASK))}, + "BPF_F_DIR_OUT": {"untyped int", constant.MakeInt64(int64(q.BPF_F_DIR_OUT))}, + "BPF_F_DIR_SHIFT": {"untyped int", constant.MakeInt64(int64(q.BPF_F_DIR_SHIFT))}, + "BPF_F_FLOWID": {"untyped int", constant.MakeInt64(int64(q.BPF_F_FLOWID))}, + "BPF_F_PRI_MASK": {"untyped int", constant.MakeInt64(int64(q.BPF_F_PRI_MASK))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RND": {"untyped int", constant.MakeInt64(int64(q.BPF_RND))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTATUS": {"untyped int", constant.MakeInt64(int64(q.CSTATUS))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CTL_MAXNAME": {"untyped int", constant.MakeInt64(int64(q.CTL_MAXNAME))}, + "CTL_NET": {"untyped int", constant.MakeInt64(int64(q.CTL_NET))}, + "DIOCOSFPFLUSH": {"untyped int", constant.MakeInt64(int64(q.DIOCOSFPFLUSH))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_MPLS": {"untyped int", constant.MakeInt64(int64(q.DLT_MPLS))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_OPENFLOW": {"untyped int", constant.MakeInt64(int64(q.DLT_OPENFLOW))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_ETHER))}, + "DLT_PPP_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_SERIAL))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_USBPCAP": {"untyped int", constant.MakeInt64(int64(q.DLT_USBPCAP))}, + "DLT_USER0": {"untyped int", constant.MakeInt64(int64(q.DLT_USER0))}, + "DLT_USER1": {"untyped int", constant.MakeInt64(int64(q.DLT_USER1))}, + "DLT_USER10": {"untyped int", constant.MakeInt64(int64(q.DLT_USER10))}, + "DLT_USER11": {"untyped int", constant.MakeInt64(int64(q.DLT_USER11))}, + "DLT_USER12": {"untyped int", constant.MakeInt64(int64(q.DLT_USER12))}, + "DLT_USER13": {"untyped int", constant.MakeInt64(int64(q.DLT_USER13))}, + "DLT_USER14": {"untyped int", constant.MakeInt64(int64(q.DLT_USER14))}, + "DLT_USER15": {"untyped int", constant.MakeInt64(int64(q.DLT_USER15))}, + "DLT_USER2": {"untyped int", constant.MakeInt64(int64(q.DLT_USER2))}, + "DLT_USER3": {"untyped int", constant.MakeInt64(int64(q.DLT_USER3))}, + "DLT_USER4": {"untyped int", constant.MakeInt64(int64(q.DLT_USER4))}, + "DLT_USER5": {"untyped int", constant.MakeInt64(int64(q.DLT_USER5))}, + "DLT_USER6": {"untyped int", constant.MakeInt64(int64(q.DLT_USER6))}, + "DLT_USER7": {"untyped int", constant.MakeInt64(int64(q.DLT_USER7))}, + "DLT_USER8": {"untyped int", constant.MakeInt64(int64(q.DLT_USER8))}, + "DLT_USER9": {"untyped int", constant.MakeInt64(int64(q.DLT_USER9))}, + "DT_BLK": {"untyped int", constant.MakeInt64(int64(q.DT_BLK))}, + "DT_CHR": {"untyped int", constant.MakeInt64(int64(q.DT_CHR))}, + "DT_DIR": {"untyped int", constant.MakeInt64(int64(q.DT_DIR))}, + "DT_FIFO": {"untyped int", constant.MakeInt64(int64(q.DT_FIFO))}, + "DT_LNK": {"untyped int", constant.MakeInt64(int64(q.DT_LNK))}, + "DT_REG": {"untyped int", constant.MakeInt64(int64(q.DT_REG))}, + "DT_SOCK": {"untyped int", constant.MakeInt64(int64(q.DT_SOCK))}, + "DT_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.DT_UNKNOWN))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMT_TAGOVF": {"untyped int", constant.MakeInt64(int64(q.EMT_TAGOVF))}, + "EMUL_ENABLED": {"untyped int", constant.MakeInt64(int64(q.EMUL_ENABLED))}, + "EMUL_NATIVE": {"untyped int", constant.MakeInt64(int64(q.EMUL_NATIVE))}, + "ENDRUNDISC": {"untyped int", constant.MakeInt64(int64(q.ENDRUNDISC))}, + "ETH64_8021_RSVD_MASK": {"untyped int", constant.MakeInt64(int64(q.ETH64_8021_RSVD_MASK))}, + "ETH64_8021_RSVD_PREFIX": {"untyped int", constant.MakeInt64(int64(q.ETH64_8021_RSVD_PREFIX))}, + "ETHERMIN": {"untyped int", constant.MakeInt64(int64(q.ETHERMIN))}, + "ETHERMTU": {"untyped int", constant.MakeInt64(int64(q.ETHERMTU))}, + "ETHERTYPE_8023": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_8023))}, + "ETHERTYPE_AARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AARP))}, + "ETHERTYPE_ACCTON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ACCTON))}, + "ETHERTYPE_AEONIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AEONIC))}, + "ETHERTYPE_ALPHA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ALPHA))}, + "ETHERTYPE_AMBER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMBER))}, + "ETHERTYPE_AMOEBA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AMOEBA))}, + "ETHERTYPE_AOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AOE))}, + "ETHERTYPE_APOLLO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLO))}, + "ETHERTYPE_APOLLODOMAIN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APOLLODOMAIN))}, + "ETHERTYPE_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLETALK))}, + "ETHERTYPE_APPLITEK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_APPLITEK))}, + "ETHERTYPE_ARGONAUT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARGONAUT))}, + "ETHERTYPE_ARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ARP))}, + "ETHERTYPE_AT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AT))}, + "ETHERTYPE_ATALK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATALK))}, + "ETHERTYPE_ATOMIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATOMIC))}, + "ETHERTYPE_ATT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATT))}, + "ETHERTYPE_ATTSTANFORD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ATTSTANFORD))}, + "ETHERTYPE_AUTOPHON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AUTOPHON))}, + "ETHERTYPE_AXIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_AXIS))}, + "ETHERTYPE_BCLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BCLOOP))}, + "ETHERTYPE_BOFL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_BOFL))}, + "ETHERTYPE_CABLETRON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CABLETRON))}, + "ETHERTYPE_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CHAOS))}, + "ETHERTYPE_COMDESIGN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMDESIGN))}, + "ETHERTYPE_COMPUGRAPHIC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COMPUGRAPHIC))}, + "ETHERTYPE_COUNTERPOINT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_COUNTERPOINT))}, + "ETHERTYPE_CRONUS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUS))}, + "ETHERTYPE_CRONUSVLN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_CRONUSVLN))}, + "ETHERTYPE_DCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DCA))}, + "ETHERTYPE_DDE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DDE))}, + "ETHERTYPE_DEBNI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DEBNI))}, + "ETHERTYPE_DECAM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECAM))}, + "ETHERTYPE_DECCUST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECCUST))}, + "ETHERTYPE_DECDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDIAG))}, + "ETHERTYPE_DECDNS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDNS))}, + "ETHERTYPE_DECDTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECDTS))}, + "ETHERTYPE_DECEXPER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECEXPER))}, + "ETHERTYPE_DECLAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLAST))}, + "ETHERTYPE_DECLTM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECLTM))}, + "ETHERTYPE_DECMUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECMUMPS))}, + "ETHERTYPE_DECNETBIOS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DECNETBIOS))}, + "ETHERTYPE_DELTACON": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DELTACON))}, + "ETHERTYPE_DIDDLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DIDDLE))}, + "ETHERTYPE_DLOG1": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG1))}, + "ETHERTYPE_DLOG2": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DLOG2))}, + "ETHERTYPE_DN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DN))}, + "ETHERTYPE_DOGFIGHT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DOGFIGHT))}, + "ETHERTYPE_DSMD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_DSMD))}, + "ETHERTYPE_EAPOL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EAPOL))}, + "ETHERTYPE_ECMA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ECMA))}, + "ETHERTYPE_ENCRYPT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ENCRYPT))}, + "ETHERTYPE_ES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_ES))}, + "ETHERTYPE_EXCELAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXCELAN))}, + "ETHERTYPE_EXPERDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_EXPERDATA))}, + "ETHERTYPE_FLIP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLIP))}, + "ETHERTYPE_FLOWCONTROL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FLOWCONTROL))}, + "ETHERTYPE_FRARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_FRARP))}, + "ETHERTYPE_GENDYN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_GENDYN))}, + "ETHERTYPE_HAYES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HAYES))}, + "ETHERTYPE_HIPPI_FP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HIPPI_FP))}, + "ETHERTYPE_HITACHI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HITACHI))}, + "ETHERTYPE_HP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_HP))}, + "ETHERTYPE_IEEEPUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUP))}, + "ETHERTYPE_IEEEPUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IEEEPUPAT))}, + "ETHERTYPE_IMLBL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBL))}, + "ETHERTYPE_IMLBLDIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IMLBLDIAG))}, + "ETHERTYPE_IP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IP))}, + "ETHERTYPE_IPAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPAS))}, + "ETHERTYPE_IPV6": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPV6))}, + "ETHERTYPE_IPX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPX))}, + "ETHERTYPE_IPXNEW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_IPXNEW))}, + "ETHERTYPE_KALPANA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_KALPANA))}, + "ETHERTYPE_LANBRIDGE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANBRIDGE))}, + "ETHERTYPE_LANPROBE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LANPROBE))}, + "ETHERTYPE_LAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LAT))}, + "ETHERTYPE_LBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LBACK))}, + "ETHERTYPE_LITTLE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LITTLE))}, + "ETHERTYPE_LLDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LLDP))}, + "ETHERTYPE_LOGICRAFT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOGICRAFT))}, + "ETHERTYPE_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_LOOPBACK))}, + "ETHERTYPE_MACSEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MACSEC))}, + "ETHERTYPE_MATRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MATRA))}, + "ETHERTYPE_MAX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MAX))}, + "ETHERTYPE_MERIT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MERIT))}, + "ETHERTYPE_MICP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MICP))}, + "ETHERTYPE_MOPDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPDL))}, + "ETHERTYPE_MOPRC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOPRC))}, + "ETHERTYPE_MOTOROLA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MOTOROLA))}, + "ETHERTYPE_MPLS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS))}, + "ETHERTYPE_MPLS_MCAST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MPLS_MCAST))}, + "ETHERTYPE_MUMPS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_MUMPS))}, + "ETHERTYPE_NBPCC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCC))}, + "ETHERTYPE_NBPCLAIM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLAIM))}, + "ETHERTYPE_NBPCLREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLREQ))}, + "ETHERTYPE_NBPCLRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCLRSP))}, + "ETHERTYPE_NBPCREQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCREQ))}, + "ETHERTYPE_NBPCRSP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPCRSP))}, + "ETHERTYPE_NBPDG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDG))}, + "ETHERTYPE_NBPDGB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDGB))}, + "ETHERTYPE_NBPDLTE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPDLTE))}, + "ETHERTYPE_NBPRAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAR))}, + "ETHERTYPE_NBPRAS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRAS))}, + "ETHERTYPE_NBPRST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPRST))}, + "ETHERTYPE_NBPSCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPSCD))}, + "ETHERTYPE_NBPVCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBPVCD))}, + "ETHERTYPE_NBS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NBS))}, + "ETHERTYPE_NCD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NCD))}, + "ETHERTYPE_NESTAR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NESTAR))}, + "ETHERTYPE_NETBEUI": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NETBEUI))}, + "ETHERTYPE_NHRP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NHRP))}, + "ETHERTYPE_NOVELL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NOVELL))}, + "ETHERTYPE_NS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NS))}, + "ETHERTYPE_NSAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSAT))}, + "ETHERTYPE_NSCOMPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSCOMPAT))}, + "ETHERTYPE_NSH": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NSH))}, + "ETHERTYPE_NTRAILER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_NTRAILER))}, + "ETHERTYPE_OS9": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9))}, + "ETHERTYPE_OS9NET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_OS9NET))}, + "ETHERTYPE_PACER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PACER))}, + "ETHERTYPE_PBB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PBB))}, + "ETHERTYPE_PCS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PCS))}, + "ETHERTYPE_PLANNING": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PLANNING))}, + "ETHERTYPE_PPP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPP))}, + "ETHERTYPE_PPPOE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOE))}, + "ETHERTYPE_PPPOEDISC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PPPOEDISC))}, + "ETHERTYPE_PRIMENTS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PRIMENTS))}, + "ETHERTYPE_PUP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUP))}, + "ETHERTYPE_PUPAT": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_PUPAT))}, + "ETHERTYPE_QINQ": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_QINQ))}, + "ETHERTYPE_RACAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RACAL))}, + "ETHERTYPE_RATIONAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RATIONAL))}, + "ETHERTYPE_RAWFR": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RAWFR))}, + "ETHERTYPE_RCL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RCL))}, + "ETHERTYPE_RDP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RDP))}, + "ETHERTYPE_RETIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_RETIX))}, + "ETHERTYPE_REVARP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_REVARP))}, + "ETHERTYPE_SCA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SCA))}, + "ETHERTYPE_SECTRA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECTRA))}, + "ETHERTYPE_SECUREDATA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SECUREDATA))}, + "ETHERTYPE_SGITW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SGITW))}, + "ETHERTYPE_SG_BOUNCE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_BOUNCE))}, + "ETHERTYPE_SG_DIAG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_DIAG))}, + "ETHERTYPE_SG_NETGAMES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_NETGAMES))}, + "ETHERTYPE_SG_RESV": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SG_RESV))}, + "ETHERTYPE_SIMNET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SIMNET))}, + "ETHERTYPE_SLOW": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SLOW))}, + "ETHERTYPE_SNA": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNA))}, + "ETHERTYPE_SNMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SNMP))}, + "ETHERTYPE_SONIX": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SONIX))}, + "ETHERTYPE_SPIDER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPIDER))}, + "ETHERTYPE_SPRITE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_SPRITE))}, + "ETHERTYPE_STP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_STP))}, + "ETHERTYPE_TALARIS": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARIS))}, + "ETHERTYPE_TALARISMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TALARISMC))}, + "ETHERTYPE_TCPCOMP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPCOMP))}, + "ETHERTYPE_TCPSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TCPSM))}, + "ETHERTYPE_TEC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TEC))}, + "ETHERTYPE_TIGAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TIGAN))}, + "ETHERTYPE_TRAIL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRAIL))}, + "ETHERTYPE_TRANSETHER": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TRANSETHER))}, + "ETHERTYPE_TYMSHARE": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_TYMSHARE))}, + "ETHERTYPE_UBBST": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBBST))}, + "ETHERTYPE_UBDEBUG": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDEBUG))}, + "ETHERTYPE_UBDIAGLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDIAGLOOP))}, + "ETHERTYPE_UBDL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBDL))}, + "ETHERTYPE_UBNIU": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNIU))}, + "ETHERTYPE_UBNMC": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_UBNMC))}, + "ETHERTYPE_VALID": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VALID))}, + "ETHERTYPE_VARIAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VARIAN))}, + "ETHERTYPE_VAXELN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VAXELN))}, + "ETHERTYPE_VEECO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEECO))}, + "ETHERTYPE_VEXP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VEXP))}, + "ETHERTYPE_VGLAB": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VGLAB))}, + "ETHERTYPE_VINES": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINES))}, + "ETHERTYPE_VINESECHO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESECHO))}, + "ETHERTYPE_VINESLOOP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VINESLOOP))}, + "ETHERTYPE_VITAL": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VITAL))}, + "ETHERTYPE_VLAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLAN))}, + "ETHERTYPE_VLTLMAN": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VLTLMAN))}, + "ETHERTYPE_VPROD": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VPROD))}, + "ETHERTYPE_VURESERVED": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_VURESERVED))}, + "ETHERTYPE_WATERLOO": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WATERLOO))}, + "ETHERTYPE_WELLFLEET": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_WELLFLEET))}, + "ETHERTYPE_X25": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X25))}, + "ETHERTYPE_X75": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_X75))}, + "ETHERTYPE_XNSSM": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XNSSM))}, + "ETHERTYPE_XTP": {"untyped int", constant.MakeInt64(int64(q.ETHERTYPE_XTP))}, + "ETHER_ADDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ADDR_LEN))}, + "ETHER_ALIGN": {"untyped int", constant.MakeInt64(int64(q.ETHER_ALIGN))}, + "ETHER_CRC_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_LEN))}, + "ETHER_CRC_POLY_BE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_BE))}, + "ETHER_CRC_POLY_LE": {"untyped int", constant.MakeInt64(int64(q.ETHER_CRC_POLY_LE))}, + "ETHER_HDR_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_HDR_LEN))}, + "ETHER_MAX_DIX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_DIX_LEN))}, + "ETHER_MAX_HARDMTU_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_HARDMTU_LEN))}, + "ETHER_MAX_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MAX_LEN))}, + "ETHER_MIN_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_MIN_LEN))}, + "ETHER_TYPE_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_TYPE_LEN))}, + "ETHER_VLAN_ENCAP_LEN": {"untyped int", constant.MakeInt64(int64(q.ETHER_VLAN_ENCAP_LEN))}, + "EVFILT_AIO": {"untyped int", constant.MakeInt64(int64(q.EVFILT_AIO))}, + "EVFILT_DEVICE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_DEVICE))}, + "EVFILT_EXCEPT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_EXCEPT))}, + "EVFILT_PROC": {"untyped int", constant.MakeInt64(int64(q.EVFILT_PROC))}, + "EVFILT_READ": {"untyped int", constant.MakeInt64(int64(q.EVFILT_READ))}, + "EVFILT_SIGNAL": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SIGNAL))}, + "EVFILT_SYSCOUNT": {"untyped int", constant.MakeInt64(int64(q.EVFILT_SYSCOUNT))}, + "EVFILT_TIMER": {"untyped int", constant.MakeInt64(int64(q.EVFILT_TIMER))}, + "EVFILT_VNODE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_VNODE))}, + "EVFILT_WRITE": {"untyped int", constant.MakeInt64(int64(q.EVFILT_WRITE))}, + "EVL_ENCAPLEN": {"untyped int", constant.MakeInt64(int64(q.EVL_ENCAPLEN))}, + "EVL_PRIO_BITS": {"untyped int", constant.MakeInt64(int64(q.EVL_PRIO_BITS))}, + "EVL_PRIO_MAX": {"untyped int", constant.MakeInt64(int64(q.EVL_PRIO_MAX))}, + "EVL_VLID_MASK": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_MASK))}, + "EVL_VLID_MAX": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_MAX))}, + "EVL_VLID_MIN": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_MIN))}, + "EVL_VLID_NULL": {"untyped int", constant.MakeInt64(int64(q.EVL_VLID_NULL))}, + "EV_ADD": {"untyped int", constant.MakeInt64(int64(q.EV_ADD))}, + "EV_CLEAR": {"untyped int", constant.MakeInt64(int64(q.EV_CLEAR))}, + "EV_DELETE": {"untyped int", constant.MakeInt64(int64(q.EV_DELETE))}, + "EV_DISABLE": {"untyped int", constant.MakeInt64(int64(q.EV_DISABLE))}, + "EV_DISPATCH": {"untyped int", constant.MakeInt64(int64(q.EV_DISPATCH))}, + "EV_ENABLE": {"untyped int", constant.MakeInt64(int64(q.EV_ENABLE))}, + "EV_EOF": {"untyped int", constant.MakeInt64(int64(q.EV_EOF))}, + "EV_ERROR": {"untyped int", constant.MakeInt64(int64(q.EV_ERROR))}, + "EV_FLAG1": {"untyped int", constant.MakeInt64(int64(q.EV_FLAG1))}, + "EV_ONESHOT": {"untyped int", constant.MakeInt64(int64(q.EV_ONESHOT))}, + "EV_RECEIPT": {"untyped int", constant.MakeInt64(int64(q.EV_RECEIPT))}, + "EV_SYSFLAGS": {"untyped int", constant.MakeInt64(int64(q.EV_SYSFLAGS))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "EXTPROC": {"untyped int", constant.MakeInt64(int64(q.EXTPROC))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_ISATTY": {"untyped int", constant.MakeInt64(int64(q.F_ISATTY))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICMP6_FILTER": {"untyped int", constant.MakeInt64(int64(q.ICMP6_FILTER))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFAN_ARRIVAL": {"untyped int", constant.MakeInt64(int64(q.IFAN_ARRIVAL))}, + "IFAN_DEPARTURE": {"untyped int", constant.MakeInt64(int64(q.IFAN_DEPARTURE))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_LINK0": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK0))}, + "IFF_LINK1": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK1))}, + "IFF_LINK2": {"untyped int", constant.MakeInt64(int64(q.IFF_LINK2))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_OACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_OACTIVE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_SIMPLEX": {"untyped int", constant.MakeInt64(int64(q.IFF_SIMPLEX))}, + "IFF_STATICARP": {"untyped int", constant.MakeInt64(int64(q.IFF_STATICARP))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_A12MPPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_A12MPPSWITCH))}, + "IFT_AAL2": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL2))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_ADSL))}, + "IFT_AFLANE8023": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8023))}, + "IFT_AFLANE8025": {"untyped int", constant.MakeInt64(int64(q.IFT_AFLANE8025))}, + "IFT_ARAP": {"untyped int", constant.MakeInt64(int64(q.IFT_ARAP))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ASYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_ASYNC))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_ATMDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMDXI))}, + "IFT_ATMFUNI": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMFUNI))}, + "IFT_ATMIMA": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMIMA))}, + "IFT_ATMLOGICAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMLOGICAL))}, + "IFT_ATMRADIO": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMRADIO))}, + "IFT_ATMSUBINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMSUBINTERFACE))}, + "IFT_ATMVCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVCIENDPT))}, + "IFT_ATMVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_ATMVIRTUAL))}, + "IFT_BGPPOLICYACCOUNTING": {"untyped int", constant.MakeInt64(int64(q.IFT_BGPPOLICYACCOUNTING))}, + "IFT_BLUETOOTH": {"untyped int", constant.MakeInt64(int64(q.IFT_BLUETOOTH))}, + "IFT_BRIDGE": {"untyped int", constant.MakeInt64(int64(q.IFT_BRIDGE))}, + "IFT_BSC": {"untyped int", constant.MakeInt64(int64(q.IFT_BSC))}, + "IFT_CARP": {"untyped int", constant.MakeInt64(int64(q.IFT_CARP))}, + "IFT_CCTEMUL": {"untyped int", constant.MakeInt64(int64(q.IFT_CCTEMUL))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_CES": {"untyped int", constant.MakeInt64(int64(q.IFT_CES))}, + "IFT_CHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_CHANNEL))}, + "IFT_CNR": {"untyped int", constant.MakeInt64(int64(q.IFT_CNR))}, + "IFT_COFFEE": {"untyped int", constant.MakeInt64(int64(q.IFT_COFFEE))}, + "IFT_COMPOSITELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_COMPOSITELINK))}, + "IFT_DCN": {"untyped int", constant.MakeInt64(int64(q.IFT_DCN))}, + "IFT_DIGITALPOWERLINE": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALPOWERLINE))}, + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DIGITALWRAPPEROVERHEADCHANNEL))}, + "IFT_DLSW": {"untyped int", constant.MakeInt64(int64(q.IFT_DLSW))}, + "IFT_DOCSCABLEDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEDOWNSTREAM))}, + "IFT_DOCSCABLEMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEMACLAYER))}, + "IFT_DOCSCABLEUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAM))}, + "IFT_DOCSCABLEUPSTREAMCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_DOCSCABLEUPSTREAMCHANNEL))}, + "IFT_DS0": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0))}, + "IFT_DS0BUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_DS0BUNDLE))}, + "IFT_DS1FDL": {"untyped int", constant.MakeInt64(int64(q.IFT_DS1FDL))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_DTM": {"untyped int", constant.MakeInt64(int64(q.IFT_DTM))}, + "IFT_DUMMY": {"untyped int", constant.MakeInt64(int64(q.IFT_DUMMY))}, + "IFT_DVBASILN": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASILN))}, + "IFT_DVBASIOUT": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBASIOUT))}, + "IFT_DVBRCCDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCDOWNSTREAM))}, + "IFT_DVBRCCMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCMACLAYER))}, + "IFT_DVBRCCUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_DVBRCCUPSTREAM))}, + "IFT_ECONET": {"untyped int", constant.MakeInt64(int64(q.IFT_ECONET))}, + "IFT_ENC": {"untyped int", constant.MakeInt64(int64(q.IFT_ENC))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_EPLRS": {"untyped int", constant.MakeInt64(int64(q.IFT_EPLRS))}, + "IFT_ESCON": {"untyped int", constant.MakeInt64(int64(q.IFT_ESCON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FAITH": {"untyped int", constant.MakeInt64(int64(q.IFT_FAITH))}, + "IFT_FAST": {"untyped int", constant.MakeInt64(int64(q.IFT_FAST))}, + "IFT_FASTETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHER))}, + "IFT_FASTETHERFX": {"untyped int", constant.MakeInt64(int64(q.IFT_FASTETHERFX))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FIBRECHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_FIBRECHANNEL))}, + "IFT_FRAMERELAYINTERCONNECT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYINTERCONNECT))}, + "IFT_FRAMERELAYMPI": {"untyped int", constant.MakeInt64(int64(q.IFT_FRAMERELAYMPI))}, + "IFT_FRDLCIENDPT": {"untyped int", constant.MakeInt64(int64(q.IFT_FRDLCIENDPT))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_FRF16MFRBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRF16MFRBUNDLE))}, + "IFT_FRFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_FRFORWARD))}, + "IFT_G703AT2MB": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT2MB))}, + "IFT_G703AT64K": {"untyped int", constant.MakeInt64(int64(q.IFT_G703AT64K))}, + "IFT_GIF": {"untyped int", constant.MakeInt64(int64(q.IFT_GIF))}, + "IFT_GIGABITETHERNET": {"untyped int", constant.MakeInt64(int64(q.IFT_GIGABITETHERNET))}, + "IFT_GR303IDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303IDT))}, + "IFT_GR303RDT": {"untyped int", constant.MakeInt64(int64(q.IFT_GR303RDT))}, + "IFT_H323GATEKEEPER": {"untyped int", constant.MakeInt64(int64(q.IFT_H323GATEKEEPER))}, + "IFT_H323PROXY": {"untyped int", constant.MakeInt64(int64(q.IFT_H323PROXY))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_HDLC))}, + "IFT_HDSL2": {"untyped int", constant.MakeInt64(int64(q.IFT_HDSL2))}, + "IFT_HIPERLAN2": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPERLAN2))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HIPPIINTERFACE": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPIINTERFACE))}, + "IFT_HOSTPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_HOSTPAD))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IBM370PARCHAN": {"untyped int", constant.MakeInt64(int64(q.IFT_IBM370PARCHAN))}, + "IFT_IDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_IDSL))}, + "IFT_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE1394))}, + "IFT_IEEE80211": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80211))}, + "IFT_IEEE80212": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE80212))}, + "IFT_IEEE8023ADLAG": {"untyped int", constant.MakeInt64(int64(q.IFT_IEEE8023ADLAG))}, + "IFT_IFGSN": {"untyped int", constant.MakeInt64(int64(q.IFT_IFGSN))}, + "IFT_IMT": {"untyped int", constant.MakeInt64(int64(q.IFT_IMT))}, + "IFT_INFINIBAND": {"untyped int", constant.MakeInt64(int64(q.IFT_INFINIBAND))}, + "IFT_INTERLEAVE": {"untyped int", constant.MakeInt64(int64(q.IFT_INTERLEAVE))}, + "IFT_IP": {"untyped int", constant.MakeInt64(int64(q.IFT_IP))}, + "IFT_IPFORWARD": {"untyped int", constant.MakeInt64(int64(q.IFT_IPFORWARD))}, + "IFT_IPOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERATM))}, + "IFT_IPOVERCDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCDLC))}, + "IFT_IPOVERCLAW": {"untyped int", constant.MakeInt64(int64(q.IFT_IPOVERCLAW))}, + "IFT_IPSWITCH": {"untyped int", constant.MakeInt64(int64(q.IFT_IPSWITCH))}, + "IFT_ISDN": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDN))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISDNS": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNS))}, + "IFT_ISDNU": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNU))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88025CRFPINT": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025CRFPINT))}, + "IFT_ISO88025DTR": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025DTR))}, + "IFT_ISO88025FIBER": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025FIBER))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_ISUP": {"untyped int", constant.MakeInt64(int64(q.IFT_ISUP))}, + "IFT_L2VLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L2VLAN))}, + "IFT_L3IPVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPVLAN))}, + "IFT_L3IPXVLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_L3IPXVLAN))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LAPD": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPD))}, + "IFT_LAPF": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPF))}, + "IFT_LINEGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_LINEGROUP))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MBIM": {"untyped int", constant.MakeInt64(int64(q.IFT_MBIM))}, + "IFT_MEDIAMAILOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_MEDIAMAILOVERIP))}, + "IFT_MFSIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_MFSIGLINK))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_MPC": {"untyped int", constant.MakeInt64(int64(q.IFT_MPC))}, + "IFT_MPLS": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLS))}, + "IFT_MPLSTUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_MPLSTUNNEL))}, + "IFT_MSDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_MSDSL))}, + "IFT_MVL": {"untyped int", constant.MakeInt64(int64(q.IFT_MVL))}, + "IFT_MYRINET": {"untyped int", constant.MakeInt64(int64(q.IFT_MYRINET))}, + "IFT_NFAS": {"untyped int", constant.MakeInt64(int64(q.IFT_NFAS))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OPTICALCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALCHANNEL))}, + "IFT_OPTICALTRANSPORT": {"untyped int", constant.MakeInt64(int64(q.IFT_OPTICALTRANSPORT))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOG))}, + "IFT_PFLOW": {"untyped int", constant.MakeInt64(int64(q.IFT_PFLOW))}, + "IFT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IFT_PFSYNC))}, + "IFT_PLC": {"untyped int", constant.MakeInt64(int64(q.IFT_PLC))}, + "IFT_PON155": {"untyped int", constant.MakeInt64(int64(q.IFT_PON155))}, + "IFT_PON622": {"untyped int", constant.MakeInt64(int64(q.IFT_PON622))}, + "IFT_POS": {"untyped int", constant.MakeInt64(int64(q.IFT_POS))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PPPMULTILINKBUNDLE": {"untyped int", constant.MakeInt64(int64(q.IFT_PPPMULTILINKBUNDLE))}, + "IFT_PROPATM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPATM))}, + "IFT_PROPBWAP2MP": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPBWAP2MP))}, + "IFT_PROPCNLS": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPCNLS))}, + "IFT_PROPDOCSWIRELESSDOWNSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSDOWNSTREAM))}, + "IFT_PROPDOCSWIRELESSMACLAYER": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSMACLAYER))}, + "IFT_PROPDOCSWIRELESSUPSTREAM": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPDOCSWIRELESSUPSTREAM))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PROPWIRELESSP2P": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPWIRELESSP2P))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_PVC": {"untyped int", constant.MakeInt64(int64(q.IFT_PVC))}, + "IFT_Q2931": {"untyped int", constant.MakeInt64(int64(q.IFT_Q2931))}, + "IFT_QLLC": {"untyped int", constant.MakeInt64(int64(q.IFT_QLLC))}, + "IFT_RADIOMAC": {"untyped int", constant.MakeInt64(int64(q.IFT_RADIOMAC))}, + "IFT_RADSL": {"untyped int", constant.MakeInt64(int64(q.IFT_RADSL))}, + "IFT_REACHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_REACHDSL))}, + "IFT_RFC1483": {"untyped int", constant.MakeInt64(int64(q.IFT_RFC1483))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_RSRB": {"untyped int", constant.MakeInt64(int64(q.IFT_RSRB))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SDSL))}, + "IFT_SHDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_SHDSL))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SIPSIG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPSIG))}, + "IFT_SIPTG": {"untyped int", constant.MakeInt64(int64(q.IFT_SIPTG))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETOVERHEADCHANNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETOVERHEADCHANNEL))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_SRP": {"untyped int", constant.MakeInt64(int64(q.IFT_SRP))}, + "IFT_SS7SIGLINK": {"untyped int", constant.MakeInt64(int64(q.IFT_SS7SIGLINK))}, + "IFT_STACKTOSTACK": {"untyped int", constant.MakeInt64(int64(q.IFT_STACKTOSTACK))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_TDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TDLC))}, + "IFT_TELINK": {"untyped int", constant.MakeInt64(int64(q.IFT_TELINK))}, + "IFT_TERMPAD": {"untyped int", constant.MakeInt64(int64(q.IFT_TERMPAD))}, + "IFT_TR008": {"untyped int", constant.MakeInt64(int64(q.IFT_TR008))}, + "IFT_TRANSPHDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_TRANSPHDLC))}, + "IFT_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.IFT_TUNNEL))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_USB": {"untyped int", constant.MakeInt64(int64(q.IFT_USB))}, + "IFT_V11": {"untyped int", constant.MakeInt64(int64(q.IFT_V11))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_V36": {"untyped int", constant.MakeInt64(int64(q.IFT_V36))}, + "IFT_V37": {"untyped int", constant.MakeInt64(int64(q.IFT_V37))}, + "IFT_VDSL": {"untyped int", constant.MakeInt64(int64(q.IFT_VDSL))}, + "IFT_VIRTUALIPADDRESS": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALIPADDRESS))}, + "IFT_VIRTUALTG": {"untyped int", constant.MakeInt64(int64(q.IFT_VIRTUALTG))}, + "IFT_VOICEDID": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEDID))}, + "IFT_VOICEEM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEM))}, + "IFT_VOICEEMFGD": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEEMFGD))}, + "IFT_VOICEENCAP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEENCAP))}, + "IFT_VOICEFGDEANA": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFGDEANA))}, + "IFT_VOICEFXO": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXO))}, + "IFT_VOICEFXS": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEFXS))}, + "IFT_VOICEOVERATM": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERATM))}, + "IFT_VOICEOVERCABLE": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERCABLE))}, + "IFT_VOICEOVERFRAMERELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERFRAMERELAY))}, + "IFT_VOICEOVERIP": {"untyped int", constant.MakeInt64(int64(q.IFT_VOICEOVERIP))}, + "IFT_WIREGUARD": {"untyped int", constant.MakeInt64(int64(q.IFT_WIREGUARD))}, + "IFT_X213": {"untyped int", constant.MakeInt64(int64(q.IFT_X213))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25HUNTGROUP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25HUNTGROUP))}, + "IFT_X25MLP": {"untyped int", constant.MakeInt64(int64(q.IFT_X25MLP))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_RFC3021_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_HOST))}, + "IN_RFC3021_NET": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NET))}, + "IN_RFC3021_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_RFC3021_NSHIFT))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_CARP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_CARP))}, + "IPPROTO_DIVERT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DIVERT))}, + "IPPROTO_DONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DONE))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_ETHERIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ETHERIP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_GRE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GRE))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPCOMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPCOMP))}, + "IPPROTO_IPIP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPIP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_MAXID": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAXID))}, + "IPPROTO_MOBILE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MOBILE))}, + "IPPROTO_MPLS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MPLS))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PFSYNC))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_TP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPPROTO_UDPLITE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDPLITE))}, + "IPV6_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTH_LEVEL))}, + "IPV6_AUTOFLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_AUTOFLOWLABEL))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DEFAULT_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_HOPS))}, + "IPV6_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFAULT_MULTICAST_LOOP))}, + "IPV6_DEFHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_DEFHLIM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_NETWORK_LEVEL))}, + "IPV6_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_ESP_TRANS_LEVEL))}, + "IPV6_FAITH": {"untyped int", constant.MakeInt64(int64(q.IPV6_FAITH))}, + "IPV6_FLOWINFO_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_MASK))}, + "IPV6_FLOWLABEL_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWLABEL_MASK))}, + "IPV6_FRAGTTL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FRAGTTL))}, + "IPV6_HLIMDEC": {"untyped int", constant.MakeInt64(int64(q.IPV6_HLIMDEC))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_IPCOMP_LEVEL))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MAXHLIM": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXHLIM))}, + "IPV6_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IPV6_MAXPACKET))}, + "IPV6_MINHOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.IPV6_MINHOPCOUNT))}, + "IPV6_MMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_MMTU))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IPV6_OPTIONS))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IPV6_PIPEX))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE))}, + "IPV6_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_DEFAULT))}, + "IPV6_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_HIGH))}, + "IPV6_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IPV6_PORTRANGE_LOW))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTPORT))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTABLE))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_LOOSE": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_LOOSE))}, + "IPV6_RTHDR_STRICT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_STRICT))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SOCKOPT_RESERVED1": {"untyped int", constant.MakeInt64(int64(q.IPV6_SOCKOPT_RESERVED1))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IPV6_VERSION": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION))}, + "IPV6_VERSION_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_VERSION_MASK))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_AUTH_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_AUTH_LEVEL))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_ESP_NETWORK_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_NETWORK_LEVEL))}, + "IP_ESP_TRANS_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_ESP_TRANS_LEVEL))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_IPCOMP_LEVEL": {"untyped int", constant.MakeInt64(int64(q.IP_IPCOMP_LEVEL))}, + "IP_IPDEFTTL": {"untyped int", constant.MakeInt64(int64(q.IP_IPDEFTTL))}, + "IP_IPSECFLOWINFO": {"untyped int", constant.MakeInt64(int64(q.IP_IPSECFLOWINFO))}, + "IP_IPSEC_LOCAL_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_AUTH))}, + "IP_IPSEC_LOCAL_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_CRED))}, + "IP_IPSEC_LOCAL_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_LOCAL_ID))}, + "IP_IPSEC_REMOTE_AUTH": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_AUTH))}, + "IP_IPSEC_REMOTE_CRED": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_CRED))}, + "IP_IPSEC_REMOTE_ID": {"untyped int", constant.MakeInt64(int64(q.IP_IPSEC_REMOTE_ID))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MAX_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MAX_MEMBERSHIPS))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MINTTL": {"untyped int", constant.MakeInt64(int64(q.IP_MINTTL))}, + "IP_MIN_MEMBERSHIPS": {"untyped int", constant.MakeInt64(int64(q.IP_MIN_MEMBERSHIPS))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_OFFMASK": {"untyped int", constant.MakeInt64(int64(q.IP_OFFMASK))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PIPEX": {"untyped int", constant.MakeInt64(int64(q.IP_PIPEX))}, + "IP_PORTRANGE": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE))}, + "IP_PORTRANGE_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_DEFAULT))}, + "IP_PORTRANGE_HIGH": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_HIGH))}, + "IP_PORTRANGE_LOW": {"untyped int", constant.MakeInt64(int64(q.IP_PORTRANGE_LOW))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVDSTPORT": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTPORT))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVRTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRTABLE))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_RF": {"untyped int", constant.MakeInt64(int64(q.IP_RF))}, + "IP_RTABLE": {"untyped int", constant.MakeInt64(int64(q.IP_RTABLE))}, + "IP_SENDSRCADDR": {"untyped int", constant.MakeInt64(int64(q.IP_SENDSRCADDR))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LCNT_OVERLOAD_FLUSH": {"untyped int", constant.MakeInt64(int64(q.LCNT_OVERLOAD_FLUSH))}, + "LOCK_EX": {"untyped int", constant.MakeInt64(int64(q.LOCK_EX))}, + "LOCK_NB": {"untyped int", constant.MakeInt64(int64(q.LOCK_NB))}, + "LOCK_SH": {"untyped int", constant.MakeInt64(int64(q.LOCK_SH))}, + "LOCK_UN": {"untyped int", constant.MakeInt64(int64(q.LOCK_UN))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_SPACEAVAIL": {"untyped int", constant.MakeInt64(int64(q.MADV_SPACEAVAIL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_CONCEAL": {"untyped int", constant.MakeInt64(int64(q.MAP_CONCEAL))}, + "MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_COPY))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_FLAGMASK": {"untyped int", constant.MakeInt64(int64(q.MAP_FLAGMASK))}, + "MAP_HASSEMAPHORE": {"untyped int", constant.MakeInt64(int64(q.MAP_HASSEMAPHORE))}, + "MAP_INHERIT": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT))}, + "MAP_INHERIT_COPY": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_COPY))}, + "MAP_INHERIT_NONE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_NONE))}, + "MAP_INHERIT_SHARE": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_SHARE))}, + "MAP_INHERIT_ZERO": {"untyped int", constant.MakeInt64(int64(q.MAP_INHERIT_ZERO))}, + "MAP_NOEXTEND": {"untyped int", constant.MakeInt64(int64(q.MAP_NOEXTEND))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_STACK": {"untyped int", constant.MakeInt64(int64(q.MAP_STACK))}, + "MAP_TRYFIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_TRYFIXED))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_BCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_BCAST))}, + "MSG_CMSG_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.MSG_CMSG_CLOEXEC))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_MCAST": {"untyped int", constant.MakeInt64(int64(q.MSG_MCAST))}, + "MSG_NOSIGNAL": {"untyped int", constant.MakeInt64(int64(q.MSG_NOSIGNAL))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "NAME_MAX": {"untyped int", constant.MakeInt64(int64(q.NAME_MAX))}, + "NET_RT_DUMP": {"untyped int", constant.MakeInt64(int64(q.NET_RT_DUMP))}, + "NET_RT_FLAGS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_FLAGS))}, + "NET_RT_IFLIST": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFLIST))}, + "NET_RT_IFNAMES": {"untyped int", constant.MakeInt64(int64(q.NET_RT_IFNAMES))}, + "NET_RT_MAXID": {"untyped int", constant.MakeInt64(int64(q.NET_RT_MAXID))}, + "NET_RT_SOURCE": {"untyped int", constant.MakeInt64(int64(q.NET_RT_SOURCE))}, + "NET_RT_STATS": {"untyped int", constant.MakeInt64(int64(q.NET_RT_STATS))}, + "NET_RT_TABLE": {"untyped int", constant.MakeInt64(int64(q.NET_RT_TABLE))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "NOTE_ATTRIB": {"untyped int", constant.MakeInt64(int64(q.NOTE_ATTRIB))}, + "NOTE_CHANGE": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHANGE))}, + "NOTE_CHILD": {"untyped int", constant.MakeInt64(int64(q.NOTE_CHILD))}, + "NOTE_DELETE": {"untyped int", constant.MakeInt64(int64(q.NOTE_DELETE))}, + "NOTE_EOF": {"untyped int", constant.MakeInt64(int64(q.NOTE_EOF))}, + "NOTE_EXEC": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXEC))}, + "NOTE_EXIT": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXIT))}, + "NOTE_EXTEND": {"untyped int", constant.MakeInt64(int64(q.NOTE_EXTEND))}, + "NOTE_FORK": {"untyped int", constant.MakeInt64(int64(q.NOTE_FORK))}, + "NOTE_LINK": {"untyped int", constant.MakeInt64(int64(q.NOTE_LINK))}, + "NOTE_LOWAT": {"untyped int", constant.MakeInt64(int64(q.NOTE_LOWAT))}, + "NOTE_OOB": {"untyped int", constant.MakeInt64(int64(q.NOTE_OOB))}, + "NOTE_PCTRLMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PCTRLMASK))}, + "NOTE_PDATAMASK": {"untyped int", constant.MakeInt64(int64(q.NOTE_PDATAMASK))}, + "NOTE_RENAME": {"untyped int", constant.MakeInt64(int64(q.NOTE_RENAME))}, + "NOTE_REVOKE": {"untyped int", constant.MakeInt64(int64(q.NOTE_REVOKE))}, + "NOTE_TRACK": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACK))}, + "NOTE_TRACKERR": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRACKERR))}, + "NOTE_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.NOTE_TRUNCATE))}, + "NOTE_WRITE": {"untyped int", constant.MakeInt64(int64(q.NOTE_WRITE))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "ONOEOT": {"untyped int", constant.MakeInt64(int64(q.ONOEOT))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXLOCK": {"untyped int", constant.MakeInt64(int64(q.O_EXLOCK))}, + "O_FSYNC": {"untyped int", constant.MakeInt64(int64(q.O_FSYNC))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SHLOCK": {"untyped int", constant.MakeInt64(int64(q.O_SHLOCK))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PF_FLUSH": {"untyped int", constant.MakeInt64(int64(q.PF_FLUSH))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PTRACE_CONT": {"untyped int", constant.MakeInt64(int64(q.PTRACE_CONT))}, + "PTRACE_KILL": {"untyped int", constant.MakeInt64(int64(q.PTRACE_KILL))}, + "PTRACE_TRACEME": {"untyped int", constant.MakeInt64(int64(q.PTRACE_TRACEME))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BFD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BFD))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DNS": {"untyped int", constant.MakeInt64(int64(q.RTAX_DNS))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTAX_LABEL))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_SEARCH": {"untyped int", constant.MakeInt64(int64(q.RTAX_SEARCH))}, + "RTAX_SRC": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRC))}, + "RTAX_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRCMASK))}, + "RTAX_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTAX_STATIC))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BFD": {"untyped int", constant.MakeInt64(int64(q.RTA_BFD))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DNS": {"untyped int", constant.MakeInt64(int64(q.RTA_DNS))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_LABEL": {"untyped int", constant.MakeInt64(int64(q.RTA_LABEL))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_SEARCH": {"untyped int", constant.MakeInt64(int64(q.RTA_SEARCH))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTA_SRCMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_SRCMASK))}, + "RTA_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTA_STATIC))}, + "RTF_ANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTF_ANNOUNCE))}, + "RTF_BFD": {"untyped int", constant.MakeInt64(int64(q.RTF_BFD))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.RTF_BROADCAST))}, + "RTF_CACHED": {"untyped int", constant.MakeInt64(int64(q.RTF_CACHED))}, + "RTF_CLONED": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONED))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_CONNECTED": {"untyped int", constant.MakeInt64(int64(q.RTF_CONNECTED))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_FMASK": {"untyped int", constant.MakeInt64(int64(q.RTF_FMASK))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.RTF_LOCAL))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MPATH": {"untyped int", constant.MakeInt64(int64(q.RTF_MPATH))}, + "RTF_MPLS": {"untyped int", constant.MakeInt64(int64(q.RTF_MPLS))}, + "RTF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTICAST))}, + "RTF_PERMANENT_ARP": {"untyped int", constant.MakeInt64(int64(q.RTF_PERMANENT_ARP))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_PROTO3": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO3))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_USETRAILERS": {"untyped int", constant.MakeInt64(int64(q.RTF_USETRAILERS))}, + "RTM_80211INFO": {"untyped int", constant.MakeInt64(int64(q.RTM_80211INFO))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_BFD": {"untyped int", constant.MakeInt64(int64(q.RTM_BFD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_CHGADDRATTR": {"untyped int", constant.MakeInt64(int64(q.RTM_CHGADDRATTR))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_DESYNC": {"untyped int", constant.MakeInt64(int64(q.RTM_DESYNC))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IFANNOUNCE": {"untyped int", constant.MakeInt64(int64(q.RTM_IFANNOUNCE))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.RTM_INVALIDATE))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MAXSIZE": {"untyped int", constant.MakeInt64(int64(q.RTM_MAXSIZE))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_PROPOSAL": {"untyped int", constant.MakeInt64(int64(q.RTM_PROPOSAL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_SOURCE": {"untyped int", constant.MakeInt64(int64(q.RTM_SOURCE))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RT_TABLEID_BITS": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_BITS))}, + "RT_TABLEID_MASK": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_MASK))}, + "RT_TABLEID_MAX": {"untyped int", constant.MakeInt64(int64(q.RT_TABLEID_MAX))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "RUSAGE_THREAD": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_THREAD))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCAIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFADDR))}, + "SIOCAIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCAIFGROUP))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCBRDGADD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADD))}, + "SIOCBRDGADDL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADDL))}, + "SIOCBRDGADDS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGADDS))}, + "SIOCBRDGARL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGARL))}, + "SIOCBRDGDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDADDR))}, + "SIOCBRDGDEL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDEL))}, + "SIOCBRDGDELS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGDELS))}, + "SIOCBRDGFLUSH": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFLUSH))}, + "SIOCBRDGFRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGFRL))}, + "SIOCBRDGGCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGCACHE))}, + "SIOCBRDGGFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGFD))}, + "SIOCBRDGGHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGHT))}, + "SIOCBRDGGIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGIFFLGS))}, + "SIOCBRDGGMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGMA))}, + "SIOCBRDGGPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPARAM))}, + "SIOCBRDGGPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGPRI))}, + "SIOCBRDGGRL": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGRL))}, + "SIOCBRDGGTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGGTO))}, + "SIOCBRDGIFS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGIFS))}, + "SIOCBRDGRTS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGRTS))}, + "SIOCBRDGSADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSADDR))}, + "SIOCBRDGSCACHE": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSCACHE))}, + "SIOCBRDGSFD": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSFD))}, + "SIOCBRDGSHT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSHT))}, + "SIOCBRDGSIFCOST": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFCOST))}, + "SIOCBRDGSIFFLGS": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFFLGS))}, + "SIOCBRDGSIFPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFPRIO))}, + "SIOCBRDGSIFPROT": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSIFPROT))}, + "SIOCBRDGSMA": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSMA))}, + "SIOCBRDGSPRI": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPRI))}, + "SIOCBRDGSPROTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSPROTO))}, + "SIOCBRDGSTO": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTO))}, + "SIOCBRDGSTXHC": {"untyped int", constant.MakeInt64(int64(q.SIOCBRDGSTXHC))}, + "SIOCDELLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCDELLABEL))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFADDR))}, + "SIOCDIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFGROUP))}, + "SIOCDIFPARENT": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPARENT))}, + "SIOCDIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCDIFPHYADDR))}, + "SIOCDPWE3NEIGHBOR": {"untyped int", constant.MakeInt64(int64(q.SIOCDPWE3NEIGHBOR))}, + "SIOCDVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCDVNETID))}, + "SIOCGETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCGETKALIVE))}, + "SIOCGETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGETLABEL))}, + "SIOCGETMPWCFG": {"untyped int", constant.MakeInt64(int64(q.SIOCGETMPWCFG))}, + "SIOCGETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFLOW))}, + "SIOCGETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPFSYNC))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVLAN))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDATA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDATA))}, + "SIOCGIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDESCR))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGATTR))}, + "SIOCGIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGENERIC))}, + "SIOCGIFGLIST": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGLIST))}, + "SIOCGIFGMEMB": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGMEMB))}, + "SIOCGIFGROUP": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFGROUP))}, + "SIOCGIFHARDMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHARDMTU))}, + "SIOCGIFLLPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFLLPRIO))}, + "SIOCGIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEDIA))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFPAIR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPAIR))}, + "SIOCGIFPARENT": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPARENT))}, + "SIOCGIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFPRIORITY))}, + "SIOCGIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRDOMAIN))}, + "SIOCGIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRTLABEL))}, + "SIOCGIFRXR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFRXR))}, + "SIOCGIFSFFPAGE": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFSFFPAGE))}, + "SIOCGIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFXFLAGS))}, + "SIOCGLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYADDR))}, + "SIOCGLIFPHYDF": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYDF))}, + "SIOCGLIFPHYECN": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYECN))}, + "SIOCGLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYRTABLE))}, + "SIOCGLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFPHYTTL))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGPWE3": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3))}, + "SIOCGPWE3CTRLWORD": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3CTRLWORD))}, + "SIOCGPWE3FAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3FAT))}, + "SIOCGPWE3NEIGHBOR": {"untyped int", constant.MakeInt64(int64(q.SIOCGPWE3NEIGHBOR))}, + "SIOCGRXHPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCGRXHPRIO))}, + "SIOCGSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCGSPPPPARAMS))}, + "SIOCGTXHPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCGTXHPRIO))}, + "SIOCGUMBINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCGUMBINFO))}, + "SIOCGUMBPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCGUMBPARAM))}, + "SIOCGVH": {"untyped int", constant.MakeInt64(int64(q.SIOCGVH))}, + "SIOCGVNETFLOWID": {"untyped int", constant.MakeInt64(int64(q.SIOCGVNETFLOWID))}, + "SIOCGVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCGVNETID))}, + "SIOCIFAFATTACH": {"untyped int", constant.MakeInt64(int64(q.SIOCIFAFATTACH))}, + "SIOCIFAFDETACH": {"untyped int", constant.MakeInt64(int64(q.SIOCIFAFDETACH))}, + "SIOCIFCREATE": {"untyped int", constant.MakeInt64(int64(q.SIOCIFCREATE))}, + "SIOCIFDESTROY": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDESTROY))}, + "SIOCIFGCLONERS": {"untyped int", constant.MakeInt64(int64(q.SIOCIFGCLONERS))}, + "SIOCSETKALIVE": {"untyped int", constant.MakeInt64(int64(q.SIOCSETKALIVE))}, + "SIOCSETLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSETLABEL))}, + "SIOCSETMPWCFG": {"untyped int", constant.MakeInt64(int64(q.SIOCSETMPWCFG))}, + "SIOCSETPFLOW": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFLOW))}, + "SIOCSETPFSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPFSYNC))}, + "SIOCSETVLAN": {"untyped int", constant.MakeInt64(int64(q.SIOCSETVLAN))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDESCR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDESCR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFGATTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGATTR))}, + "SIOCSIFGENERIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFGENERIC))}, + "SIOCSIFLLADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLADDR))}, + "SIOCSIFLLPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFLLPRIO))}, + "SIOCSIFMEDIA": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEDIA))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIFPAIR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPAIR))}, + "SIOCSIFPARENT": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPARENT))}, + "SIOCSIFPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFPRIORITY))}, + "SIOCSIFRDOMAIN": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRDOMAIN))}, + "SIOCSIFRTLABEL": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFRTLABEL))}, + "SIOCSIFXFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFXFLAGS))}, + "SIOCSLIFPHYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYADDR))}, + "SIOCSLIFPHYDF": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYDF))}, + "SIOCSLIFPHYECN": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYECN))}, + "SIOCSLIFPHYRTABLE": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYRTABLE))}, + "SIOCSLIFPHYTTL": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPHYTTL))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSPWE3CTRLWORD": {"untyped int", constant.MakeInt64(int64(q.SIOCSPWE3CTRLWORD))}, + "SIOCSPWE3FAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSPWE3FAT))}, + "SIOCSPWE3NEIGHBOR": {"untyped int", constant.MakeInt64(int64(q.SIOCSPWE3NEIGHBOR))}, + "SIOCSRXHPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCSRXHPRIO))}, + "SIOCSSPPPPARAMS": {"untyped int", constant.MakeInt64(int64(q.SIOCSSPPPPARAMS))}, + "SIOCSTXHPRIO": {"untyped int", constant.MakeInt64(int64(q.SIOCSTXHPRIO))}, + "SIOCSUMBPARAM": {"untyped int", constant.MakeInt64(int64(q.SIOCSUMBPARAM))}, + "SIOCSVH": {"untyped int", constant.MakeInt64(int64(q.SIOCSVH))}, + "SIOCSVNETFLOWID": {"untyped int", constant.MakeInt64(int64(q.SIOCSVNETFLOWID))}, + "SIOCSVNETID": {"untyped int", constant.MakeInt64(int64(q.SIOCSVNETID))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_DNS": {"untyped int", constant.MakeInt64(int64(q.SOCK_DNS))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_BINDANY": {"untyped int", constant.MakeInt64(int64(q.SO_BINDANY))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_NETPROC": {"untyped int", constant.MakeInt64(int64(q.SO_NETPROC))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PEERCRED": {"untyped int", constant.MakeInt64(int64(q.SO_PEERCRED))}, + "SO_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOCOL))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_REUSEPORT": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEPORT))}, + "SO_RTABLE": {"untyped int", constant.MakeInt64(int64(q.SO_RTABLE))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_SPLICE": {"untyped int", constant.MakeInt64(int64(q.SO_SPLICE))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_ZEROIZE": {"untyped int", constant.MakeInt64(int64(q.SO_ZEROIZE))}, + "SYS_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT))}, + "SYS_ACCEPT4": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCEPT4))}, + "SYS_ACCESS": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCESS))}, + "SYS_ACCT": {"untyped int", constant.MakeInt64(int64(q.SYS_ACCT))}, + "SYS_ADJFREQ": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJFREQ))}, + "SYS_ADJTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_ADJTIME))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGS))}, + "SYS_CHFLAGSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHFLAGSAT))}, + "SYS_CHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_CHMOD))}, + "SYS_CHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_CHOWN))}, + "SYS_CHROOT": {"untyped int", constant.MakeInt64(int64(q.SYS_CHROOT))}, + "SYS_CLOCK_GETRES": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETRES))}, + "SYS_CLOCK_GETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_GETTIME))}, + "SYS_CLOCK_SETTIME": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOCK_SETTIME))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CLOSEFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSEFROM))}, + "SYS_CONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_CONNECT))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_DUP2": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP2))}, + "SYS_DUP3": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP3))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_EXIT": {"untyped int", constant.MakeInt64(int64(q.SYS_EXIT))}, + "SYS_FACCESSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FACCESSAT))}, + "SYS_FCHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHDIR))}, + "SYS_FCHFLAGS": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHFLAGS))}, + "SYS_FCHMOD": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMOD))}, + "SYS_FCHMODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHMODAT))}, + "SYS_FCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWN))}, + "SYS_FCHOWNAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FCHOWNAT))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "SYS_FHOPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_FHOPEN))}, + "SYS_FHSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTAT))}, + "SYS_FHSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FHSTATFS))}, + "SYS_FLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_FLOCK))}, + "SYS_FORK": {"untyped int", constant.MakeInt64(int64(q.SYS_FORK))}, + "SYS_FPATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_FPATHCONF))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FSTATAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATAT))}, + "SYS_FSTATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTATFS))}, + "SYS_FSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_FSYNC))}, + "SYS_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_FTRUNCATE))}, + "SYS_FUTEX": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTEX))}, + "SYS_FUTIMENS": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMENS))}, + "SYS_FUTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_FUTIMES))}, + "SYS_GETDENTS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDENTS))}, + "SYS_GETDTABLECOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETDTABLECOUNT))}, + "SYS_GETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEGID))}, + "SYS_GETENTROPY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETENTROPY))}, + "SYS_GETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETEUID))}, + "SYS_GETFH": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFH))}, + "SYS_GETFSSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETFSSTAT))}, + "SYS_GETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGID))}, + "SYS_GETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_GETGROUPS))}, + "SYS_GETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_GETITIMER))}, + "SYS_GETLOGIN_R": {"untyped int", constant.MakeInt64(int64(q.SYS_GETLOGIN_R))}, + "SYS_GETPEERNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPEERNAME))}, + "SYS_GETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGID))}, + "SYS_GETPGRP": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPGRP))}, + "SYS_GETPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPID))}, + "SYS_GETPPID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPPID))}, + "SYS_GETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETPRIORITY))}, + "SYS_GETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESGID))}, + "SYS_GETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRESUID))}, + "SYS_GETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRLIMIT))}, + "SYS_GETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRTABLE))}, + "SYS_GETRUSAGE": {"untyped int", constant.MakeInt64(int64(q.SYS_GETRUSAGE))}, + "SYS_GETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSID))}, + "SYS_GETSOCKNAME": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKNAME))}, + "SYS_GETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_GETSOCKOPT))}, + "SYS_GETTHRID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTHRID))}, + "SYS_GETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_GETTIMEOFDAY))}, + "SYS_GETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_GETUID))}, + "SYS_IOCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_IOCTL))}, + "SYS_ISSETUGID": {"untyped int", constant.MakeInt64(int64(q.SYS_ISSETUGID))}, + "SYS_KBIND": {"untyped int", constant.MakeInt64(int64(q.SYS_KBIND))}, + "SYS_KEVENT": {"untyped int", constant.MakeInt64(int64(q.SYS_KEVENT))}, + "SYS_KILL": {"untyped int", constant.MakeInt64(int64(q.SYS_KILL))}, + "SYS_KQUEUE": {"untyped int", constant.MakeInt64(int64(q.SYS_KQUEUE))}, + "SYS_KTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_KTRACE))}, + "SYS_LCHOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_LCHOWN))}, + "SYS_LINK": {"untyped int", constant.MakeInt64(int64(q.SYS_LINK))}, + "SYS_LINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LINKAT))}, + "SYS_LISTEN": {"untyped int", constant.MakeInt64(int64(q.SYS_LISTEN))}, + "SYS_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_LSEEK))}, + "SYS_LSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_LSTAT))}, + "SYS_MADVISE": {"untyped int", constant.MakeInt64(int64(q.SYS_MADVISE))}, + "SYS_MINHERIT": {"untyped int", constant.MakeInt64(int64(q.SYS_MINHERIT))}, + "SYS_MKDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIR))}, + "SYS_MKDIRAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKDIRAT))}, + "SYS_MKFIFO": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFO))}, + "SYS_MKFIFOAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKFIFOAT))}, + "SYS_MKNOD": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNOD))}, + "SYS_MKNODAT": {"untyped int", constant.MakeInt64(int64(q.SYS_MKNODAT))}, + "SYS_MLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCK))}, + "SYS_MLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MLOCKALL))}, + "SYS_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MMAP))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_MPROTECT": {"untyped int", constant.MakeInt64(int64(q.SYS_MPROTECT))}, + "SYS_MQUERY": {"untyped int", constant.MakeInt64(int64(q.SYS_MQUERY))}, + "SYS_MSGCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGCTL))}, + "SYS_MSGGET": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGGET))}, + "SYS_MSGRCV": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGRCV))}, + "SYS_MSGSND": {"untyped int", constant.MakeInt64(int64(q.SYS_MSGSND))}, + "SYS_MSYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYNC))}, + "SYS_MSYSCALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MSYSCALL))}, + "SYS_MUNLOCK": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCK))}, + "SYS_MUNLOCKALL": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNLOCKALL))}, + "SYS_MUNMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_MUNMAP))}, + "SYS_NANOSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_NANOSLEEP))}, + "SYS_NFSSVC": {"untyped int", constant.MakeInt64(int64(q.SYS_NFSSVC))}, + "SYS_OBREAK": {"untyped int", constant.MakeInt64(int64(q.SYS_OBREAK))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OPENAT": {"untyped int", constant.MakeInt64(int64(q.SYS_OPENAT))}, + "SYS_PAD_FTRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_FTRUNCATE))}, + "SYS_PAD_LSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_LSEEK))}, + "SYS_PAD_MMAP": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_MMAP))}, + "SYS_PAD_MQUERY": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_MQUERY))}, + "SYS_PAD_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_PREAD))}, + "SYS_PAD_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_PREADV))}, + "SYS_PAD_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_PWRITE))}, + "SYS_PAD_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_PWRITEV))}, + "SYS_PAD_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_PAD_TRUNCATE))}, + "SYS_PATHCONF": {"untyped int", constant.MakeInt64(int64(q.SYS_PATHCONF))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PIPE2": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE2))}, + "SYS_PLEDGE": {"untyped int", constant.MakeInt64(int64(q.SYS_PLEDGE))}, + "SYS_POLL": {"untyped int", constant.MakeInt64(int64(q.SYS_POLL))}, + "SYS_PPOLL": {"untyped int", constant.MakeInt64(int64(q.SYS_PPOLL))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PREADV": {"untyped int", constant.MakeInt64(int64(q.SYS_PREADV))}, + "SYS_PROFIL": {"untyped int", constant.MakeInt64(int64(q.SYS_PROFIL))}, + "SYS_PSELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_PSELECT))}, + "SYS_PTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_PTRACE))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_PWRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITEV))}, + "SYS_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.SYS_QUOTACTL))}, + "SYS_READ": {"untyped int", constant.MakeInt64(int64(q.SYS_READ))}, + "SYS_READLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINK))}, + "SYS_READLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_READLINKAT))}, + "SYS_READV": {"untyped int", constant.MakeInt64(int64(q.SYS_READV))}, + "SYS_REBOOT": {"untyped int", constant.MakeInt64(int64(q.SYS_REBOOT))}, + "SYS_RECVFROM": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVFROM))}, + "SYS_RECVMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_RECVMSG))}, + "SYS_RENAME": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAME))}, + "SYS_RENAMEAT": {"untyped int", constant.MakeInt64(int64(q.SYS_RENAMEAT))}, + "SYS_REVOKE": {"untyped int", constant.MakeInt64(int64(q.SYS_REVOKE))}, + "SYS_RMDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_RMDIR))}, + "SYS_SCHED_YIELD": {"untyped int", constant.MakeInt64(int64(q.SYS_SCHED_YIELD))}, + "SYS_SELECT": {"untyped int", constant.MakeInt64(int64(q.SYS_SELECT))}, + "SYS_SEMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMGET))}, + "SYS_SEMOP": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMOP))}, + "SYS_SENDMSG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDMSG))}, + "SYS_SENDSYSLOG": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDSYSLOG))}, + "SYS_SENDTO": {"untyped int", constant.MakeInt64(int64(q.SYS_SENDTO))}, + "SYS_SETEGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEGID))}, + "SYS_SETEUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETEUID))}, + "SYS_SETGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGID))}, + "SYS_SETGROUPS": {"untyped int", constant.MakeInt64(int64(q.SYS_SETGROUPS))}, + "SYS_SETITIMER": {"untyped int", constant.MakeInt64(int64(q.SYS_SETITIMER))}, + "SYS_SETLOGIN": {"untyped int", constant.MakeInt64(int64(q.SYS_SETLOGIN))}, + "SYS_SETPGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPGID))}, + "SYS_SETPRIORITY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETPRIORITY))}, + "SYS_SETREGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREGID))}, + "SYS_SETRESGID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESGID))}, + "SYS_SETRESUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRESUID))}, + "SYS_SETREUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETREUID))}, + "SYS_SETRLIMIT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRLIMIT))}, + "SYS_SETRTABLE": {"untyped int", constant.MakeInt64(int64(q.SYS_SETRTABLE))}, + "SYS_SETSID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSID))}, + "SYS_SETSOCKOPT": {"untyped int", constant.MakeInt64(int64(q.SYS_SETSOCKOPT))}, + "SYS_SETTIMEOFDAY": {"untyped int", constant.MakeInt64(int64(q.SYS_SETTIMEOFDAY))}, + "SYS_SETUID": {"untyped int", constant.MakeInt64(int64(q.SYS_SETUID))}, + "SYS_SHMAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMAT))}, + "SYS_SHMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMCTL))}, + "SYS_SHMDT": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMDT))}, + "SYS_SHMGET": {"untyped int", constant.MakeInt64(int64(q.SYS_SHMGET))}, + "SYS_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.SYS_SHUTDOWN))}, + "SYS_SIGACTION": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGACTION))}, + "SYS_SIGALTSTACK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGALTSTACK))}, + "SYS_SIGPENDING": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPENDING))}, + "SYS_SIGPROCMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGPROCMASK))}, + "SYS_SIGRETURN": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGRETURN))}, + "SYS_SIGSUSPEND": {"untyped int", constant.MakeInt64(int64(q.SYS_SIGSUSPEND))}, + "SYS_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKET))}, + "SYS_SOCKETPAIR": {"untyped int", constant.MakeInt64(int64(q.SYS_SOCKETPAIR))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_STATFS": {"untyped int", constant.MakeInt64(int64(q.SYS_STATFS))}, + "SYS_SWAPCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SWAPCTL))}, + "SYS_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINK))}, + "SYS_SYMLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_SYMLINKAT))}, + "SYS_SYNC": {"untyped int", constant.MakeInt64(int64(q.SYS_SYNC))}, + "SYS_SYSARCH": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSARCH))}, + "SYS_SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSCTL))}, + "SYS_THRKILL": {"untyped int", constant.MakeInt64(int64(q.SYS_THRKILL))}, + "SYS_TRUNCATE": {"untyped int", constant.MakeInt64(int64(q.SYS_TRUNCATE))}, + "SYS_UMASK": {"untyped int", constant.MakeInt64(int64(q.SYS_UMASK))}, + "SYS_UNLINK": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINK))}, + "SYS_UNLINKAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNLINKAT))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_UNVEIL": {"untyped int", constant.MakeInt64(int64(q.SYS_UNVEIL))}, + "SYS_UTIMENSAT": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMENSAT))}, + "SYS_UTIMES": {"untyped int", constant.MakeInt64(int64(q.SYS_UTIMES))}, + "SYS_UTRACE": {"untyped int", constant.MakeInt64(int64(q.SYS_UTRACE))}, + "SYS_VFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_VFORK))}, + "SYS_WAIT4": {"untyped int", constant.MakeInt64(int64(q.SYS_WAIT4))}, + "SYS_WRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITE))}, + "SYS_WRITEV": {"untyped int", constant.MakeInt64(int64(q.SYS_WRITEV))}, + "SYS_YPCONNECT": {"untyped int", constant.MakeInt64(int64(q.SYS_YPCONNECT))}, + "SYS___GETCWD": {"untyped int", constant.MakeInt64(int64(q.SYS___GETCWD))}, + "SYS___GET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___GET_TCB))}, + "SYS___REALPATH": {"untyped int", constant.MakeInt64(int64(q.SYS___REALPATH))}, + "SYS___SEMCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SEMCTL))}, + "SYS___SET_TCB": {"untyped int", constant.MakeInt64(int64(q.SYS___SET_TCB))}, + "SYS___SYSCTL": {"untyped int", constant.MakeInt64(int64(q.SYS___SYSCTL))}, + "SYS___TFORK": {"untyped int", constant.MakeInt64(int64(q.SYS___TFORK))}, + "SYS___THREXIT": {"untyped int", constant.MakeInt64(int64(q.SYS___THREXIT))}, + "SYS___THRSIGDIVERT": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSIGDIVERT))}, + "SYS___THRSLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRSLEEP))}, + "SYS___THRWAKEUP": {"untyped int", constant.MakeInt64(int64(q.SYS___THRWAKEUP))}, + "SYS___TMPFD": {"untyped int", constant.MakeInt64(int64(q.SYS___TMPFD))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfAnnounceMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfAnnounceMsghdr))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_INFO": {"untyped int", constant.MakeInt64(int64(q.TCP_INFO))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MAXWIN": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXWIN))}, + "TCP_MAX_SACK": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_SACK))}, + "TCP_MAX_WINSHIFT": {"untyped int", constant.MakeInt64(int64(q.TCP_MAX_WINSHIFT))}, + "TCP_MD5SIG": {"untyped int", constant.MakeInt64(int64(q.TCP_MD5SIG))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOPUSH": {"untyped int", constant.MakeInt64(int64(q.TCP_NOPUSH))}, + "TCP_SACKHOLE_LIMIT": {"untyped int", constant.MakeInt64(int64(q.TCP_SACKHOLE_LIMIT))}, + "TCP_SACK_ENABLE": {"untyped int", constant.MakeInt64(int64(q.TCP_SACK_ENABLE))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCHKVERAUTH": {"untyped int", constant.MakeInt64(int64(q.TIOCCHKVERAUTH))}, + "TIOCCLRVERAUTH": {"untyped int", constant.MakeInt64(int64(q.TIOCCLRVERAUTH))}, + "TIOCCONS": {"untyped int", constant.MakeInt64(int64(q.TIOCCONS))}, + "TIOCDRAIN": {"untyped int", constant.MakeInt64(int64(q.TIOCDRAIN))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCEXT": {"untyped int", constant.MakeInt64(int64(q.TIOCEXT))}, + "TIOCFLAG_CLOCAL": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CLOCAL))}, + "TIOCFLAG_CRTSCTS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_CRTSCTS))}, + "TIOCFLAG_MDMBUF": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_MDMBUF))}, + "TIOCFLAG_PPS": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_PPS))}, + "TIOCFLAG_SOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCFLAG_SOFTCAR))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETA": {"untyped int", constant.MakeInt64(int64(q.TIOCGETA))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCGFLAGS))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCGTSTAMP))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMODG": {"untyped int", constant.MakeInt64(int64(q.TIOCMODG))}, + "TIOCMODS": {"untyped int", constant.MakeInt64(int64(q.TIOCMODS))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCPKT": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT))}, + "TIOCPKT_DATA": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DATA))}, + "TIOCPKT_DOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_DOSTOP))}, + "TIOCPKT_FLUSHREAD": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHREAD))}, + "TIOCPKT_FLUSHWRITE": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_FLUSHWRITE))}, + "TIOCPKT_IOCTL": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_IOCTL))}, + "TIOCPKT_NOSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_NOSTOP))}, + "TIOCPKT_START": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_START))}, + "TIOCPKT_STOP": {"untyped int", constant.MakeInt64(int64(q.TIOCPKT_STOP))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETA": {"untyped int", constant.MakeInt64(int64(q.TIOCSETA))}, + "TIOCSETAF": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAF))}, + "TIOCSETAW": {"untyped int", constant.MakeInt64(int64(q.TIOCSETAW))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETVERAUTH": {"untyped int", constant.MakeInt64(int64(q.TIOCSETVERAUTH))}, + "TIOCSFLAGS": {"untyped int", constant.MakeInt64(int64(q.TIOCSFLAGS))}, + "TIOCSIG": {"untyped int", constant.MakeInt64(int64(q.TIOCSIG))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTAT": {"untyped int", constant.MakeInt64(int64(q.TIOCSTAT))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSTSTAMP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTSTAMP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TIOCUCNTL": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL))}, + "TIOCUCNTL_CBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL_CBRK))}, + "TIOCUCNTL_SBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCUCNTL_SBRK))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTATUS": {"untyped int", constant.MakeInt64(int64(q.VSTATUS))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WALTSIG": {"untyped int", constant.MakeInt64(int64(q.WALTSIG))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLAG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLAG))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_plan9_386.go b/pkg/syscall/go123_export_plan9_386.go new file mode 100755 index 00000000..96b8a715 --- /dev/null +++ b/pkg/syscall/go123_export_plan9_386.go @@ -0,0 +1,244 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "runtime": "runtime", + "sync": "sync", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Dir": reflect.TypeOf((*q.Dir)(nil)).Elem(), + "ErrorString": reflect.TypeOf((*q.ErrorString)(nil)).Elem(), + "Note": reflect.TypeOf((*q.Note)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Qid": reflect.TypeOf((*q.Qid)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Waitmsg": reflect.TypeOf((*q.Waitmsg)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "EACCES": reflect.ValueOf(&q.EACCES), + "EAFNOSUPPORT": reflect.ValueOf(&q.EAFNOSUPPORT), + "EBUSY": reflect.ValueOf(&q.EBUSY), + "EEXIST": reflect.ValueOf(&q.EEXIST), + "EINTR": reflect.ValueOf(&q.EINTR), + "EINVAL": reflect.ValueOf(&q.EINVAL), + "EIO": reflect.ValueOf(&q.EIO), + "EISDIR": reflect.ValueOf(&q.EISDIR), + "EMFILE": reflect.ValueOf(&q.EMFILE), + "ENAMETOOLONG": reflect.ValueOf(&q.ENAMETOOLONG), + "ENOENT": reflect.ValueOf(&q.ENOENT), + "ENOTDIR": reflect.ValueOf(&q.ENOTDIR), + "EPERM": reflect.ValueOf(&q.EPERM), + "EPLAN9": reflect.ValueOf(&q.EPLAN9), + "ESPIPE": reflect.ValueOf(&q.ESPIPE), + "ETIMEDOUT": reflect.ValueOf(&q.ETIMEDOUT), + "ErrBadName": reflect.ValueOf(&q.ErrBadName), + "ErrBadStat": reflect.ValueOf(&q.ErrBadStat), + "ErrShortStat": reflect.ValueOf(&q.ErrShortStat), + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Await": reflect.ValueOf(q.Await), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "Create": reflect.ValueOf(q.Create), + "Dup": reflect.ValueOf(q.Dup), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fd2path": reflect.ValueOf(q.Fd2path), + "Fixwd": reflect.ValueOf(q.Fixwd), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fwstat": reflect.ValueOf(q.Fwstat), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mount": reflect.ValueOf(q.Mount), + "NewError": reflect.ValueOf(q.NewError), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "Remove": reflect.ValueOf(q.Remove), + "Seek": reflect.ValueOf(q.Seek), + "Setenv": reflect.ValueOf(q.Setenv), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "UnmarshalDir": reflect.ValueOf(q.UnmarshalDir), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "WaitProcess": reflect.ValueOf(q.WaitProcess), + "Write": reflect.ValueOf(q.Write), + "Wstat": reflect.ValueOf(q.Wstat), + }, + TypedConsts: map[string]igop.TypedConst{ + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeString(string(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeString(string(q.SIGALRM))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeString(string(q.SIGHUP))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeString(string(q.SIGINT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeString(string(q.SIGKILL))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeString(string(q.SIGTERM))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "DMAPPEND": {"untyped int", constant.MakeInt64(int64(q.DMAPPEND))}, + "DMAUTH": {"untyped int", constant.MakeInt64(int64(q.DMAUTH))}, + "DMDIR": {"untyped int", constant.MakeInt64(int64(q.DMDIR))}, + "DMEXCL": {"untyped int", constant.MakeInt64(int64(q.DMEXCL))}, + "DMEXEC": {"untyped int", constant.MakeInt64(int64(q.DMEXEC))}, + "DMMOUNT": {"untyped int", constant.MakeInt64(int64(q.DMMOUNT))}, + "DMREAD": {"untyped int", constant.MakeInt64(int64(q.DMREAD))}, + "DMTMP": {"untyped int", constant.MakeInt64(int64(q.DMTMP))}, + "DMWRITE": {"untyped int", constant.MakeInt64(int64(q.DMWRITE))}, + "ERRMAX": {"untyped int", constant.MakeInt64(int64(q.ERRMAX))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "MAFTER": {"untyped int", constant.MakeInt64(int64(q.MAFTER))}, + "MBEFORE": {"untyped int", constant.MakeInt64(int64(q.MBEFORE))}, + "MCACHE": {"untyped int", constant.MakeInt64(int64(q.MCACHE))}, + "MCREATE": {"untyped int", constant.MakeInt64(int64(q.MCREATE))}, + "MMASK": {"untyped int", constant.MakeInt64(int64(q.MMASK))}, + "MORDER": {"untyped int", constant.MakeInt64(int64(q.MORDER))}, + "MREPL": {"untyped int", constant.MakeInt64(int64(q.MREPL))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "QTAPPEND": {"untyped int", constant.MakeInt64(int64(q.QTAPPEND))}, + "QTAUTH": {"untyped int", constant.MakeInt64(int64(q.QTAUTH))}, + "QTDIR": {"untyped int", constant.MakeInt64(int64(q.QTDIR))}, + "QTEXCL": {"untyped int", constant.MakeInt64(int64(q.QTEXCL))}, + "QTFILE": {"untyped int", constant.MakeInt64(int64(q.QTFILE))}, + "QTMOUNT": {"untyped int", constant.MakeInt64(int64(q.QTMOUNT))}, + "QTTMP": {"untyped int", constant.MakeInt64(int64(q.QTTMP))}, + "RFCENVG": {"untyped int", constant.MakeInt64(int64(q.RFCENVG))}, + "RFCFDG": {"untyped int", constant.MakeInt64(int64(q.RFCFDG))}, + "RFCNAMEG": {"untyped int", constant.MakeInt64(int64(q.RFCNAMEG))}, + "RFENVG": {"untyped int", constant.MakeInt64(int64(q.RFENVG))}, + "RFFDG": {"untyped int", constant.MakeInt64(int64(q.RFFDG))}, + "RFMEM": {"untyped int", constant.MakeInt64(int64(q.RFMEM))}, + "RFNAMEG": {"untyped int", constant.MakeInt64(int64(q.RFNAMEG))}, + "RFNOMNT": {"untyped int", constant.MakeInt64(int64(q.RFNOMNT))}, + "RFNOTEG": {"untyped int", constant.MakeInt64(int64(q.RFNOTEG))}, + "RFNOWAIT": {"untyped int", constant.MakeInt64(int64(q.RFNOWAIT))}, + "RFPROC": {"untyped int", constant.MakeInt64(int64(q.RFPROC))}, + "RFREND": {"untyped int", constant.MakeInt64(int64(q.RFREND))}, + "STATFIXLEN": {"untyped int", constant.MakeInt64(int64(q.STATFIXLEN))}, + "STATMAX": {"untyped int", constant.MakeInt64(int64(q.STATMAX))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_AWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AWAIT))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BRK_": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK_))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_ERRSTR": {"untyped int", constant.MakeInt64(int64(q.SYS_ERRSTR))}, + "SYS_EXEC": {"untyped int", constant.MakeInt64(int64(q.SYS_EXEC))}, + "SYS_EXITS": {"untyped int", constant.MakeInt64(int64(q.SYS_EXITS))}, + "SYS_FAUTH": {"untyped int", constant.MakeInt64(int64(q.SYS_FAUTH))}, + "SYS_FD2PATH": {"untyped int", constant.MakeInt64(int64(q.SYS_FD2PATH))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FVERSION": {"untyped int", constant.MakeInt64(int64(q.SYS_FVERSION))}, + "SYS_FWSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FWSTAT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_NOTED": {"untyped int", constant.MakeInt64(int64(q.SYS_NOTED))}, + "SYS_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_NOTIFY))}, + "SYS_NSEC": {"untyped int", constant.MakeInt64(int64(q.SYS_NSEC))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_OSEEK))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_REMOVE": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVE))}, + "SYS_RENDEZVOUS": {"untyped int", constant.MakeInt64(int64(q.SYS_RENDEZVOUS))}, + "SYS_RFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_RFORK))}, + "SYS_SEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEEK))}, + "SYS_SEGATTACH": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGATTACH))}, + "SYS_SEGBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGBRK))}, + "SYS_SEGDETACH": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGDETACH))}, + "SYS_SEGFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGFLUSH))}, + "SYS_SEGFREE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGFREE))}, + "SYS_SEMACQUIRE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMACQUIRE))}, + "SYS_SEMRELEASE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMRELEASE))}, + "SYS_SLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_SLEEP))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_SYSR1": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSR1))}, + "SYS_TSEMACQUIRE": {"untyped int", constant.MakeInt64(int64(q.SYS_TSEMACQUIRE))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_WSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_WSTAT))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_plan9_amd64.go b/pkg/syscall/go123_export_plan9_amd64.go new file mode 100755 index 00000000..96b8a715 --- /dev/null +++ b/pkg/syscall/go123_export_plan9_amd64.go @@ -0,0 +1,244 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "runtime": "runtime", + "sync": "sync", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Dir": reflect.TypeOf((*q.Dir)(nil)).Elem(), + "ErrorString": reflect.TypeOf((*q.ErrorString)(nil)).Elem(), + "Note": reflect.TypeOf((*q.Note)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Qid": reflect.TypeOf((*q.Qid)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Waitmsg": reflect.TypeOf((*q.Waitmsg)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "EACCES": reflect.ValueOf(&q.EACCES), + "EAFNOSUPPORT": reflect.ValueOf(&q.EAFNOSUPPORT), + "EBUSY": reflect.ValueOf(&q.EBUSY), + "EEXIST": reflect.ValueOf(&q.EEXIST), + "EINTR": reflect.ValueOf(&q.EINTR), + "EINVAL": reflect.ValueOf(&q.EINVAL), + "EIO": reflect.ValueOf(&q.EIO), + "EISDIR": reflect.ValueOf(&q.EISDIR), + "EMFILE": reflect.ValueOf(&q.EMFILE), + "ENAMETOOLONG": reflect.ValueOf(&q.ENAMETOOLONG), + "ENOENT": reflect.ValueOf(&q.ENOENT), + "ENOTDIR": reflect.ValueOf(&q.ENOTDIR), + "EPERM": reflect.ValueOf(&q.EPERM), + "EPLAN9": reflect.ValueOf(&q.EPLAN9), + "ESPIPE": reflect.ValueOf(&q.ESPIPE), + "ETIMEDOUT": reflect.ValueOf(&q.ETIMEDOUT), + "ErrBadName": reflect.ValueOf(&q.ErrBadName), + "ErrBadStat": reflect.ValueOf(&q.ErrBadStat), + "ErrShortStat": reflect.ValueOf(&q.ErrShortStat), + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Await": reflect.ValueOf(q.Await), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "Create": reflect.ValueOf(q.Create), + "Dup": reflect.ValueOf(q.Dup), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fd2path": reflect.ValueOf(q.Fd2path), + "Fixwd": reflect.ValueOf(q.Fixwd), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fwstat": reflect.ValueOf(q.Fwstat), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mount": reflect.ValueOf(q.Mount), + "NewError": reflect.ValueOf(q.NewError), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "Remove": reflect.ValueOf(q.Remove), + "Seek": reflect.ValueOf(q.Seek), + "Setenv": reflect.ValueOf(q.Setenv), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "UnmarshalDir": reflect.ValueOf(q.UnmarshalDir), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "WaitProcess": reflect.ValueOf(q.WaitProcess), + "Write": reflect.ValueOf(q.Write), + "Wstat": reflect.ValueOf(q.Wstat), + }, + TypedConsts: map[string]igop.TypedConst{ + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeString(string(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeString(string(q.SIGALRM))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeString(string(q.SIGHUP))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeString(string(q.SIGINT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeString(string(q.SIGKILL))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeString(string(q.SIGTERM))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "DMAPPEND": {"untyped int", constant.MakeInt64(int64(q.DMAPPEND))}, + "DMAUTH": {"untyped int", constant.MakeInt64(int64(q.DMAUTH))}, + "DMDIR": {"untyped int", constant.MakeInt64(int64(q.DMDIR))}, + "DMEXCL": {"untyped int", constant.MakeInt64(int64(q.DMEXCL))}, + "DMEXEC": {"untyped int", constant.MakeInt64(int64(q.DMEXEC))}, + "DMMOUNT": {"untyped int", constant.MakeInt64(int64(q.DMMOUNT))}, + "DMREAD": {"untyped int", constant.MakeInt64(int64(q.DMREAD))}, + "DMTMP": {"untyped int", constant.MakeInt64(int64(q.DMTMP))}, + "DMWRITE": {"untyped int", constant.MakeInt64(int64(q.DMWRITE))}, + "ERRMAX": {"untyped int", constant.MakeInt64(int64(q.ERRMAX))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "MAFTER": {"untyped int", constant.MakeInt64(int64(q.MAFTER))}, + "MBEFORE": {"untyped int", constant.MakeInt64(int64(q.MBEFORE))}, + "MCACHE": {"untyped int", constant.MakeInt64(int64(q.MCACHE))}, + "MCREATE": {"untyped int", constant.MakeInt64(int64(q.MCREATE))}, + "MMASK": {"untyped int", constant.MakeInt64(int64(q.MMASK))}, + "MORDER": {"untyped int", constant.MakeInt64(int64(q.MORDER))}, + "MREPL": {"untyped int", constant.MakeInt64(int64(q.MREPL))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "QTAPPEND": {"untyped int", constant.MakeInt64(int64(q.QTAPPEND))}, + "QTAUTH": {"untyped int", constant.MakeInt64(int64(q.QTAUTH))}, + "QTDIR": {"untyped int", constant.MakeInt64(int64(q.QTDIR))}, + "QTEXCL": {"untyped int", constant.MakeInt64(int64(q.QTEXCL))}, + "QTFILE": {"untyped int", constant.MakeInt64(int64(q.QTFILE))}, + "QTMOUNT": {"untyped int", constant.MakeInt64(int64(q.QTMOUNT))}, + "QTTMP": {"untyped int", constant.MakeInt64(int64(q.QTTMP))}, + "RFCENVG": {"untyped int", constant.MakeInt64(int64(q.RFCENVG))}, + "RFCFDG": {"untyped int", constant.MakeInt64(int64(q.RFCFDG))}, + "RFCNAMEG": {"untyped int", constant.MakeInt64(int64(q.RFCNAMEG))}, + "RFENVG": {"untyped int", constant.MakeInt64(int64(q.RFENVG))}, + "RFFDG": {"untyped int", constant.MakeInt64(int64(q.RFFDG))}, + "RFMEM": {"untyped int", constant.MakeInt64(int64(q.RFMEM))}, + "RFNAMEG": {"untyped int", constant.MakeInt64(int64(q.RFNAMEG))}, + "RFNOMNT": {"untyped int", constant.MakeInt64(int64(q.RFNOMNT))}, + "RFNOTEG": {"untyped int", constant.MakeInt64(int64(q.RFNOTEG))}, + "RFNOWAIT": {"untyped int", constant.MakeInt64(int64(q.RFNOWAIT))}, + "RFPROC": {"untyped int", constant.MakeInt64(int64(q.RFPROC))}, + "RFREND": {"untyped int", constant.MakeInt64(int64(q.RFREND))}, + "STATFIXLEN": {"untyped int", constant.MakeInt64(int64(q.STATFIXLEN))}, + "STATMAX": {"untyped int", constant.MakeInt64(int64(q.STATMAX))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_AWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AWAIT))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BRK_": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK_))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_ERRSTR": {"untyped int", constant.MakeInt64(int64(q.SYS_ERRSTR))}, + "SYS_EXEC": {"untyped int", constant.MakeInt64(int64(q.SYS_EXEC))}, + "SYS_EXITS": {"untyped int", constant.MakeInt64(int64(q.SYS_EXITS))}, + "SYS_FAUTH": {"untyped int", constant.MakeInt64(int64(q.SYS_FAUTH))}, + "SYS_FD2PATH": {"untyped int", constant.MakeInt64(int64(q.SYS_FD2PATH))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FVERSION": {"untyped int", constant.MakeInt64(int64(q.SYS_FVERSION))}, + "SYS_FWSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FWSTAT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_NOTED": {"untyped int", constant.MakeInt64(int64(q.SYS_NOTED))}, + "SYS_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_NOTIFY))}, + "SYS_NSEC": {"untyped int", constant.MakeInt64(int64(q.SYS_NSEC))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_OSEEK))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_REMOVE": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVE))}, + "SYS_RENDEZVOUS": {"untyped int", constant.MakeInt64(int64(q.SYS_RENDEZVOUS))}, + "SYS_RFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_RFORK))}, + "SYS_SEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEEK))}, + "SYS_SEGATTACH": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGATTACH))}, + "SYS_SEGBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGBRK))}, + "SYS_SEGDETACH": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGDETACH))}, + "SYS_SEGFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGFLUSH))}, + "SYS_SEGFREE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGFREE))}, + "SYS_SEMACQUIRE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMACQUIRE))}, + "SYS_SEMRELEASE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMRELEASE))}, + "SYS_SLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_SLEEP))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_SYSR1": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSR1))}, + "SYS_TSEMACQUIRE": {"untyped int", constant.MakeInt64(int64(q.SYS_TSEMACQUIRE))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_WSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_WSTAT))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_plan9_arm.go b/pkg/syscall/go123_export_plan9_arm.go new file mode 100755 index 00000000..96b8a715 --- /dev/null +++ b/pkg/syscall/go123_export_plan9_arm.go @@ -0,0 +1,244 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "runtime": "runtime", + "sync": "sync", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Dir": reflect.TypeOf((*q.Dir)(nil)).Elem(), + "ErrorString": reflect.TypeOf((*q.ErrorString)(nil)).Elem(), + "Note": reflect.TypeOf((*q.Note)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Qid": reflect.TypeOf((*q.Qid)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Waitmsg": reflect.TypeOf((*q.Waitmsg)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "EACCES": reflect.ValueOf(&q.EACCES), + "EAFNOSUPPORT": reflect.ValueOf(&q.EAFNOSUPPORT), + "EBUSY": reflect.ValueOf(&q.EBUSY), + "EEXIST": reflect.ValueOf(&q.EEXIST), + "EINTR": reflect.ValueOf(&q.EINTR), + "EINVAL": reflect.ValueOf(&q.EINVAL), + "EIO": reflect.ValueOf(&q.EIO), + "EISDIR": reflect.ValueOf(&q.EISDIR), + "EMFILE": reflect.ValueOf(&q.EMFILE), + "ENAMETOOLONG": reflect.ValueOf(&q.ENAMETOOLONG), + "ENOENT": reflect.ValueOf(&q.ENOENT), + "ENOTDIR": reflect.ValueOf(&q.ENOTDIR), + "EPERM": reflect.ValueOf(&q.EPERM), + "EPLAN9": reflect.ValueOf(&q.EPLAN9), + "ESPIPE": reflect.ValueOf(&q.ESPIPE), + "ETIMEDOUT": reflect.ValueOf(&q.ETIMEDOUT), + "ErrBadName": reflect.ValueOf(&q.ErrBadName), + "ErrBadStat": reflect.ValueOf(&q.ErrBadStat), + "ErrShortStat": reflect.ValueOf(&q.ErrShortStat), + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Await": reflect.ValueOf(q.Await), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "Create": reflect.ValueOf(q.Create), + "Dup": reflect.ValueOf(q.Dup), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fd2path": reflect.ValueOf(q.Fd2path), + "Fixwd": reflect.ValueOf(q.Fixwd), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fstat": reflect.ValueOf(q.Fstat), + "Fwstat": reflect.ValueOf(q.Fwstat), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mount": reflect.ValueOf(q.Mount), + "NewError": reflect.ValueOf(q.NewError), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "Remove": reflect.ValueOf(q.Remove), + "Seek": reflect.ValueOf(q.Seek), + "Setenv": reflect.ValueOf(q.Setenv), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "UnmarshalDir": reflect.ValueOf(q.UnmarshalDir), + "Unmount": reflect.ValueOf(q.Unmount), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "WaitProcess": reflect.ValueOf(q.WaitProcess), + "Write": reflect.ValueOf(q.Write), + "Wstat": reflect.ValueOf(q.Wstat), + }, + TypedConsts: map[string]igop.TypedConst{ + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeString(string(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeString(string(q.SIGALRM))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeString(string(q.SIGHUP))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeString(string(q.SIGINT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeString(string(q.SIGKILL))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeString(string(q.SIGTERM))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "DMAPPEND": {"untyped int", constant.MakeInt64(int64(q.DMAPPEND))}, + "DMAUTH": {"untyped int", constant.MakeInt64(int64(q.DMAUTH))}, + "DMDIR": {"untyped int", constant.MakeInt64(int64(q.DMDIR))}, + "DMEXCL": {"untyped int", constant.MakeInt64(int64(q.DMEXCL))}, + "DMEXEC": {"untyped int", constant.MakeInt64(int64(q.DMEXEC))}, + "DMMOUNT": {"untyped int", constant.MakeInt64(int64(q.DMMOUNT))}, + "DMREAD": {"untyped int", constant.MakeInt64(int64(q.DMREAD))}, + "DMTMP": {"untyped int", constant.MakeInt64(int64(q.DMTMP))}, + "DMWRITE": {"untyped int", constant.MakeInt64(int64(q.DMWRITE))}, + "ERRMAX": {"untyped int", constant.MakeInt64(int64(q.ERRMAX))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "MAFTER": {"untyped int", constant.MakeInt64(int64(q.MAFTER))}, + "MBEFORE": {"untyped int", constant.MakeInt64(int64(q.MBEFORE))}, + "MCACHE": {"untyped int", constant.MakeInt64(int64(q.MCACHE))}, + "MCREATE": {"untyped int", constant.MakeInt64(int64(q.MCREATE))}, + "MMASK": {"untyped int", constant.MakeInt64(int64(q.MMASK))}, + "MORDER": {"untyped int", constant.MakeInt64(int64(q.MORDER))}, + "MREPL": {"untyped int", constant.MakeInt64(int64(q.MREPL))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "QTAPPEND": {"untyped int", constant.MakeInt64(int64(q.QTAPPEND))}, + "QTAUTH": {"untyped int", constant.MakeInt64(int64(q.QTAUTH))}, + "QTDIR": {"untyped int", constant.MakeInt64(int64(q.QTDIR))}, + "QTEXCL": {"untyped int", constant.MakeInt64(int64(q.QTEXCL))}, + "QTFILE": {"untyped int", constant.MakeInt64(int64(q.QTFILE))}, + "QTMOUNT": {"untyped int", constant.MakeInt64(int64(q.QTMOUNT))}, + "QTTMP": {"untyped int", constant.MakeInt64(int64(q.QTTMP))}, + "RFCENVG": {"untyped int", constant.MakeInt64(int64(q.RFCENVG))}, + "RFCFDG": {"untyped int", constant.MakeInt64(int64(q.RFCFDG))}, + "RFCNAMEG": {"untyped int", constant.MakeInt64(int64(q.RFCNAMEG))}, + "RFENVG": {"untyped int", constant.MakeInt64(int64(q.RFENVG))}, + "RFFDG": {"untyped int", constant.MakeInt64(int64(q.RFFDG))}, + "RFMEM": {"untyped int", constant.MakeInt64(int64(q.RFMEM))}, + "RFNAMEG": {"untyped int", constant.MakeInt64(int64(q.RFNAMEG))}, + "RFNOMNT": {"untyped int", constant.MakeInt64(int64(q.RFNOMNT))}, + "RFNOTEG": {"untyped int", constant.MakeInt64(int64(q.RFNOTEG))}, + "RFNOWAIT": {"untyped int", constant.MakeInt64(int64(q.RFNOWAIT))}, + "RFPROC": {"untyped int", constant.MakeInt64(int64(q.RFPROC))}, + "RFREND": {"untyped int", constant.MakeInt64(int64(q.RFREND))}, + "STATFIXLEN": {"untyped int", constant.MakeInt64(int64(q.STATFIXLEN))}, + "STATMAX": {"untyped int", constant.MakeInt64(int64(q.STATMAX))}, + "SYS_ALARM": {"untyped int", constant.MakeInt64(int64(q.SYS_ALARM))}, + "SYS_AWAIT": {"untyped int", constant.MakeInt64(int64(q.SYS_AWAIT))}, + "SYS_BIND": {"untyped int", constant.MakeInt64(int64(q.SYS_BIND))}, + "SYS_BRK_": {"untyped int", constant.MakeInt64(int64(q.SYS_BRK_))}, + "SYS_CHDIR": {"untyped int", constant.MakeInt64(int64(q.SYS_CHDIR))}, + "SYS_CLOSE": {"untyped int", constant.MakeInt64(int64(q.SYS_CLOSE))}, + "SYS_CREATE": {"untyped int", constant.MakeInt64(int64(q.SYS_CREATE))}, + "SYS_DUP": {"untyped int", constant.MakeInt64(int64(q.SYS_DUP))}, + "SYS_ERRSTR": {"untyped int", constant.MakeInt64(int64(q.SYS_ERRSTR))}, + "SYS_EXEC": {"untyped int", constant.MakeInt64(int64(q.SYS_EXEC))}, + "SYS_EXITS": {"untyped int", constant.MakeInt64(int64(q.SYS_EXITS))}, + "SYS_FAUTH": {"untyped int", constant.MakeInt64(int64(q.SYS_FAUTH))}, + "SYS_FD2PATH": {"untyped int", constant.MakeInt64(int64(q.SYS_FD2PATH))}, + "SYS_FSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FSTAT))}, + "SYS_FVERSION": {"untyped int", constant.MakeInt64(int64(q.SYS_FVERSION))}, + "SYS_FWSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_FWSTAT))}, + "SYS_MOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_MOUNT))}, + "SYS_NOTED": {"untyped int", constant.MakeInt64(int64(q.SYS_NOTED))}, + "SYS_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.SYS_NOTIFY))}, + "SYS_NSEC": {"untyped int", constant.MakeInt64(int64(q.SYS_NSEC))}, + "SYS_OPEN": {"untyped int", constant.MakeInt64(int64(q.SYS_OPEN))}, + "SYS_OSEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_OSEEK))}, + "SYS_PIPE": {"untyped int", constant.MakeInt64(int64(q.SYS_PIPE))}, + "SYS_PREAD": {"untyped int", constant.MakeInt64(int64(q.SYS_PREAD))}, + "SYS_PWRITE": {"untyped int", constant.MakeInt64(int64(q.SYS_PWRITE))}, + "SYS_REMOVE": {"untyped int", constant.MakeInt64(int64(q.SYS_REMOVE))}, + "SYS_RENDEZVOUS": {"untyped int", constant.MakeInt64(int64(q.SYS_RENDEZVOUS))}, + "SYS_RFORK": {"untyped int", constant.MakeInt64(int64(q.SYS_RFORK))}, + "SYS_SEEK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEEK))}, + "SYS_SEGATTACH": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGATTACH))}, + "SYS_SEGBRK": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGBRK))}, + "SYS_SEGDETACH": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGDETACH))}, + "SYS_SEGFLUSH": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGFLUSH))}, + "SYS_SEGFREE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEGFREE))}, + "SYS_SEMACQUIRE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMACQUIRE))}, + "SYS_SEMRELEASE": {"untyped int", constant.MakeInt64(int64(q.SYS_SEMRELEASE))}, + "SYS_SLEEP": {"untyped int", constant.MakeInt64(int64(q.SYS_SLEEP))}, + "SYS_STAT": {"untyped int", constant.MakeInt64(int64(q.SYS_STAT))}, + "SYS_SYSR1": {"untyped int", constant.MakeInt64(int64(q.SYS_SYSR1))}, + "SYS_TSEMACQUIRE": {"untyped int", constant.MakeInt64(int64(q.SYS_TSEMACQUIRE))}, + "SYS_UNMOUNT": {"untyped int", constant.MakeInt64(int64(q.SYS_UNMOUNT))}, + "SYS_WSTAT": {"untyped int", constant.MakeInt64(int64(q.SYS_WSTAT))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_solaris_amd64.go b/pkg/syscall/go123_export_solaris_amd64.go new file mode 100755 index 00000000..2650da64 --- /dev/null +++ b/pkg/syscall/go123_export_solaris_amd64.go @@ -0,0 +1,1509 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "BpfHdr": reflect.TypeOf((*q.BpfHdr)(nil)).Elem(), + "BpfInsn": reflect.TypeOf((*q.BpfInsn)(nil)).Elem(), + "BpfProgram": reflect.TypeOf((*q.BpfProgram)(nil)).Elem(), + "BpfStat": reflect.TypeOf((*q.BpfStat)(nil)).Elem(), + "BpfTimeval": reflect.TypeOf((*q.BpfTimeval)(nil)).Elem(), + "BpfVersion": reflect.TypeOf((*q.BpfVersion)(nil)).Elem(), + "Cmsghdr": reflect.TypeOf((*q.Cmsghdr)(nil)).Elem(), + "Credential": reflect.TypeOf((*q.Credential)(nil)).Elem(), + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FdSet": reflect.TypeOf((*q.FdSet)(nil)).Elem(), + "Flock_t": reflect.TypeOf((*q.Flock_t)(nil)).Elem(), + "ICMPv6Filter": reflect.TypeOf((*q.ICMPv6Filter)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6MTUInfo": reflect.TypeOf((*q.IPv6MTUInfo)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "IfData": reflect.TypeOf((*q.IfData)(nil)).Elem(), + "IfMsghdr": reflect.TypeOf((*q.IfMsghdr)(nil)).Elem(), + "IfaMsghdr": reflect.TypeOf((*q.IfaMsghdr)(nil)).Elem(), + "Inet6Pktinfo": reflect.TypeOf((*q.Inet6Pktinfo)(nil)).Elem(), + "Iovec": reflect.TypeOf((*q.Iovec)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "Msghdr": reflect.TypeOf((*q.Msghdr)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrDatalink": reflect.TypeOf((*q.RawSockaddrDatalink)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "RtMetrics": reflect.TypeOf((*q.RtMetrics)(nil)).Elem(), + "RtMsghdr": reflect.TypeOf((*q.RtMsghdr)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrDatalink": reflect.TypeOf((*q.SockaddrDatalink)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "SocketControlMessage": reflect.TypeOf((*q.SocketControlMessage)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Termios": reflect.TypeOf((*q.Termios)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timeval32": reflect.TypeOf((*q.Timeval32)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Accept4": reflect.ValueOf(q.Accept4), + "Access": reflect.ValueOf(q.Access), + "Adjtime": reflect.ValueOf(q.Adjtime), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Chroot": reflect.ValueOf(q.Chroot), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "CmsgLen": reflect.ValueOf(q.CmsgLen), + "CmsgSpace": reflect.ValueOf(q.CmsgSpace), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Environ": reflect.ValueOf(q.Environ), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FcntlFlock": reflect.ValueOf(q.FcntlFlock), + "ForkExec": reflect.ValueOf(q.ForkExec), + "Fpathconf": reflect.ValueOf(q.Fpathconf), + "Fstat": reflect.ValueOf(q.Fstat), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Getcwd": reflect.ValueOf(q.Getcwd), + "Getdents": reflect.ValueOf(q.Getdents), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getexecname": reflect.ValueOf(q.Getexecname), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Gethostname": reflect.ValueOf(q.Gethostname), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getpriority": reflect.ValueOf(q.Getpriority), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "Getrusage": reflect.ValueOf(q.Getrusage), + "Getsockname": reflect.ValueOf(q.Getsockname), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Kill": reflect.ValueOf(q.Kill), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "Mknod": reflect.ValueOf(q.Mknod), + "Mmap": reflect.ValueOf(q.Mmap), + "Munmap": reflect.ValueOf(q.Munmap), + "Nanosleep": reflect.ValueOf(q.Nanosleep), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "ParseSocketControlMessage": reflect.ValueOf(q.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(q.ParseUnixRights), + "Pathconf": reflect.ValueOf(q.Pathconf), + "Pipe": reflect.ValueOf(q.Pipe), + "Pipe2": reflect.ValueOf(q.Pipe2), + "Pread": reflect.ValueOf(q.Pread), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDirent": reflect.ValueOf(q.ReadDirent), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Sendfile": reflect.ValueOf(q.Sendfile), + "Sendmsg": reflect.ValueOf(q.Sendmsg), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setegid": reflect.ValueOf(q.Setegid), + "Setenv": reflect.ValueOf(q.Setenv), + "Seteuid": reflect.ValueOf(q.Seteuid), + "Setgid": reflect.ValueOf(q.Setgid), + "Setgroups": reflect.ValueOf(q.Setgroups), + "Setpgid": reflect.ValueOf(q.Setpgid), + "Setpriority": reflect.ValueOf(q.Setpriority), + "Setregid": reflect.ValueOf(q.Setregid), + "Setreuid": reflect.ValueOf(q.Setreuid), + "Setrlimit": reflect.ValueOf(q.Setrlimit), + "Setsid": reflect.ValueOf(q.Setsid), + "SetsockoptByte": reflect.ValueOf(q.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(q.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(q.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Setuid": reflect.ValueOf(q.Setuid), + "Shutdown": reflect.ValueOf(q.Shutdown), + "SlicePtrFromStrings": reflect.ValueOf(q.SlicePtrFromStrings), + "Socket": reflect.ValueOf(q.Socket), + "Socketpair": reflect.ValueOf(q.Socketpair), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(q.StringSlicePtr), + "Symlink": reflect.ValueOf(q.Symlink), + "Sync": reflect.ValueOf(q.Sync), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "UnixRights": reflect.ValueOf(q.UnixRights), + "Unlink": reflect.ValueOf(q.Unlink), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOCKUNMAPPED": {reflect.TypeOf(q.ELOCKUNMAPPED), constant.MakeInt64(int64(q.ELOCKUNMAPPED))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTACTIVE": {reflect.TypeOf(q.ENOTACTIVE), constant.MakeInt64(int64(q.ENOTACTIVE))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCANCEL": {reflect.TypeOf(q.SIGCANCEL), constant.MakeInt64(int64(q.SIGCANCEL))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCLD": {reflect.TypeOf(q.SIGCLD), constant.MakeInt64(int64(q.SIGCLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGEMT": {reflect.TypeOf(q.SIGEMT), constant.MakeInt64(int64(q.SIGEMT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGFREEZE": {reflect.TypeOf(q.SIGFREEZE), constant.MakeInt64(int64(q.SIGFREEZE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGIO": {reflect.TypeOf(q.SIGIO), constant.MakeInt64(int64(q.SIGIO))}, + "SIGIOT": {reflect.TypeOf(q.SIGIOT), constant.MakeInt64(int64(q.SIGIOT))}, + "SIGJVM1": {reflect.TypeOf(q.SIGJVM1), constant.MakeInt64(int64(q.SIGJVM1))}, + "SIGJVM2": {reflect.TypeOf(q.SIGJVM2), constant.MakeInt64(int64(q.SIGJVM2))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGLOST": {reflect.TypeOf(q.SIGLOST), constant.MakeInt64(int64(q.SIGLOST))}, + "SIGLWP": {reflect.TypeOf(q.SIGLWP), constant.MakeInt64(int64(q.SIGLWP))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTHAW": {reflect.TypeOf(q.SIGTHAW), constant.MakeInt64(int64(q.SIGTHAW))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTALRM": {reflect.TypeOf(q.SIGVTALRM), constant.MakeInt64(int64(q.SIGVTALRM))}, + "SIGWAITING": {reflect.TypeOf(q.SIGWAITING), constant.MakeInt64(int64(q.SIGWAITING))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + "SIGXRES": {reflect.TypeOf(q.SIGXRES), constant.MakeInt64(int64(q.SIGXRES))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_802": {"untyped int", constant.MakeInt64(int64(q.AF_802))}, + "AF_APPLETALK": {"untyped int", constant.MakeInt64(int64(q.AF_APPLETALK))}, + "AF_CCITT": {"untyped int", constant.MakeInt64(int64(q.AF_CCITT))}, + "AF_CHAOS": {"untyped int", constant.MakeInt64(int64(q.AF_CHAOS))}, + "AF_DATAKIT": {"untyped int", constant.MakeInt64(int64(q.AF_DATAKIT))}, + "AF_DECnet": {"untyped int", constant.MakeInt64(int64(q.AF_DECnet))}, + "AF_DLI": {"untyped int", constant.MakeInt64(int64(q.AF_DLI))}, + "AF_ECMA": {"untyped int", constant.MakeInt64(int64(q.AF_ECMA))}, + "AF_FILE": {"untyped int", constant.MakeInt64(int64(q.AF_FILE))}, + "AF_GOSIP": {"untyped int", constant.MakeInt64(int64(q.AF_GOSIP))}, + "AF_HYLINK": {"untyped int", constant.MakeInt64(int64(q.AF_HYLINK))}, + "AF_IMPLINK": {"untyped int", constant.MakeInt64(int64(q.AF_IMPLINK))}, + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_INET_OFFLOAD": {"untyped int", constant.MakeInt64(int64(q.AF_INET_OFFLOAD))}, + "AF_IPX": {"untyped int", constant.MakeInt64(int64(q.AF_IPX))}, + "AF_KEY": {"untyped int", constant.MakeInt64(int64(q.AF_KEY))}, + "AF_LAT": {"untyped int", constant.MakeInt64(int64(q.AF_LAT))}, + "AF_LINK": {"untyped int", constant.MakeInt64(int64(q.AF_LINK))}, + "AF_LOCAL": {"untyped int", constant.MakeInt64(int64(q.AF_LOCAL))}, + "AF_MAX": {"untyped int", constant.MakeInt64(int64(q.AF_MAX))}, + "AF_NBS": {"untyped int", constant.MakeInt64(int64(q.AF_NBS))}, + "AF_NCA": {"untyped int", constant.MakeInt64(int64(q.AF_NCA))}, + "AF_NIT": {"untyped int", constant.MakeInt64(int64(q.AF_NIT))}, + "AF_NS": {"untyped int", constant.MakeInt64(int64(q.AF_NS))}, + "AF_OSI": {"untyped int", constant.MakeInt64(int64(q.AF_OSI))}, + "AF_OSINET": {"untyped int", constant.MakeInt64(int64(q.AF_OSINET))}, + "AF_PACKET": {"untyped int", constant.MakeInt64(int64(q.AF_PACKET))}, + "AF_POLICY": {"untyped int", constant.MakeInt64(int64(q.AF_POLICY))}, + "AF_PUP": {"untyped int", constant.MakeInt64(int64(q.AF_PUP))}, + "AF_ROUTE": {"untyped int", constant.MakeInt64(int64(q.AF_ROUTE))}, + "AF_SNA": {"untyped int", constant.MakeInt64(int64(q.AF_SNA))}, + "AF_TRILL": {"untyped int", constant.MakeInt64(int64(q.AF_TRILL))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AF_X25": {"untyped int", constant.MakeInt64(int64(q.AF_X25))}, + "ARPHRD_ARCNET": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ARCNET))}, + "ARPHRD_ATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ATM))}, + "ARPHRD_AX25": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_AX25))}, + "ARPHRD_CHAOS": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_CHAOS))}, + "ARPHRD_EETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_EETHER))}, + "ARPHRD_ETHER": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_ETHER))}, + "ARPHRD_FC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FC))}, + "ARPHRD_FRAME": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_FRAME))}, + "ARPHRD_HDLC": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_HDLC))}, + "ARPHRD_IB": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IB))}, + "ARPHRD_IEEE802": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IEEE802))}, + "ARPHRD_IPATM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_IPATM))}, + "ARPHRD_METRICOM": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_METRICOM))}, + "ARPHRD_TUNNEL": {"untyped int", constant.MakeInt64(int64(q.ARPHRD_TUNNEL))}, + "B0": {"untyped int", constant.MakeInt64(int64(q.B0))}, + "B110": {"untyped int", constant.MakeInt64(int64(q.B110))}, + "B115200": {"untyped int", constant.MakeInt64(int64(q.B115200))}, + "B1200": {"untyped int", constant.MakeInt64(int64(q.B1200))}, + "B134": {"untyped int", constant.MakeInt64(int64(q.B134))}, + "B150": {"untyped int", constant.MakeInt64(int64(q.B150))}, + "B153600": {"untyped int", constant.MakeInt64(int64(q.B153600))}, + "B1800": {"untyped int", constant.MakeInt64(int64(q.B1800))}, + "B19200": {"untyped int", constant.MakeInt64(int64(q.B19200))}, + "B200": {"untyped int", constant.MakeInt64(int64(q.B200))}, + "B230400": {"untyped int", constant.MakeInt64(int64(q.B230400))}, + "B2400": {"untyped int", constant.MakeInt64(int64(q.B2400))}, + "B300": {"untyped int", constant.MakeInt64(int64(q.B300))}, + "B307200": {"untyped int", constant.MakeInt64(int64(q.B307200))}, + "B38400": {"untyped int", constant.MakeInt64(int64(q.B38400))}, + "B460800": {"untyped int", constant.MakeInt64(int64(q.B460800))}, + "B4800": {"untyped int", constant.MakeInt64(int64(q.B4800))}, + "B50": {"untyped int", constant.MakeInt64(int64(q.B50))}, + "B57600": {"untyped int", constant.MakeInt64(int64(q.B57600))}, + "B600": {"untyped int", constant.MakeInt64(int64(q.B600))}, + "B75": {"untyped int", constant.MakeInt64(int64(q.B75))}, + "B76800": {"untyped int", constant.MakeInt64(int64(q.B76800))}, + "B921600": {"untyped int", constant.MakeInt64(int64(q.B921600))}, + "B9600": {"untyped int", constant.MakeInt64(int64(q.B9600))}, + "BIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.BIOCFLUSH))}, + "BIOCGBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCGBLEN))}, + "BIOCGDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLT))}, + "BIOCGDLTLIST": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST))}, + "BIOCGDLTLIST32": {"untyped int", constant.MakeInt64(int64(q.BIOCGDLTLIST32))}, + "BIOCGETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETIF))}, + "BIOCGETLIF": {"untyped int", constant.MakeInt64(int64(q.BIOCGETLIF))}, + "BIOCGHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCGHDRCMPLT))}, + "BIOCGRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT))}, + "BIOCGRTIMEOUT32": {"untyped int", constant.MakeInt64(int64(q.BIOCGRTIMEOUT32))}, + "BIOCGSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCGSEESENT))}, + "BIOCGSTATS": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATS))}, + "BIOCGSTATSOLD": {"untyped int", constant.MakeInt64(int64(q.BIOCGSTATSOLD))}, + "BIOCIMMEDIATE": {"untyped int", constant.MakeInt64(int64(q.BIOCIMMEDIATE))}, + "BIOCPROMISC": {"untyped int", constant.MakeInt64(int64(q.BIOCPROMISC))}, + "BIOCSBLEN": {"untyped int", constant.MakeInt64(int64(q.BIOCSBLEN))}, + "BIOCSDLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSDLT))}, + "BIOCSETF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF))}, + "BIOCSETF32": {"untyped int", constant.MakeInt64(int64(q.BIOCSETF32))}, + "BIOCSETIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETIF))}, + "BIOCSETLIF": {"untyped int", constant.MakeInt64(int64(q.BIOCSETLIF))}, + "BIOCSHDRCMPLT": {"untyped int", constant.MakeInt64(int64(q.BIOCSHDRCMPLT))}, + "BIOCSRTIMEOUT": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT))}, + "BIOCSRTIMEOUT32": {"untyped int", constant.MakeInt64(int64(q.BIOCSRTIMEOUT32))}, + "BIOCSSEESENT": {"untyped int", constant.MakeInt64(int64(q.BIOCSSEESENT))}, + "BIOCSTCPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSTCPF))}, + "BIOCSUDPF": {"untyped int", constant.MakeInt64(int64(q.BIOCSUDPF))}, + "BIOCVERSION": {"untyped int", constant.MakeInt64(int64(q.BIOCVERSION))}, + "BPF_A": {"untyped int", constant.MakeInt64(int64(q.BPF_A))}, + "BPF_ABS": {"untyped int", constant.MakeInt64(int64(q.BPF_ABS))}, + "BPF_ADD": {"untyped int", constant.MakeInt64(int64(q.BPF_ADD))}, + "BPF_ALIGNMENT": {"untyped int", constant.MakeInt64(int64(q.BPF_ALIGNMENT))}, + "BPF_ALU": {"untyped int", constant.MakeInt64(int64(q.BPF_ALU))}, + "BPF_AND": {"untyped int", constant.MakeInt64(int64(q.BPF_AND))}, + "BPF_B": {"untyped int", constant.MakeInt64(int64(q.BPF_B))}, + "BPF_DFLTBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_DFLTBUFSIZE))}, + "BPF_DIV": {"untyped int", constant.MakeInt64(int64(q.BPF_DIV))}, + "BPF_H": {"untyped int", constant.MakeInt64(int64(q.BPF_H))}, + "BPF_IMM": {"untyped int", constant.MakeInt64(int64(q.BPF_IMM))}, + "BPF_IND": {"untyped int", constant.MakeInt64(int64(q.BPF_IND))}, + "BPF_JA": {"untyped int", constant.MakeInt64(int64(q.BPF_JA))}, + "BPF_JEQ": {"untyped int", constant.MakeInt64(int64(q.BPF_JEQ))}, + "BPF_JGE": {"untyped int", constant.MakeInt64(int64(q.BPF_JGE))}, + "BPF_JGT": {"untyped int", constant.MakeInt64(int64(q.BPF_JGT))}, + "BPF_JMP": {"untyped int", constant.MakeInt64(int64(q.BPF_JMP))}, + "BPF_JSET": {"untyped int", constant.MakeInt64(int64(q.BPF_JSET))}, + "BPF_K": {"untyped int", constant.MakeInt64(int64(q.BPF_K))}, + "BPF_LD": {"untyped int", constant.MakeInt64(int64(q.BPF_LD))}, + "BPF_LDX": {"untyped int", constant.MakeInt64(int64(q.BPF_LDX))}, + "BPF_LEN": {"untyped int", constant.MakeInt64(int64(q.BPF_LEN))}, + "BPF_LSH": {"untyped int", constant.MakeInt64(int64(q.BPF_LSH))}, + "BPF_MAJOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MAJOR_VERSION))}, + "BPF_MAXBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXBUFSIZE))}, + "BPF_MAXINSNS": {"untyped int", constant.MakeInt64(int64(q.BPF_MAXINSNS))}, + "BPF_MEM": {"untyped int", constant.MakeInt64(int64(q.BPF_MEM))}, + "BPF_MEMWORDS": {"untyped int", constant.MakeInt64(int64(q.BPF_MEMWORDS))}, + "BPF_MINBUFSIZE": {"untyped int", constant.MakeInt64(int64(q.BPF_MINBUFSIZE))}, + "BPF_MINOR_VERSION": {"untyped int", constant.MakeInt64(int64(q.BPF_MINOR_VERSION))}, + "BPF_MISC": {"untyped int", constant.MakeInt64(int64(q.BPF_MISC))}, + "BPF_MSH": {"untyped int", constant.MakeInt64(int64(q.BPF_MSH))}, + "BPF_MUL": {"untyped int", constant.MakeInt64(int64(q.BPF_MUL))}, + "BPF_NEG": {"untyped int", constant.MakeInt64(int64(q.BPF_NEG))}, + "BPF_OR": {"untyped int", constant.MakeInt64(int64(q.BPF_OR))}, + "BPF_RELEASE": {"untyped int", constant.MakeInt64(int64(q.BPF_RELEASE))}, + "BPF_RET": {"untyped int", constant.MakeInt64(int64(q.BPF_RET))}, + "BPF_RSH": {"untyped int", constant.MakeInt64(int64(q.BPF_RSH))}, + "BPF_ST": {"untyped int", constant.MakeInt64(int64(q.BPF_ST))}, + "BPF_STX": {"untyped int", constant.MakeInt64(int64(q.BPF_STX))}, + "BPF_SUB": {"untyped int", constant.MakeInt64(int64(q.BPF_SUB))}, + "BPF_TAX": {"untyped int", constant.MakeInt64(int64(q.BPF_TAX))}, + "BPF_TXA": {"untyped int", constant.MakeInt64(int64(q.BPF_TXA))}, + "BPF_W": {"untyped int", constant.MakeInt64(int64(q.BPF_W))}, + "BPF_X": {"untyped int", constant.MakeInt64(int64(q.BPF_X))}, + "BRKINT": {"untyped int", constant.MakeInt64(int64(q.BRKINT))}, + "CFLUSH": {"untyped int", constant.MakeInt64(int64(q.CFLUSH))}, + "CLOCAL": {"untyped int", constant.MakeInt64(int64(q.CLOCAL))}, + "CREAD": {"untyped int", constant.MakeInt64(int64(q.CREAD))}, + "CS5": {"untyped int", constant.MakeInt64(int64(q.CS5))}, + "CS6": {"untyped int", constant.MakeInt64(int64(q.CS6))}, + "CS7": {"untyped int", constant.MakeInt64(int64(q.CS7))}, + "CS8": {"untyped int", constant.MakeInt64(int64(q.CS8))}, + "CSIZE": {"untyped int", constant.MakeInt64(int64(q.CSIZE))}, + "CSTART": {"untyped int", constant.MakeInt64(int64(q.CSTART))}, + "CSTOP": {"untyped int", constant.MakeInt64(int64(q.CSTOP))}, + "CSTOPB": {"untyped int", constant.MakeInt64(int64(q.CSTOPB))}, + "CSUSP": {"untyped int", constant.MakeInt64(int64(q.CSUSP))}, + "CSWTCH": {"untyped int", constant.MakeInt64(int64(q.CSWTCH))}, + "DLT_AIRONET_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_AIRONET_HEADER))}, + "DLT_APPLE_IP_OVER_IEEE1394": {"untyped int", constant.MakeInt64(int64(q.DLT_APPLE_IP_OVER_IEEE1394))}, + "DLT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET))}, + "DLT_ARCNET_LINUX": {"untyped int", constant.MakeInt64(int64(q.DLT_ARCNET_LINUX))}, + "DLT_ATM_CLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_CLIP))}, + "DLT_ATM_RFC1483": {"untyped int", constant.MakeInt64(int64(q.DLT_ATM_RFC1483))}, + "DLT_AURORA": {"untyped int", constant.MakeInt64(int64(q.DLT_AURORA))}, + "DLT_AX25": {"untyped int", constant.MakeInt64(int64(q.DLT_AX25))}, + "DLT_BACNET_MS_TP": {"untyped int", constant.MakeInt64(int64(q.DLT_BACNET_MS_TP))}, + "DLT_CHAOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CHAOS))}, + "DLT_CISCO_IOS": {"untyped int", constant.MakeInt64(int64(q.DLT_CISCO_IOS))}, + "DLT_C_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_C_HDLC))}, + "DLT_DOCSIS": {"untyped int", constant.MakeInt64(int64(q.DLT_DOCSIS))}, + "DLT_ECONET": {"untyped int", constant.MakeInt64(int64(q.DLT_ECONET))}, + "DLT_EN10MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN10MB))}, + "DLT_EN3MB": {"untyped int", constant.MakeInt64(int64(q.DLT_EN3MB))}, + "DLT_ENC": {"untyped int", constant.MakeInt64(int64(q.DLT_ENC))}, + "DLT_ERF_ETH": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_ETH))}, + "DLT_ERF_POS": {"untyped int", constant.MakeInt64(int64(q.DLT_ERF_POS))}, + "DLT_FDDI": {"untyped int", constant.MakeInt64(int64(q.DLT_FDDI))}, + "DLT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_FRELAY))}, + "DLT_GCOM_SERIAL": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_SERIAL))}, + "DLT_GCOM_T1E1": {"untyped int", constant.MakeInt64(int64(q.DLT_GCOM_T1E1))}, + "DLT_GPF_F": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_F))}, + "DLT_GPF_T": {"untyped int", constant.MakeInt64(int64(q.DLT_GPF_T))}, + "DLT_GPRS_LLC": {"untyped int", constant.MakeInt64(int64(q.DLT_GPRS_LLC))}, + "DLT_HDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HDLC))}, + "DLT_HHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_HHDLC))}, + "DLT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.DLT_HIPPI))}, + "DLT_IBM_SN": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SN))}, + "DLT_IBM_SP": {"untyped int", constant.MakeInt64(int64(q.DLT_IBM_SP))}, + "DLT_IEEE802": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802))}, + "DLT_IEEE802_11": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11))}, + "DLT_IEEE802_11_RADIO": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO))}, + "DLT_IEEE802_11_RADIO_AVS": {"untyped int", constant.MakeInt64(int64(q.DLT_IEEE802_11_RADIO_AVS))}, + "DLT_IPNET": {"untyped int", constant.MakeInt64(int64(q.DLT_IPNET))}, + "DLT_IPOIB": {"untyped int", constant.MakeInt64(int64(q.DLT_IPOIB))}, + "DLT_IP_OVER_FC": {"untyped int", constant.MakeInt64(int64(q.DLT_IP_OVER_FC))}, + "DLT_JUNIPER_ATM1": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM1))}, + "DLT_JUNIPER_ATM2": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ATM2))}, + "DLT_JUNIPER_CHDLC": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_CHDLC))}, + "DLT_JUNIPER_ES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ES))}, + "DLT_JUNIPER_ETHER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_ETHER))}, + "DLT_JUNIPER_FRELAY": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_FRELAY))}, + "DLT_JUNIPER_GGSN": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_GGSN))}, + "DLT_JUNIPER_MFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MFR))}, + "DLT_JUNIPER_MLFR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLFR))}, + "DLT_JUNIPER_MLPPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MLPPP))}, + "DLT_JUNIPER_MONITOR": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_MONITOR))}, + "DLT_JUNIPER_PIC_PEER": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PIC_PEER))}, + "DLT_JUNIPER_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPP))}, + "DLT_JUNIPER_PPPOE": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE))}, + "DLT_JUNIPER_PPPOE_ATM": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_PPPOE_ATM))}, + "DLT_JUNIPER_SERVICES": {"untyped int", constant.MakeInt64(int64(q.DLT_JUNIPER_SERVICES))}, + "DLT_LINUX_IRDA": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_IRDA))}, + "DLT_LINUX_LAPD": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_LAPD))}, + "DLT_LINUX_SLL": {"untyped int", constant.MakeInt64(int64(q.DLT_LINUX_SLL))}, + "DLT_LOOP": {"untyped int", constant.MakeInt64(int64(q.DLT_LOOP))}, + "DLT_LTALK": {"untyped int", constant.MakeInt64(int64(q.DLT_LTALK))}, + "DLT_MTP2": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2))}, + "DLT_MTP2_WITH_PHDR": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP2_WITH_PHDR))}, + "DLT_MTP3": {"untyped int", constant.MakeInt64(int64(q.DLT_MTP3))}, + "DLT_NULL": {"untyped int", constant.MakeInt64(int64(q.DLT_NULL))}, + "DLT_PCI_EXP": {"untyped int", constant.MakeInt64(int64(q.DLT_PCI_EXP))}, + "DLT_PFLOG": {"untyped int", constant.MakeInt64(int64(q.DLT_PFLOG))}, + "DLT_PFSYNC": {"untyped int", constant.MakeInt64(int64(q.DLT_PFSYNC))}, + "DLT_PPP": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP))}, + "DLT_PPP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_BSDOS))}, + "DLT_PPP_PPPD": {"untyped int", constant.MakeInt64(int64(q.DLT_PPP_PPPD))}, + "DLT_PRISM_HEADER": {"untyped int", constant.MakeInt64(int64(q.DLT_PRISM_HEADER))}, + "DLT_PRONET": {"untyped int", constant.MakeInt64(int64(q.DLT_PRONET))}, + "DLT_RAW": {"untyped int", constant.MakeInt64(int64(q.DLT_RAW))}, + "DLT_RAWAF_MASK": {"untyped int", constant.MakeInt64(int64(q.DLT_RAWAF_MASK))}, + "DLT_RIO": {"untyped int", constant.MakeInt64(int64(q.DLT_RIO))}, + "DLT_SCCP": {"untyped int", constant.MakeInt64(int64(q.DLT_SCCP))}, + "DLT_SLIP": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP))}, + "DLT_SLIP_BSDOS": {"untyped int", constant.MakeInt64(int64(q.DLT_SLIP_BSDOS))}, + "DLT_SUNATM": {"untyped int", constant.MakeInt64(int64(q.DLT_SUNATM))}, + "DLT_SYMANTEC_FIREWALL": {"untyped int", constant.MakeInt64(int64(q.DLT_SYMANTEC_FIREWALL))}, + "DLT_TZSP": {"untyped int", constant.MakeInt64(int64(q.DLT_TZSP))}, + "ECHO": {"untyped int", constant.MakeInt64(int64(q.ECHO))}, + "ECHOCTL": {"untyped int", constant.MakeInt64(int64(q.ECHOCTL))}, + "ECHOE": {"untyped int", constant.MakeInt64(int64(q.ECHOE))}, + "ECHOK": {"untyped int", constant.MakeInt64(int64(q.ECHOK))}, + "ECHOKE": {"untyped int", constant.MakeInt64(int64(q.ECHOKE))}, + "ECHONL": {"untyped int", constant.MakeInt64(int64(q.ECHONL))}, + "ECHOPRT": {"untyped int", constant.MakeInt64(int64(q.ECHOPRT))}, + "EMPTY_SET": {"untyped int", constant.MakeInt64(int64(q.EMPTY_SET))}, + "EMT_CPCOVF": {"untyped int", constant.MakeInt64(int64(q.EMT_CPCOVF))}, + "EQUALITY_CHECK": {"untyped int", constant.MakeInt64(int64(q.EQUALITY_CHECK))}, + "EXTA": {"untyped int", constant.MakeInt64(int64(q.EXTA))}, + "EXTB": {"untyped int", constant.MakeInt64(int64(q.EXTB))}, + "FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.FD_CLOEXEC))}, + "FD_NFDBITS": {"untyped int", constant.MakeInt64(int64(q.FD_NFDBITS))}, + "FD_SETSIZE": {"untyped int", constant.MakeInt64(int64(q.FD_SETSIZE))}, + "FLUSHALL": {"untyped int", constant.MakeInt64(int64(q.FLUSHALL))}, + "FLUSHDATA": {"untyped int", constant.MakeInt64(int64(q.FLUSHDATA))}, + "FLUSHO": {"untyped int", constant.MakeInt64(int64(q.FLUSHO))}, + "F_ALLOCSP": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCSP))}, + "F_ALLOCSP64": {"untyped int", constant.MakeInt64(int64(q.F_ALLOCSP64))}, + "F_BADFD": {"untyped int", constant.MakeInt64(int64(q.F_BADFD))}, + "F_BLKSIZE": {"untyped int", constant.MakeInt64(int64(q.F_BLKSIZE))}, + "F_BLOCKS": {"untyped int", constant.MakeInt64(int64(q.F_BLOCKS))}, + "F_CHKFL": {"untyped int", constant.MakeInt64(int64(q.F_CHKFL))}, + "F_COMPAT": {"untyped int", constant.MakeInt64(int64(q.F_COMPAT))}, + "F_DUP2FD": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD))}, + "F_DUP2FD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUP2FD_CLOEXEC))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_FREESP": {"untyped int", constant.MakeInt64(int64(q.F_FREESP))}, + "F_FREESP64": {"untyped int", constant.MakeInt64(int64(q.F_FREESP64))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETLK64": {"untyped int", constant.MakeInt64(int64(q.F_GETLK64))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_GETXFL": {"untyped int", constant.MakeInt64(int64(q.F_GETXFL))}, + "F_HASREMOTELOCKS": {"untyped int", constant.MakeInt64(int64(q.F_HASREMOTELOCKS))}, + "F_ISSTREAM": {"untyped int", constant.MakeInt64(int64(q.F_ISSTREAM))}, + "F_MANDDNY": {"untyped int", constant.MakeInt64(int64(q.F_MANDDNY))}, + "F_MDACC": {"untyped int", constant.MakeInt64(int64(q.F_MDACC))}, + "F_NODNY": {"untyped int", constant.MakeInt64(int64(q.F_NODNY))}, + "F_NPRIV": {"untyped int", constant.MakeInt64(int64(q.F_NPRIV))}, + "F_PRIV": {"untyped int", constant.MakeInt64(int64(q.F_PRIV))}, + "F_QUOTACTL": {"untyped int", constant.MakeInt64(int64(q.F_QUOTACTL))}, + "F_RDACC": {"untyped int", constant.MakeInt64(int64(q.F_RDACC))}, + "F_RDDNY": {"untyped int", constant.MakeInt64(int64(q.F_RDDNY))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_REVOKE": {"untyped int", constant.MakeInt64(int64(q.F_REVOKE))}, + "F_RMACC": {"untyped int", constant.MakeInt64(int64(q.F_RMACC))}, + "F_RMDNY": {"untyped int", constant.MakeInt64(int64(q.F_RMDNY))}, + "F_RWACC": {"untyped int", constant.MakeInt64(int64(q.F_RWACC))}, + "F_RWDNY": {"untyped int", constant.MakeInt64(int64(q.F_RWDNY))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLK64": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64))}, + "F_SETLK64_NBMAND": {"untyped int", constant.MakeInt64(int64(q.F_SETLK64_NBMAND))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETLKW64": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW64))}, + "F_SETLK_NBMAND": {"untyped int", constant.MakeInt64(int64(q.F_SETLK_NBMAND))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_SHARE": {"untyped int", constant.MakeInt64(int64(q.F_SHARE))}, + "F_SHARE_NBMAND": {"untyped int", constant.MakeInt64(int64(q.F_SHARE_NBMAND))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_UNLKSYS": {"untyped int", constant.MakeInt64(int64(q.F_UNLKSYS))}, + "F_UNSHARE": {"untyped int", constant.MakeInt64(int64(q.F_UNSHARE))}, + "F_WRACC": {"untyped int", constant.MakeInt64(int64(q.F_WRACC))}, + "F_WRDNY": {"untyped int", constant.MakeInt64(int64(q.F_WRDNY))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "HUPCL": {"untyped int", constant.MakeInt64(int64(q.HUPCL))}, + "ICANON": {"untyped int", constant.MakeInt64(int64(q.ICANON))}, + "ICRNL": {"untyped int", constant.MakeInt64(int64(q.ICRNL))}, + "IEXTEN": {"untyped int", constant.MakeInt64(int64(q.IEXTEN))}, + "IFF_ADDRCONF": {"untyped int", constant.MakeInt64(int64(q.IFF_ADDRCONF))}, + "IFF_ALLMULTI": {"untyped int", constant.MakeInt64(int64(q.IFF_ALLMULTI))}, + "IFF_ANYCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_ANYCAST))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_CANTCHANGE))}, + "IFF_COS_ENABLED": {"untyped int", constant.MakeInt64(int64(q.IFF_COS_ENABLED))}, + "IFF_DEBUG": {"untyped int", constant.MakeInt64(int64(q.IFF_DEBUG))}, + "IFF_DEPRECATED": {"untyped int", constant.MakeInt64(int64(q.IFF_DEPRECATED))}, + "IFF_DHCPRUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_DHCPRUNNING))}, + "IFF_DUPLICATE": {"untyped int", constant.MakeInt64(int64(q.IFF_DUPLICATE))}, + "IFF_FAILED": {"untyped int", constant.MakeInt64(int64(q.IFF_FAILED))}, + "IFF_FIXEDMTU": {"untyped int", constant.MakeInt64(int64(q.IFF_FIXEDMTU))}, + "IFF_INACTIVE": {"untyped int", constant.MakeInt64(int64(q.IFF_INACTIVE))}, + "IFF_INTELLIGENT": {"untyped int", constant.MakeInt64(int64(q.IFF_INTELLIGENT))}, + "IFF_IPMP": {"untyped int", constant.MakeInt64(int64(q.IFF_IPMP))}, + "IFF_IPMP_CANTCHANGE": {"untyped int", constant.MakeInt64(int64(q.IFF_IPMP_CANTCHANGE))}, + "IFF_IPMP_INVALID": {"untyped int", constant.MakeInt64(int64(q.IFF_IPMP_INVALID))}, + "IFF_IPV4": {"untyped int", constant.MakeInt64(int64(q.IFF_IPV4))}, + "IFF_IPV6": {"untyped int", constant.MakeInt64(int64(q.IFF_IPV6))}, + "IFF_L3PROTECT": {"untyped int", constant.MakeInt64(int64(q.IFF_L3PROTECT))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_MULTI_BCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTI_BCAST))}, + "IFF_NOACCEPT": {"untyped int", constant.MakeInt64(int64(q.IFF_NOACCEPT))}, + "IFF_NOARP": {"untyped int", constant.MakeInt64(int64(q.IFF_NOARP))}, + "IFF_NOFAILOVER": {"untyped int", constant.MakeInt64(int64(q.IFF_NOFAILOVER))}, + "IFF_NOLINKLOCAL": {"untyped int", constant.MakeInt64(int64(q.IFF_NOLINKLOCAL))}, + "IFF_NOLOCAL": {"untyped int", constant.MakeInt64(int64(q.IFF_NOLOCAL))}, + "IFF_NONUD": {"untyped int", constant.MakeInt64(int64(q.IFF_NONUD))}, + "IFF_NORTEXCH": {"untyped int", constant.MakeInt64(int64(q.IFF_NORTEXCH))}, + "IFF_NOTRAILERS": {"untyped int", constant.MakeInt64(int64(q.IFF_NOTRAILERS))}, + "IFF_NOXMIT": {"untyped int", constant.MakeInt64(int64(q.IFF_NOXMIT))}, + "IFF_OFFLINE": {"untyped int", constant.MakeInt64(int64(q.IFF_OFFLINE))}, + "IFF_POINTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTOPOINT))}, + "IFF_PREFERRED": {"untyped int", constant.MakeInt64(int64(q.IFF_PREFERRED))}, + "IFF_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.IFF_PRIVATE))}, + "IFF_PROMISC": {"untyped int", constant.MakeInt64(int64(q.IFF_PROMISC))}, + "IFF_ROUTER": {"untyped int", constant.MakeInt64(int64(q.IFF_ROUTER))}, + "IFF_RUNNING": {"untyped int", constant.MakeInt64(int64(q.IFF_RUNNING))}, + "IFF_STANDBY": {"untyped int", constant.MakeInt64(int64(q.IFF_STANDBY))}, + "IFF_TEMPORARY": {"untyped int", constant.MakeInt64(int64(q.IFF_TEMPORARY))}, + "IFF_UNNUMBERED": {"untyped int", constant.MakeInt64(int64(q.IFF_UNNUMBERED))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IFF_VIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFF_VIRTUAL))}, + "IFF_VRRP": {"untyped int", constant.MakeInt64(int64(q.IFF_VRRP))}, + "IFF_XRESOLV": {"untyped int", constant.MakeInt64(int64(q.IFF_XRESOLV))}, + "IFNAMSIZ": {"untyped int", constant.MakeInt64(int64(q.IFNAMSIZ))}, + "IFT_1822": {"untyped int", constant.MakeInt64(int64(q.IFT_1822))}, + "IFT_6TO4": {"untyped int", constant.MakeInt64(int64(q.IFT_6TO4))}, + "IFT_AAL5": {"untyped int", constant.MakeInt64(int64(q.IFT_AAL5))}, + "IFT_ARCNET": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNET))}, + "IFT_ARCNETPLUS": {"untyped int", constant.MakeInt64(int64(q.IFT_ARCNETPLUS))}, + "IFT_ATM": {"untyped int", constant.MakeInt64(int64(q.IFT_ATM))}, + "IFT_CEPT": {"untyped int", constant.MakeInt64(int64(q.IFT_CEPT))}, + "IFT_DS3": {"untyped int", constant.MakeInt64(int64(q.IFT_DS3))}, + "IFT_EON": {"untyped int", constant.MakeInt64(int64(q.IFT_EON))}, + "IFT_ETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_ETHER))}, + "IFT_FDDI": {"untyped int", constant.MakeInt64(int64(q.IFT_FDDI))}, + "IFT_FRELAY": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAY))}, + "IFT_FRELAYDCE": {"untyped int", constant.MakeInt64(int64(q.IFT_FRELAYDCE))}, + "IFT_HDH1822": {"untyped int", constant.MakeInt64(int64(q.IFT_HDH1822))}, + "IFT_HIPPI": {"untyped int", constant.MakeInt64(int64(q.IFT_HIPPI))}, + "IFT_HSSI": {"untyped int", constant.MakeInt64(int64(q.IFT_HSSI))}, + "IFT_HY": {"untyped int", constant.MakeInt64(int64(q.IFT_HY))}, + "IFT_IB": {"untyped int", constant.MakeInt64(int64(q.IFT_IB))}, + "IFT_IPV4": {"untyped int", constant.MakeInt64(int64(q.IFT_IPV4))}, + "IFT_IPV6": {"untyped int", constant.MakeInt64(int64(q.IFT_IPV6))}, + "IFT_ISDNBASIC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNBASIC))}, + "IFT_ISDNPRIMARY": {"untyped int", constant.MakeInt64(int64(q.IFT_ISDNPRIMARY))}, + "IFT_ISO88022LLC": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88022LLC))}, + "IFT_ISO88023": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88023))}, + "IFT_ISO88024": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88024))}, + "IFT_ISO88025": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88025))}, + "IFT_ISO88026": {"untyped int", constant.MakeInt64(int64(q.IFT_ISO88026))}, + "IFT_LAPB": {"untyped int", constant.MakeInt64(int64(q.IFT_LAPB))}, + "IFT_LOCALTALK": {"untyped int", constant.MakeInt64(int64(q.IFT_LOCALTALK))}, + "IFT_LOOP": {"untyped int", constant.MakeInt64(int64(q.IFT_LOOP))}, + "IFT_MIOX25": {"untyped int", constant.MakeInt64(int64(q.IFT_MIOX25))}, + "IFT_MODEM": {"untyped int", constant.MakeInt64(int64(q.IFT_MODEM))}, + "IFT_NSIP": {"untyped int", constant.MakeInt64(int64(q.IFT_NSIP))}, + "IFT_OTHER": {"untyped int", constant.MakeInt64(int64(q.IFT_OTHER))}, + "IFT_P10": {"untyped int", constant.MakeInt64(int64(q.IFT_P10))}, + "IFT_P80": {"untyped int", constant.MakeInt64(int64(q.IFT_P80))}, + "IFT_PARA": {"untyped int", constant.MakeInt64(int64(q.IFT_PARA))}, + "IFT_PPP": {"untyped int", constant.MakeInt64(int64(q.IFT_PPP))}, + "IFT_PROPMUX": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPMUX))}, + "IFT_PROPVIRTUAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PROPVIRTUAL))}, + "IFT_PTPSERIAL": {"untyped int", constant.MakeInt64(int64(q.IFT_PTPSERIAL))}, + "IFT_RS232": {"untyped int", constant.MakeInt64(int64(q.IFT_RS232))}, + "IFT_SDLC": {"untyped int", constant.MakeInt64(int64(q.IFT_SDLC))}, + "IFT_SIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SIP))}, + "IFT_SLIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SLIP))}, + "IFT_SMDSDXI": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSDXI))}, + "IFT_SMDSICIP": {"untyped int", constant.MakeInt64(int64(q.IFT_SMDSICIP))}, + "IFT_SONET": {"untyped int", constant.MakeInt64(int64(q.IFT_SONET))}, + "IFT_SONETPATH": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETPATH))}, + "IFT_SONETVT": {"untyped int", constant.MakeInt64(int64(q.IFT_SONETVT))}, + "IFT_STARLAN": {"untyped int", constant.MakeInt64(int64(q.IFT_STARLAN))}, + "IFT_T1": {"untyped int", constant.MakeInt64(int64(q.IFT_T1))}, + "IFT_ULTRA": {"untyped int", constant.MakeInt64(int64(q.IFT_ULTRA))}, + "IFT_V35": {"untyped int", constant.MakeInt64(int64(q.IFT_V35))}, + "IFT_X25": {"untyped int", constant.MakeInt64(int64(q.IFT_X25))}, + "IFT_X25DDN": {"untyped int", constant.MakeInt64(int64(q.IFT_X25DDN))}, + "IFT_X25PLE": {"untyped int", constant.MakeInt64(int64(q.IFT_X25PLE))}, + "IFT_XETHER": {"untyped int", constant.MakeInt64(int64(q.IFT_XETHER))}, + "IGNBRK": {"untyped int", constant.MakeInt64(int64(q.IGNBRK))}, + "IGNCR": {"untyped int", constant.MakeInt64(int64(q.IGNCR))}, + "IGNPAR": {"untyped int", constant.MakeInt64(int64(q.IGNPAR))}, + "IMAXBEL": {"untyped int", constant.MakeInt64(int64(q.IMAXBEL))}, + "INLCR": {"untyped int", constant.MakeInt64(int64(q.INLCR))}, + "INPCK": {"untyped int", constant.MakeInt64(int64(q.INPCK))}, + "IN_AUTOCONF_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_AUTOCONF_MASK))}, + "IN_AUTOCONF_NET": {"untyped int", constant.MakeInt64(int64(q.IN_AUTOCONF_NET))}, + "IN_CLASSA_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_HOST))}, + "IN_CLASSA_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_MAX))}, + "IN_CLASSA_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NET))}, + "IN_CLASSA_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSA_NSHIFT))}, + "IN_CLASSB_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_HOST))}, + "IN_CLASSB_MAX": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_MAX))}, + "IN_CLASSB_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NET))}, + "IN_CLASSB_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSB_NSHIFT))}, + "IN_CLASSC_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_HOST))}, + "IN_CLASSC_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NET))}, + "IN_CLASSC_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSC_NSHIFT))}, + "IN_CLASSD_HOST": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_HOST))}, + "IN_CLASSD_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NET))}, + "IN_CLASSD_NSHIFT": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSD_NSHIFT))}, + "IN_CLASSE_NET": {"untyped int", constant.MakeInt64(int64(q.IN_CLASSE_NET))}, + "IN_LOOPBACKNET": {"untyped int", constant.MakeInt64(int64(q.IN_LOOPBACKNET))}, + "IN_PRIVATE12_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE12_MASK))}, + "IN_PRIVATE12_NET": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE12_NET))}, + "IN_PRIVATE16_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE16_MASK))}, + "IN_PRIVATE16_NET": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE16_NET))}, + "IN_PRIVATE8_MASK": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE8_MASK))}, + "IN_PRIVATE8_NET": {"untyped int", constant.MakeInt64(int64(q.IN_PRIVATE8_NET))}, + "IPPROTO_AH": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_AH))}, + "IPPROTO_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_DSTOPTS))}, + "IPPROTO_EGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EGP))}, + "IPPROTO_ENCAP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ENCAP))}, + "IPPROTO_EON": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_EON))}, + "IPPROTO_ESP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ESP))}, + "IPPROTO_FRAGMENT": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_FRAGMENT))}, + "IPPROTO_GGP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_GGP))}, + "IPPROTO_HELLO": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HELLO))}, + "IPPROTO_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_HOPOPTS))}, + "IPPROTO_ICMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMP))}, + "IPPROTO_ICMPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ICMPV6))}, + "IPPROTO_IDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IDP))}, + "IPPROTO_IGMP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IGMP))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_MAX": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_MAX))}, + "IPPROTO_ND": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ND))}, + "IPPROTO_NONE": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_NONE))}, + "IPPROTO_OSPF": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_OSPF))}, + "IPPROTO_PIM": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PIM))}, + "IPPROTO_PUP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_PUP))}, + "IPPROTO_RAW": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RAW))}, + "IPPROTO_ROUTING": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_ROUTING))}, + "IPPROTO_RSVP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_RSVP))}, + "IPPROTO_SCTP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_SCTP))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_ADD_MEMBERSHIP))}, + "IPV6_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_BOUND_IF))}, + "IPV6_CHECKSUM": {"untyped int", constant.MakeInt64(int64(q.IPV6_CHECKSUM))}, + "IPV6_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IPV6_DONTFRAG))}, + "IPV6_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IPV6_DROP_MEMBERSHIP))}, + "IPV6_DSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_DSTOPTS))}, + "IPV6_FLOWINFO_FLOWLABEL": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_FLOWLABEL))}, + "IPV6_FLOWINFO_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_FLOWINFO_TCLASS))}, + "IPV6_HOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPLIMIT))}, + "IPV6_HOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_HOPOPTS))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_NEXTHOP))}, + "IPV6_PAD1_OPT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PAD1_OPT))}, + "IPV6_PATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_PATHMTU))}, + "IPV6_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_PKTINFO))}, + "IPV6_PREFER_SRC_CGA": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_CGA))}, + "IPV6_PREFER_SRC_CGADEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_CGADEFAULT))}, + "IPV6_PREFER_SRC_CGAMASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_CGAMASK))}, + "IPV6_PREFER_SRC_COA": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_COA))}, + "IPV6_PREFER_SRC_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_DEFAULT))}, + "IPV6_PREFER_SRC_HOME": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_HOME))}, + "IPV6_PREFER_SRC_MASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_MASK))}, + "IPV6_PREFER_SRC_MIPDEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_MIPDEFAULT))}, + "IPV6_PREFER_SRC_MIPMASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_MIPMASK))}, + "IPV6_PREFER_SRC_NONCGA": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_NONCGA))}, + "IPV6_PREFER_SRC_PUBLIC": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_PUBLIC))}, + "IPV6_PREFER_SRC_TMP": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_TMP))}, + "IPV6_PREFER_SRC_TMPDEFAULT": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_TMPDEFAULT))}, + "IPV6_PREFER_SRC_TMPMASK": {"untyped int", constant.MakeInt64(int64(q.IPV6_PREFER_SRC_TMPMASK))}, + "IPV6_RECVDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVDSTOPTS))}, + "IPV6_RECVHOPLIMIT": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPLIMIT))}, + "IPV6_RECVHOPOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVHOPOPTS))}, + "IPV6_RECVPATHMTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPATHMTU))}, + "IPV6_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVPKTINFO))}, + "IPV6_RECVRTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDR))}, + "IPV6_RECVRTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVRTHDRDSTOPTS))}, + "IPV6_RECVTCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RECVTCLASS))}, + "IPV6_RTHDR": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR))}, + "IPV6_RTHDRDSTOPTS": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDRDSTOPTS))}, + "IPV6_RTHDR_TYPE_0": {"untyped int", constant.MakeInt64(int64(q.IPV6_RTHDR_TYPE_0))}, + "IPV6_SEC_OPT": {"untyped int", constant.MakeInt64(int64(q.IPV6_SEC_OPT))}, + "IPV6_SRC_PREFERENCES": {"untyped int", constant.MakeInt64(int64(q.IPV6_SRC_PREFERENCES))}, + "IPV6_TCLASS": {"untyped int", constant.MakeInt64(int64(q.IPV6_TCLASS))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_UNSPEC_SRC": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNSPEC_SRC))}, + "IPV6_USE_MIN_MTU": {"untyped int", constant.MakeInt64(int64(q.IPV6_USE_MIN_MTU))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_ADD_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_SOURCE_MEMBERSHIP))}, + "IP_BLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_BLOCK_SOURCE))}, + "IP_BOUND_IF": {"untyped int", constant.MakeInt64(int64(q.IP_BOUND_IF))}, + "IP_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IP_BROADCAST))}, + "IP_BROADCAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_BROADCAST_TTL))}, + "IP_DEFAULT_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_LOOP))}, + "IP_DEFAULT_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_DEFAULT_MULTICAST_TTL))}, + "IP_DF": {"untyped int", constant.MakeInt64(int64(q.IP_DF))}, + "IP_DHCPINIT_IF": {"untyped int", constant.MakeInt64(int64(q.IP_DHCPINIT_IF))}, + "IP_DONTFRAG": {"untyped int", constant.MakeInt64(int64(q.IP_DONTFRAG))}, + "IP_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.IP_DONTROUTE))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_DROP_SOURCE_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_SOURCE_MEMBERSHIP))}, + "IP_HDRINCL": {"untyped int", constant.MakeInt64(int64(q.IP_HDRINCL))}, + "IP_MAXPACKET": {"untyped int", constant.MakeInt64(int64(q.IP_MAXPACKET))}, + "IP_MF": {"untyped int", constant.MakeInt64(int64(q.IP_MF))}, + "IP_MSS": {"untyped int", constant.MakeInt64(int64(q.IP_MSS))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_NEXTHOP": {"untyped int", constant.MakeInt64(int64(q.IP_NEXTHOP))}, + "IP_OPTIONS": {"untyped int", constant.MakeInt64(int64(q.IP_OPTIONS))}, + "IP_PKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_PKTINFO))}, + "IP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.IP_RECVDSTADDR))}, + "IP_RECVIF": {"untyped int", constant.MakeInt64(int64(q.IP_RECVIF))}, + "IP_RECVOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVOPTS))}, + "IP_RECVPKTINFO": {"untyped int", constant.MakeInt64(int64(q.IP_RECVPKTINFO))}, + "IP_RECVRETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RECVRETOPTS))}, + "IP_RECVSLLA": {"untyped int", constant.MakeInt64(int64(q.IP_RECVSLLA))}, + "IP_RECVTTL": {"untyped int", constant.MakeInt64(int64(q.IP_RECVTTL))}, + "IP_RETOPTS": {"untyped int", constant.MakeInt64(int64(q.IP_RETOPTS))}, + "IP_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.IP_REUSEADDR))}, + "IP_SEC_OPT": {"untyped int", constant.MakeInt64(int64(q.IP_SEC_OPT))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "IP_UNBLOCK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.IP_UNBLOCK_SOURCE))}, + "IP_UNSPEC_SRC": {"untyped int", constant.MakeInt64(int64(q.IP_UNSPEC_SRC))}, + "ISIG": {"untyped int", constant.MakeInt64(int64(q.ISIG))}, + "ISTRIP": {"untyped int", constant.MakeInt64(int64(q.ISTRIP))}, + "IXANY": {"untyped int", constant.MakeInt64(int64(q.IXANY))}, + "IXOFF": {"untyped int", constant.MakeInt64(int64(q.IXOFF))}, + "IXON": {"untyped int", constant.MakeInt64(int64(q.IXON))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "MADV_ACCESS_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.MADV_ACCESS_DEFAULT))}, + "MADV_ACCESS_LWP": {"untyped int", constant.MakeInt64(int64(q.MADV_ACCESS_LWP))}, + "MADV_ACCESS_MANY": {"untyped int", constant.MakeInt64(int64(q.MADV_ACCESS_MANY))}, + "MADV_DONTNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_DONTNEED))}, + "MADV_FREE": {"untyped int", constant.MakeInt64(int64(q.MADV_FREE))}, + "MADV_NORMAL": {"untyped int", constant.MakeInt64(int64(q.MADV_NORMAL))}, + "MADV_RANDOM": {"untyped int", constant.MakeInt64(int64(q.MADV_RANDOM))}, + "MADV_SEQUENTIAL": {"untyped int", constant.MakeInt64(int64(q.MADV_SEQUENTIAL))}, + "MADV_WILLNEED": {"untyped int", constant.MakeInt64(int64(q.MADV_WILLNEED))}, + "MAP_32BIT": {"untyped int", constant.MakeInt64(int64(q.MAP_32BIT))}, + "MAP_ALIGN": {"untyped int", constant.MakeInt64(int64(q.MAP_ALIGN))}, + "MAP_ANON": {"untyped int", constant.MakeInt64(int64(q.MAP_ANON))}, + "MAP_ANONYMOUS": {"untyped int", constant.MakeInt64(int64(q.MAP_ANONYMOUS))}, + "MAP_FILE": {"untyped int", constant.MakeInt64(int64(q.MAP_FILE))}, + "MAP_FIXED": {"untyped int", constant.MakeInt64(int64(q.MAP_FIXED))}, + "MAP_INITDATA": {"untyped int", constant.MakeInt64(int64(q.MAP_INITDATA))}, + "MAP_NORESERVE": {"untyped int", constant.MakeInt64(int64(q.MAP_NORESERVE))}, + "MAP_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.MAP_PRIVATE))}, + "MAP_RENAME": {"untyped int", constant.MakeInt64(int64(q.MAP_RENAME))}, + "MAP_SHARED": {"untyped int", constant.MakeInt64(int64(q.MAP_SHARED))}, + "MAP_TEXT": {"untyped int", constant.MakeInt64(int64(q.MAP_TEXT))}, + "MAP_TYPE": {"untyped int", constant.MakeInt64(int64(q.MAP_TYPE))}, + "MCL_CURRENT": {"untyped int", constant.MakeInt64(int64(q.MCL_CURRENT))}, + "MCL_FUTURE": {"untyped int", constant.MakeInt64(int64(q.MCL_FUTURE))}, + "MSG_CTRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_CTRUNC))}, + "MSG_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTROUTE))}, + "MSG_DONTWAIT": {"untyped int", constant.MakeInt64(int64(q.MSG_DONTWAIT))}, + "MSG_DUPCTRL": {"untyped int", constant.MakeInt64(int64(q.MSG_DUPCTRL))}, + "MSG_EOR": {"untyped int", constant.MakeInt64(int64(q.MSG_EOR))}, + "MSG_MAXIOVLEN": {"untyped int", constant.MakeInt64(int64(q.MSG_MAXIOVLEN))}, + "MSG_NOTIFICATION": {"untyped int", constant.MakeInt64(int64(q.MSG_NOTIFICATION))}, + "MSG_OOB": {"untyped int", constant.MakeInt64(int64(q.MSG_OOB))}, + "MSG_PEEK": {"untyped int", constant.MakeInt64(int64(q.MSG_PEEK))}, + "MSG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.MSG_TRUNC))}, + "MSG_WAITALL": {"untyped int", constant.MakeInt64(int64(q.MSG_WAITALL))}, + "MSG_XPG4_2": {"untyped int", constant.MakeInt64(int64(q.MSG_XPG4_2))}, + "MS_ASYNC": {"untyped int", constant.MakeInt64(int64(q.MS_ASYNC))}, + "MS_INVALIDATE": {"untyped int", constant.MakeInt64(int64(q.MS_INVALIDATE))}, + "MS_OLDSYNC": {"untyped int", constant.MakeInt64(int64(q.MS_OLDSYNC))}, + "MS_SYNC": {"untyped int", constant.MakeInt64(int64(q.MS_SYNC))}, + "M_FLUSH": {"untyped int", constant.MakeInt64(int64(q.M_FLUSH))}, + "NOFLSH": {"untyped int", constant.MakeInt64(int64(q.NOFLSH))}, + "OCRNL": {"untyped int", constant.MakeInt64(int64(q.OCRNL))}, + "OFDEL": {"untyped int", constant.MakeInt64(int64(q.OFDEL))}, + "OFILL": {"untyped int", constant.MakeInt64(int64(q.OFILL))}, + "ONLCR": {"untyped int", constant.MakeInt64(int64(q.ONLCR))}, + "ONLRET": {"untyped int", constant.MakeInt64(int64(q.ONLRET))}, + "ONOCR": {"untyped int", constant.MakeInt64(int64(q.ONOCR))}, + "OPENFAIL": {"untyped int", constant.MakeInt64(int64(q.OPENFAIL))}, + "OPOST": {"untyped int", constant.MakeInt64(int64(q.OPOST))}, + "O_ACCMODE": {"untyped int", constant.MakeInt64(int64(q.O_ACCMODE))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.O_DIRECTORY))}, + "O_DSYNC": {"untyped int", constant.MakeInt64(int64(q.O_DSYNC))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_EXEC": {"untyped int", constant.MakeInt64(int64(q.O_EXEC))}, + "O_LARGEFILE": {"untyped int", constant.MakeInt64(int64(q.O_LARGEFILE))}, + "O_NDELAY": {"untyped int", constant.MakeInt64(int64(q.O_NDELAY))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NOFOLLOW": {"untyped int", constant.MakeInt64(int64(q.O_NOFOLLOW))}, + "O_NOLINKS": {"untyped int", constant.MakeInt64(int64(q.O_NOLINKS))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_RSYNC": {"untyped int", constant.MakeInt64(int64(q.O_RSYNC))}, + "O_SEARCH": {"untyped int", constant.MakeInt64(int64(q.O_SEARCH))}, + "O_SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.O_SIOCGIFCONF))}, + "O_SIOCGLIFCONF": {"untyped int", constant.MakeInt64(int64(q.O_SIOCGLIFCONF))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "O_XATTR": {"untyped int", constant.MakeInt64(int64(q.O_XATTR))}, + "PARENB": {"untyped int", constant.MakeInt64(int64(q.PARENB))}, + "PAREXT": {"untyped int", constant.MakeInt64(int64(q.PAREXT))}, + "PARMRK": {"untyped int", constant.MakeInt64(int64(q.PARMRK))}, + "PARODD": {"untyped int", constant.MakeInt64(int64(q.PARODD))}, + "PENDIN": {"untyped int", constant.MakeInt64(int64(q.PENDIN))}, + "PRIO_PGRP": {"untyped int", constant.MakeInt64(int64(q.PRIO_PGRP))}, + "PRIO_PROCESS": {"untyped int", constant.MakeInt64(int64(q.PRIO_PROCESS))}, + "PRIO_USER": {"untyped int", constant.MakeInt64(int64(q.PRIO_USER))}, + "PROT_EXEC": {"untyped int", constant.MakeInt64(int64(q.PROT_EXEC))}, + "PROT_NONE": {"untyped int", constant.MakeInt64(int64(q.PROT_NONE))}, + "PROT_READ": {"untyped int", constant.MakeInt64(int64(q.PROT_READ))}, + "PROT_WRITE": {"untyped int", constant.MakeInt64(int64(q.PROT_WRITE))}, + "PathMax": {"untyped int", constant.MakeInt64(int64(q.PathMax))}, + "RLIMIT_AS": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_AS))}, + "RLIMIT_CORE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CORE))}, + "RLIMIT_CPU": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_CPU))}, + "RLIMIT_DATA": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_DATA))}, + "RLIMIT_FSIZE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_FSIZE))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "RLIMIT_STACK": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_STACK))}, + "RLIM_INFINITY": {"untyped int", constant.MakeInt64(int64(q.RLIM_INFINITY))}, + "RTAX_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTAX_AUTHOR))}, + "RTAX_BRD": {"untyped int", constant.MakeInt64(int64(q.RTAX_BRD))}, + "RTAX_DST": {"untyped int", constant.MakeInt64(int64(q.RTAX_DST))}, + "RTAX_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTAX_GATEWAY))}, + "RTAX_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_GENMASK))}, + "RTAX_IFA": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFA))}, + "RTAX_IFP": {"untyped int", constant.MakeInt64(int64(q.RTAX_IFP))}, + "RTAX_MAX": {"untyped int", constant.MakeInt64(int64(q.RTAX_MAX))}, + "RTAX_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTAX_NETMASK))}, + "RTAX_SRC": {"untyped int", constant.MakeInt64(int64(q.RTAX_SRC))}, + "RTA_AUTHOR": {"untyped int", constant.MakeInt64(int64(q.RTA_AUTHOR))}, + "RTA_BRD": {"untyped int", constant.MakeInt64(int64(q.RTA_BRD))}, + "RTA_DST": {"untyped int", constant.MakeInt64(int64(q.RTA_DST))}, + "RTA_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTA_GATEWAY))}, + "RTA_GENMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_GENMASK))}, + "RTA_IFA": {"untyped int", constant.MakeInt64(int64(q.RTA_IFA))}, + "RTA_IFP": {"untyped int", constant.MakeInt64(int64(q.RTA_IFP))}, + "RTA_NETMASK": {"untyped int", constant.MakeInt64(int64(q.RTA_NETMASK))}, + "RTA_NUMBITS": {"untyped int", constant.MakeInt64(int64(q.RTA_NUMBITS))}, + "RTA_SRC": {"untyped int", constant.MakeInt64(int64(q.RTA_SRC))}, + "RTF_BLACKHOLE": {"untyped int", constant.MakeInt64(int64(q.RTF_BLACKHOLE))}, + "RTF_CLONING": {"untyped int", constant.MakeInt64(int64(q.RTF_CLONING))}, + "RTF_DONE": {"untyped int", constant.MakeInt64(int64(q.RTF_DONE))}, + "RTF_DYNAMIC": {"untyped int", constant.MakeInt64(int64(q.RTF_DYNAMIC))}, + "RTF_GATEWAY": {"untyped int", constant.MakeInt64(int64(q.RTF_GATEWAY))}, + "RTF_HOST": {"untyped int", constant.MakeInt64(int64(q.RTF_HOST))}, + "RTF_INDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTF_INDIRECT))}, + "RTF_KERNEL": {"untyped int", constant.MakeInt64(int64(q.RTF_KERNEL))}, + "RTF_LLINFO": {"untyped int", constant.MakeInt64(int64(q.RTF_LLINFO))}, + "RTF_MASK": {"untyped int", constant.MakeInt64(int64(q.RTF_MASK))}, + "RTF_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.RTF_MODIFIED))}, + "RTF_MULTIRT": {"untyped int", constant.MakeInt64(int64(q.RTF_MULTIRT))}, + "RTF_PRIVATE": {"untyped int", constant.MakeInt64(int64(q.RTF_PRIVATE))}, + "RTF_PROTO1": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO1))}, + "RTF_PROTO2": {"untyped int", constant.MakeInt64(int64(q.RTF_PROTO2))}, + "RTF_REJECT": {"untyped int", constant.MakeInt64(int64(q.RTF_REJECT))}, + "RTF_SETSRC": {"untyped int", constant.MakeInt64(int64(q.RTF_SETSRC))}, + "RTF_STATIC": {"untyped int", constant.MakeInt64(int64(q.RTF_STATIC))}, + "RTF_UP": {"untyped int", constant.MakeInt64(int64(q.RTF_UP))}, + "RTF_XRESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTF_XRESOLVE))}, + "RTF_ZONE": {"untyped int", constant.MakeInt64(int64(q.RTF_ZONE))}, + "RTM_ADD": {"untyped int", constant.MakeInt64(int64(q.RTM_ADD))}, + "RTM_CHANGE": {"untyped int", constant.MakeInt64(int64(q.RTM_CHANGE))}, + "RTM_CHGADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_CHGADDR))}, + "RTM_DELADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_DELADDR))}, + "RTM_DELETE": {"untyped int", constant.MakeInt64(int64(q.RTM_DELETE))}, + "RTM_FREEADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_FREEADDR))}, + "RTM_GET": {"untyped int", constant.MakeInt64(int64(q.RTM_GET))}, + "RTM_IFINFO": {"untyped int", constant.MakeInt64(int64(q.RTM_IFINFO))}, + "RTM_LOCK": {"untyped int", constant.MakeInt64(int64(q.RTM_LOCK))}, + "RTM_LOSING": {"untyped int", constant.MakeInt64(int64(q.RTM_LOSING))}, + "RTM_MISS": {"untyped int", constant.MakeInt64(int64(q.RTM_MISS))}, + "RTM_NEWADDR": {"untyped int", constant.MakeInt64(int64(q.RTM_NEWADDR))}, + "RTM_OLDADD": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDADD))}, + "RTM_OLDDEL": {"untyped int", constant.MakeInt64(int64(q.RTM_OLDDEL))}, + "RTM_REDIRECT": {"untyped int", constant.MakeInt64(int64(q.RTM_REDIRECT))}, + "RTM_RESOLVE": {"untyped int", constant.MakeInt64(int64(q.RTM_RESOLVE))}, + "RTM_VERSION": {"untyped int", constant.MakeInt64(int64(q.RTM_VERSION))}, + "RTV_EXPIRE": {"untyped int", constant.MakeInt64(int64(q.RTV_EXPIRE))}, + "RTV_HOPCOUNT": {"untyped int", constant.MakeInt64(int64(q.RTV_HOPCOUNT))}, + "RTV_MTU": {"untyped int", constant.MakeInt64(int64(q.RTV_MTU))}, + "RTV_RPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_RPIPE))}, + "RTV_RTT": {"untyped int", constant.MakeInt64(int64(q.RTV_RTT))}, + "RTV_RTTVAR": {"untyped int", constant.MakeInt64(int64(q.RTV_RTTVAR))}, + "RTV_SPIPE": {"untyped int", constant.MakeInt64(int64(q.RTV_SPIPE))}, + "RTV_SSTHRESH": {"untyped int", constant.MakeInt64(int64(q.RTV_SSTHRESH))}, + "RT_AWARE": {"untyped int", constant.MakeInt64(int64(q.RT_AWARE))}, + "RUSAGE_CHILDREN": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_CHILDREN))}, + "RUSAGE_SELF": {"untyped int", constant.MakeInt64(int64(q.RUSAGE_SELF))}, + "SCM_RIGHTS": {"untyped int", constant.MakeInt64(int64(q.SCM_RIGHTS))}, + "SCM_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SCM_TIMESTAMP))}, + "SCM_UCRED": {"untyped int", constant.MakeInt64(int64(q.SCM_UCRED))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIG2STR_MAX": {"untyped int", constant.MakeInt64(int64(q.SIG2STR_MAX))}, + "SIOCADDMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCADDMULTI))}, + "SIOCADDRT": {"untyped int", constant.MakeInt64(int64(q.SIOCADDRT))}, + "SIOCATMARK": {"untyped int", constant.MakeInt64(int64(q.SIOCATMARK))}, + "SIOCDARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDARP))}, + "SIOCDELMULTI": {"untyped int", constant.MakeInt64(int64(q.SIOCDELMULTI))}, + "SIOCDELRT": {"untyped int", constant.MakeInt64(int64(q.SIOCDELRT))}, + "SIOCDIPSECONFIG": {"untyped int", constant.MakeInt64(int64(q.SIOCDIPSECONFIG))}, + "SIOCDXARP": {"untyped int", constant.MakeInt64(int64(q.SIOCDXARP))}, + "SIOCFIPSECONFIG": {"untyped int", constant.MakeInt64(int64(q.SIOCFIPSECONFIG))}, + "SIOCGARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGARP))}, + "SIOCGDSTINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCGDSTINFO))}, + "SIOCGENADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGENADDR))}, + "SIOCGENPSTATS": {"untyped int", constant.MakeInt64(int64(q.SIOCGENPSTATS))}, + "SIOCGETLSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETLSGCNT))}, + "SIOCGETNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGETNAME))}, + "SIOCGETPEER": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPEER))}, + "SIOCGETPROP": {"untyped int", constant.MakeInt64(int64(q.SIOCGETPROP))}, + "SIOCGETSGCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSGCNT))}, + "SIOCGETSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCGETSYNC))}, + "SIOCGETVIFCNT": {"untyped int", constant.MakeInt64(int64(q.SIOCGETVIFCNT))}, + "SIOCGHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGHIWAT))}, + "SIOCGIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFADDR))}, + "SIOCGIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFBRDADDR))}, + "SIOCGIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFCONF))}, + "SIOCGIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFDSTADDR))}, + "SIOCGIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFFLAGS))}, + "SIOCGIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFHWADDR))}, + "SIOCGIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFINDEX))}, + "SIOCGIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMEM))}, + "SIOCGIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMETRIC))}, + "SIOCGIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMTU))}, + "SIOCGIFMUXID": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFMUXID))}, + "SIOCGIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNETMASK))}, + "SIOCGIFNUM": {"untyped int", constant.MakeInt64(int64(q.SIOCGIFNUM))}, + "SIOCGIP6ADDRPOLICY": {"untyped int", constant.MakeInt64(int64(q.SIOCGIP6ADDRPOLICY))}, + "SIOCGIPMSFILTER": {"untyped int", constant.MakeInt64(int64(q.SIOCGIPMSFILTER))}, + "SIOCGLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFADDR))}, + "SIOCGLIFBINDING": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFBINDING))}, + "SIOCGLIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFBRDADDR))}, + "SIOCGLIFCONF": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFCONF))}, + "SIOCGLIFDADSTATE": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFDADSTATE))}, + "SIOCGLIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFDSTADDR))}, + "SIOCGLIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFFLAGS))}, + "SIOCGLIFGROUPINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFGROUPINFO))}, + "SIOCGLIFGROUPNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFGROUPNAME))}, + "SIOCGLIFHWADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFHWADDR))}, + "SIOCGLIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFINDEX))}, + "SIOCGLIFLNKINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFLNKINFO))}, + "SIOCGLIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFMETRIC))}, + "SIOCGLIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFMTU))}, + "SIOCGLIFMUXID": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFMUXID))}, + "SIOCGLIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFNETMASK))}, + "SIOCGLIFNUM": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFNUM))}, + "SIOCGLIFSRCOF": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFSRCOF))}, + "SIOCGLIFSUBNET": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFSUBNET))}, + "SIOCGLIFTOKEN": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFTOKEN))}, + "SIOCGLIFUSESRC": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFUSESRC))}, + "SIOCGLIFZONE": {"untyped int", constant.MakeInt64(int64(q.SIOCGLIFZONE))}, + "SIOCGLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCGLOWAT))}, + "SIOCGMSFILTER": {"untyped int", constant.MakeInt64(int64(q.SIOCGMSFILTER))}, + "SIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCGPGRP))}, + "SIOCGSTAMP": {"untyped int", constant.MakeInt64(int64(q.SIOCGSTAMP))}, + "SIOCGXARP": {"untyped int", constant.MakeInt64(int64(q.SIOCGXARP))}, + "SIOCIFDETACH": {"untyped int", constant.MakeInt64(int64(q.SIOCIFDETACH))}, + "SIOCILB": {"untyped int", constant.MakeInt64(int64(q.SIOCILB))}, + "SIOCLIFADDIF": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFADDIF))}, + "SIOCLIFDELND": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFDELND))}, + "SIOCLIFGETND": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFGETND))}, + "SIOCLIFREMOVEIF": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFREMOVEIF))}, + "SIOCLIFSETND": {"untyped int", constant.MakeInt64(int64(q.SIOCLIFSETND))}, + "SIOCLIPSECONFIG": {"untyped int", constant.MakeInt64(int64(q.SIOCLIPSECONFIG))}, + "SIOCLOWER": {"untyped int", constant.MakeInt64(int64(q.SIOCLOWER))}, + "SIOCSARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSARP))}, + "SIOCSCTPGOPT": {"untyped int", constant.MakeInt64(int64(q.SIOCSCTPGOPT))}, + "SIOCSCTPPEELOFF": {"untyped int", constant.MakeInt64(int64(q.SIOCSCTPPEELOFF))}, + "SIOCSCTPSOPT": {"untyped int", constant.MakeInt64(int64(q.SIOCSCTPSOPT))}, + "SIOCSENABLESDP": {"untyped int", constant.MakeInt64(int64(q.SIOCSENABLESDP))}, + "SIOCSETPROP": {"untyped int", constant.MakeInt64(int64(q.SIOCSETPROP))}, + "SIOCSETSYNC": {"untyped int", constant.MakeInt64(int64(q.SIOCSETSYNC))}, + "SIOCSHIWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSHIWAT))}, + "SIOCSIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFADDR))}, + "SIOCSIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFBRDADDR))}, + "SIOCSIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFDSTADDR))}, + "SIOCSIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFFLAGS))}, + "SIOCSIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFINDEX))}, + "SIOCSIFMEM": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMEM))}, + "SIOCSIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMETRIC))}, + "SIOCSIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMTU))}, + "SIOCSIFMUXID": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFMUXID))}, + "SIOCSIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNAME))}, + "SIOCSIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSIFNETMASK))}, + "SIOCSIP6ADDRPOLICY": {"untyped int", constant.MakeInt64(int64(q.SIOCSIP6ADDRPOLICY))}, + "SIOCSIPMSFILTER": {"untyped int", constant.MakeInt64(int64(q.SIOCSIPMSFILTER))}, + "SIOCSIPSECONFIG": {"untyped int", constant.MakeInt64(int64(q.SIOCSIPSECONFIG))}, + "SIOCSLGETREQ": {"untyped int", constant.MakeInt64(int64(q.SIOCSLGETREQ))}, + "SIOCSLIFADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFADDR))}, + "SIOCSLIFBRDADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFBRDADDR))}, + "SIOCSLIFDSTADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFDSTADDR))}, + "SIOCSLIFFLAGS": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFFLAGS))}, + "SIOCSLIFGROUPNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFGROUPNAME))}, + "SIOCSLIFINDEX": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFINDEX))}, + "SIOCSLIFLNKINFO": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFLNKINFO))}, + "SIOCSLIFMETRIC": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFMETRIC))}, + "SIOCSLIFMTU": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFMTU))}, + "SIOCSLIFMUXID": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFMUXID))}, + "SIOCSLIFNAME": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFNAME))}, + "SIOCSLIFNETMASK": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFNETMASK))}, + "SIOCSLIFPREFIX": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFPREFIX))}, + "SIOCSLIFSUBNET": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFSUBNET))}, + "SIOCSLIFTOKEN": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFTOKEN))}, + "SIOCSLIFUSESRC": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFUSESRC))}, + "SIOCSLIFZONE": {"untyped int", constant.MakeInt64(int64(q.SIOCSLIFZONE))}, + "SIOCSLOWAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLOWAT))}, + "SIOCSLSTAT": {"untyped int", constant.MakeInt64(int64(q.SIOCSLSTAT))}, + "SIOCSMSFILTER": {"untyped int", constant.MakeInt64(int64(q.SIOCSMSFILTER))}, + "SIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.SIOCSPGRP))}, + "SIOCSPROMISC": {"untyped int", constant.MakeInt64(int64(q.SIOCSPROMISC))}, + "SIOCSQPTR": {"untyped int", constant.MakeInt64(int64(q.SIOCSQPTR))}, + "SIOCSSDSTATS": {"untyped int", constant.MakeInt64(int64(q.SIOCSSDSTATS))}, + "SIOCSSESTATS": {"untyped int", constant.MakeInt64(int64(q.SIOCSSESTATS))}, + "SIOCSXARP": {"untyped int", constant.MakeInt64(int64(q.SIOCSXARP))}, + "SIOCTMYADDR": {"untyped int", constant.MakeInt64(int64(q.SIOCTMYADDR))}, + "SIOCTMYSITE": {"untyped int", constant.MakeInt64(int64(q.SIOCTMYSITE))}, + "SIOCTONLINK": {"untyped int", constant.MakeInt64(int64(q.SIOCTONLINK))}, + "SIOCUPPER": {"untyped int", constant.MakeInt64(int64(q.SIOCUPPER))}, + "SIOCX25RCV": {"untyped int", constant.MakeInt64(int64(q.SIOCX25RCV))}, + "SIOCX25TBL": {"untyped int", constant.MakeInt64(int64(q.SIOCX25TBL))}, + "SIOCX25XMT": {"untyped int", constant.MakeInt64(int64(q.SIOCX25XMT))}, + "SIOCXPROTO": {"untyped int", constant.MakeInt64(int64(q.SIOCXPROTO))}, + "SOCK_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.SOCK_CLOEXEC))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_NDELAY": {"untyped int", constant.MakeInt64(int64(q.SOCK_NDELAY))}, + "SOCK_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.SOCK_NONBLOCK))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_RDM": {"untyped int", constant.MakeInt64(int64(q.SOCK_RDM))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOCK_TYPE_MASK": {"untyped int", constant.MakeInt64(int64(q.SOCK_TYPE_MASK))}, + "SOL_FILTER": {"untyped int", constant.MakeInt64(int64(q.SOL_FILTER))}, + "SOL_PACKET": {"untyped int", constant.MakeInt64(int64(q.SOL_PACKET))}, + "SOL_ROUTE": {"untyped int", constant.MakeInt64(int64(q.SOL_ROUTE))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ACCEPTCONN": {"untyped int", constant.MakeInt64(int64(q.SO_ACCEPTCONN))}, + "SO_ALL": {"untyped int", constant.MakeInt64(int64(q.SO_ALL))}, + "SO_ALLZONES": {"untyped int", constant.MakeInt64(int64(q.SO_ALLZONES))}, + "SO_ANON_MLP": {"untyped int", constant.MakeInt64(int64(q.SO_ANON_MLP))}, + "SO_ATTACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_ATTACH_FILTER))}, + "SO_BAND": {"untyped int", constant.MakeInt64(int64(q.SO_BAND))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_COPYOPT": {"untyped int", constant.MakeInt64(int64(q.SO_COPYOPT))}, + "SO_DEBUG": {"untyped int", constant.MakeInt64(int64(q.SO_DEBUG))}, + "SO_DELIM": {"untyped int", constant.MakeInt64(int64(q.SO_DELIM))}, + "SO_DETACH_FILTER": {"untyped int", constant.MakeInt64(int64(q.SO_DETACH_FILTER))}, + "SO_DGRAM_ERRIND": {"untyped int", constant.MakeInt64(int64(q.SO_DGRAM_ERRIND))}, + "SO_DOMAIN": {"untyped int", constant.MakeInt64(int64(q.SO_DOMAIN))}, + "SO_DONTLINGER": {"untyped int", constant.MakeInt64(int64(q.SO_DONTLINGER))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_ERROPT": {"untyped int", constant.MakeInt64(int64(q.SO_ERROPT))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SO_EXCLBIND": {"untyped int", constant.MakeInt64(int64(q.SO_EXCLBIND))}, + "SO_HIWAT": {"untyped int", constant.MakeInt64(int64(q.SO_HIWAT))}, + "SO_ISNTTY": {"untyped int", constant.MakeInt64(int64(q.SO_ISNTTY))}, + "SO_ISTTY": {"untyped int", constant.MakeInt64(int64(q.SO_ISTTY))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_LOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_LOWAT))}, + "SO_MAC_EXEMPT": {"untyped int", constant.MakeInt64(int64(q.SO_MAC_EXEMPT))}, + "SO_MAC_IMPLICIT": {"untyped int", constant.MakeInt64(int64(q.SO_MAC_IMPLICIT))}, + "SO_MAXBLK": {"untyped int", constant.MakeInt64(int64(q.SO_MAXBLK))}, + "SO_MAXPSZ": {"untyped int", constant.MakeInt64(int64(q.SO_MAXPSZ))}, + "SO_MINPSZ": {"untyped int", constant.MakeInt64(int64(q.SO_MINPSZ))}, + "SO_MREADOFF": {"untyped int", constant.MakeInt64(int64(q.SO_MREADOFF))}, + "SO_MREADON": {"untyped int", constant.MakeInt64(int64(q.SO_MREADON))}, + "SO_NDELOFF": {"untyped int", constant.MakeInt64(int64(q.SO_NDELOFF))}, + "SO_NDELON": {"untyped int", constant.MakeInt64(int64(q.SO_NDELON))}, + "SO_NODELIM": {"untyped int", constant.MakeInt64(int64(q.SO_NODELIM))}, + "SO_OOBINLINE": {"untyped int", constant.MakeInt64(int64(q.SO_OOBINLINE))}, + "SO_PROTOTYPE": {"untyped int", constant.MakeInt64(int64(q.SO_PROTOTYPE))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_RCVLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_RCVLOWAT))}, + "SO_RCVPSH": {"untyped int", constant.MakeInt64(int64(q.SO_RCVPSH))}, + "SO_RCVTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_RCVTIMEO))}, + "SO_READOPT": {"untyped int", constant.MakeInt64(int64(q.SO_READOPT))}, + "SO_RECVUCRED": {"untyped int", constant.MakeInt64(int64(q.SO_RECVUCRED))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_SECATTR": {"untyped int", constant.MakeInt64(int64(q.SO_SECATTR))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_SNDLOWAT": {"untyped int", constant.MakeInt64(int64(q.SO_SNDLOWAT))}, + "SO_SNDTIMEO": {"untyped int", constant.MakeInt64(int64(q.SO_SNDTIMEO))}, + "SO_STRHOLD": {"untyped int", constant.MakeInt64(int64(q.SO_STRHOLD))}, + "SO_TAIL": {"untyped int", constant.MakeInt64(int64(q.SO_TAIL))}, + "SO_TIMESTAMP": {"untyped int", constant.MakeInt64(int64(q.SO_TIMESTAMP))}, + "SO_TONSTOP": {"untyped int", constant.MakeInt64(int64(q.SO_TONSTOP))}, + "SO_TOSTOP": {"untyped int", constant.MakeInt64(int64(q.SO_TOSTOP))}, + "SO_TYPE": {"untyped int", constant.MakeInt64(int64(q.SO_TYPE))}, + "SO_USELOOPBACK": {"untyped int", constant.MakeInt64(int64(q.SO_USELOOPBACK))}, + "SO_VRRP": {"untyped int", constant.MakeInt64(int64(q.SO_VRRP))}, + "SO_WROFF": {"untyped int", constant.MakeInt64(int64(q.SO_WROFF))}, + "SYS_EXECVE": {"untyped int", constant.MakeInt64(int64(q.SYS_EXECVE))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SizeofBpfHdr": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfHdr))}, + "SizeofBpfInsn": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfInsn))}, + "SizeofBpfProgram": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfProgram))}, + "SizeofBpfStat": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfStat))}, + "SizeofBpfVersion": {"untyped int", constant.MakeInt64(int64(q.SizeofBpfVersion))}, + "SizeofCmsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofCmsghdr))}, + "SizeofICMPv6Filter": {"untyped int", constant.MakeInt64(int64(q.SizeofICMPv6Filter))}, + "SizeofIPMreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPMreq))}, + "SizeofIPv6MTUInfo": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6MTUInfo))}, + "SizeofIPv6Mreq": {"untyped int", constant.MakeInt64(int64(q.SizeofIPv6Mreq))}, + "SizeofIfData": {"untyped int", constant.MakeInt64(int64(q.SizeofIfData))}, + "SizeofIfMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfMsghdr))}, + "SizeofIfaMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofIfaMsghdr))}, + "SizeofInet6Pktinfo": {"untyped int", constant.MakeInt64(int64(q.SizeofInet6Pktinfo))}, + "SizeofLinger": {"untyped int", constant.MakeInt64(int64(q.SizeofLinger))}, + "SizeofMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofMsghdr))}, + "SizeofRtMetrics": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMetrics))}, + "SizeofRtMsghdr": {"untyped int", constant.MakeInt64(int64(q.SizeofRtMsghdr))}, + "SizeofSockaddrAny": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrAny))}, + "SizeofSockaddrDatalink": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrDatalink))}, + "SizeofSockaddrInet4": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet4))}, + "SizeofSockaddrInet6": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrInet6))}, + "SizeofSockaddrUnix": {"untyped int", constant.MakeInt64(int64(q.SizeofSockaddrUnix))}, + "TCFLSH": {"untyped int", constant.MakeInt64(int64(q.TCFLSH))}, + "TCIFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIFLUSH))}, + "TCIOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCIOFLUSH))}, + "TCOFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCOFLUSH))}, + "TCP_ABORT_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_ABORT_THRESHOLD))}, + "TCP_ANONPRIVBIND": {"untyped int", constant.MakeInt64(int64(q.TCP_ANONPRIVBIND))}, + "TCP_CONN_ABORT_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_CONN_ABORT_THRESHOLD))}, + "TCP_CONN_NOTIFY_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_CONN_NOTIFY_THRESHOLD))}, + "TCP_CORK": {"untyped int", constant.MakeInt64(int64(q.TCP_CORK))}, + "TCP_EXCLBIND": {"untyped int", constant.MakeInt64(int64(q.TCP_EXCLBIND))}, + "TCP_INIT_CWND": {"untyped int", constant.MakeInt64(int64(q.TCP_INIT_CWND))}, + "TCP_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE))}, + "TCP_KEEPALIVE_ABORT_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE_ABORT_THRESHOLD))}, + "TCP_KEEPALIVE_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPALIVE_THRESHOLD))}, + "TCP_KEEPCNT": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPCNT))}, + "TCP_KEEPIDLE": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPIDLE))}, + "TCP_KEEPINTVL": {"untyped int", constant.MakeInt64(int64(q.TCP_KEEPINTVL))}, + "TCP_LINGER2": {"untyped int", constant.MakeInt64(int64(q.TCP_LINGER2))}, + "TCP_MAXSEG": {"untyped int", constant.MakeInt64(int64(q.TCP_MAXSEG))}, + "TCP_MSS": {"untyped int", constant.MakeInt64(int64(q.TCP_MSS))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TCP_NOTIFY_THRESHOLD": {"untyped int", constant.MakeInt64(int64(q.TCP_NOTIFY_THRESHOLD))}, + "TCP_RECVDSTADDR": {"untyped int", constant.MakeInt64(int64(q.TCP_RECVDSTADDR))}, + "TCP_RTO_INITIAL": {"untyped int", constant.MakeInt64(int64(q.TCP_RTO_INITIAL))}, + "TCP_RTO_MAX": {"untyped int", constant.MakeInt64(int64(q.TCP_RTO_MAX))}, + "TCP_RTO_MIN": {"untyped int", constant.MakeInt64(int64(q.TCP_RTO_MIN))}, + "TCSAFLUSH": {"untyped int", constant.MakeInt64(int64(q.TCSAFLUSH))}, + "TIOC": {"untyped int", constant.MakeInt64(int64(q.TIOC))}, + "TIOCCBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCCBRK))}, + "TIOCCDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCCDTR))}, + "TIOCCILOOP": {"untyped int", constant.MakeInt64(int64(q.TIOCCILOOP))}, + "TIOCEXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCEXCL))}, + "TIOCFLUSH": {"untyped int", constant.MakeInt64(int64(q.TIOCFLUSH))}, + "TIOCGETC": {"untyped int", constant.MakeInt64(int64(q.TIOCGETC))}, + "TIOCGETD": {"untyped int", constant.MakeInt64(int64(q.TIOCGETD))}, + "TIOCGETP": {"untyped int", constant.MakeInt64(int64(q.TIOCGETP))}, + "TIOCGLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCGLTC))}, + "TIOCGPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCGPGRP))}, + "TIOCGPPS": {"untyped int", constant.MakeInt64(int64(q.TIOCGPPS))}, + "TIOCGPPSEV": {"untyped int", constant.MakeInt64(int64(q.TIOCGPPSEV))}, + "TIOCGSID": {"untyped int", constant.MakeInt64(int64(q.TIOCGSID))}, + "TIOCGSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCGSOFTCAR))}, + "TIOCGWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCGWINSZ))}, + "TIOCHPCL": {"untyped int", constant.MakeInt64(int64(q.TIOCHPCL))}, + "TIOCKBOF": {"untyped int", constant.MakeInt64(int64(q.TIOCKBOF))}, + "TIOCKBON": {"untyped int", constant.MakeInt64(int64(q.TIOCKBON))}, + "TIOCLBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCLBIC))}, + "TIOCLBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCLBIS))}, + "TIOCLGET": {"untyped int", constant.MakeInt64(int64(q.TIOCLGET))}, + "TIOCLSET": {"untyped int", constant.MakeInt64(int64(q.TIOCLSET))}, + "TIOCMBIC": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIC))}, + "TIOCMBIS": {"untyped int", constant.MakeInt64(int64(q.TIOCMBIS))}, + "TIOCMGET": {"untyped int", constant.MakeInt64(int64(q.TIOCMGET))}, + "TIOCMSET": {"untyped int", constant.MakeInt64(int64(q.TIOCMSET))}, + "TIOCM_CAR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CAR))}, + "TIOCM_CD": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CD))}, + "TIOCM_CTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_CTS))}, + "TIOCM_DSR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DSR))}, + "TIOCM_DTR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_DTR))}, + "TIOCM_LE": {"untyped int", constant.MakeInt64(int64(q.TIOCM_LE))}, + "TIOCM_RI": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RI))}, + "TIOCM_RNG": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RNG))}, + "TIOCM_RTS": {"untyped int", constant.MakeInt64(int64(q.TIOCM_RTS))}, + "TIOCM_SR": {"untyped int", constant.MakeInt64(int64(q.TIOCM_SR))}, + "TIOCM_ST": {"untyped int", constant.MakeInt64(int64(q.TIOCM_ST))}, + "TIOCNOTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCNOTTY))}, + "TIOCNXCL": {"untyped int", constant.MakeInt64(int64(q.TIOCNXCL))}, + "TIOCOUTQ": {"untyped int", constant.MakeInt64(int64(q.TIOCOUTQ))}, + "TIOCREMOTE": {"untyped int", constant.MakeInt64(int64(q.TIOCREMOTE))}, + "TIOCSBRK": {"untyped int", constant.MakeInt64(int64(q.TIOCSBRK))}, + "TIOCSCTTY": {"untyped int", constant.MakeInt64(int64(q.TIOCSCTTY))}, + "TIOCSDTR": {"untyped int", constant.MakeInt64(int64(q.TIOCSDTR))}, + "TIOCSETC": {"untyped int", constant.MakeInt64(int64(q.TIOCSETC))}, + "TIOCSETD": {"untyped int", constant.MakeInt64(int64(q.TIOCSETD))}, + "TIOCSETN": {"untyped int", constant.MakeInt64(int64(q.TIOCSETN))}, + "TIOCSETP": {"untyped int", constant.MakeInt64(int64(q.TIOCSETP))}, + "TIOCSIGNAL": {"untyped int", constant.MakeInt64(int64(q.TIOCSIGNAL))}, + "TIOCSILOOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSILOOP))}, + "TIOCSLTC": {"untyped int", constant.MakeInt64(int64(q.TIOCSLTC))}, + "TIOCSPGRP": {"untyped int", constant.MakeInt64(int64(q.TIOCSPGRP))}, + "TIOCSPPS": {"untyped int", constant.MakeInt64(int64(q.TIOCSPPS))}, + "TIOCSSOFTCAR": {"untyped int", constant.MakeInt64(int64(q.TIOCSSOFTCAR))}, + "TIOCSTART": {"untyped int", constant.MakeInt64(int64(q.TIOCSTART))}, + "TIOCSTI": {"untyped int", constant.MakeInt64(int64(q.TIOCSTI))}, + "TIOCSTOP": {"untyped int", constant.MakeInt64(int64(q.TIOCSTOP))}, + "TIOCSWINSZ": {"untyped int", constant.MakeInt64(int64(q.TIOCSWINSZ))}, + "TOSTOP": {"untyped int", constant.MakeInt64(int64(q.TOSTOP))}, + "VCEOF": {"untyped int", constant.MakeInt64(int64(q.VCEOF))}, + "VCEOL": {"untyped int", constant.MakeInt64(int64(q.VCEOL))}, + "VDISCARD": {"untyped int", constant.MakeInt64(int64(q.VDISCARD))}, + "VDSUSP": {"untyped int", constant.MakeInt64(int64(q.VDSUSP))}, + "VEOF": {"untyped int", constant.MakeInt64(int64(q.VEOF))}, + "VEOL": {"untyped int", constant.MakeInt64(int64(q.VEOL))}, + "VEOL2": {"untyped int", constant.MakeInt64(int64(q.VEOL2))}, + "VERASE": {"untyped int", constant.MakeInt64(int64(q.VERASE))}, + "VINTR": {"untyped int", constant.MakeInt64(int64(q.VINTR))}, + "VKILL": {"untyped int", constant.MakeInt64(int64(q.VKILL))}, + "VLNEXT": {"untyped int", constant.MakeInt64(int64(q.VLNEXT))}, + "VMIN": {"untyped int", constant.MakeInt64(int64(q.VMIN))}, + "VQUIT": {"untyped int", constant.MakeInt64(int64(q.VQUIT))}, + "VREPRINT": {"untyped int", constant.MakeInt64(int64(q.VREPRINT))}, + "VSTART": {"untyped int", constant.MakeInt64(int64(q.VSTART))}, + "VSTOP": {"untyped int", constant.MakeInt64(int64(q.VSTOP))}, + "VSUSP": {"untyped int", constant.MakeInt64(int64(q.VSUSP))}, + "VSWTCH": {"untyped int", constant.MakeInt64(int64(q.VSWTCH))}, + "VT0": {"untyped int", constant.MakeInt64(int64(q.VT0))}, + "VT1": {"untyped int", constant.MakeInt64(int64(q.VT1))}, + "VTDLY": {"untyped int", constant.MakeInt64(int64(q.VTDLY))}, + "VTIME": {"untyped int", constant.MakeInt64(int64(q.VTIME))}, + "VWERASE": {"untyped int", constant.MakeInt64(int64(q.VWERASE))}, + "WCONTFLG": {"untyped int", constant.MakeInt64(int64(q.WCONTFLG))}, + "WCONTINUED": {"untyped int", constant.MakeInt64(int64(q.WCONTINUED))}, + "WCOREFLG": {"untyped int", constant.MakeInt64(int64(q.WCOREFLG))}, + "WEXITED": {"untyped int", constant.MakeInt64(int64(q.WEXITED))}, + "WNOHANG": {"untyped int", constant.MakeInt64(int64(q.WNOHANG))}, + "WNOWAIT": {"untyped int", constant.MakeInt64(int64(q.WNOWAIT))}, + "WOPTMASK": {"untyped int", constant.MakeInt64(int64(q.WOPTMASK))}, + "WRAP": {"untyped int", constant.MakeInt64(int64(q.WRAP))}, + "WSIGMASK": {"untyped int", constant.MakeInt64(int64(q.WSIGMASK))}, + "WSTOPFLG": {"untyped int", constant.MakeInt64(int64(q.WSTOPFLG))}, + "WSTOPPED": {"untyped int", constant.MakeInt64(int64(q.WSTOPPED))}, + "WTRAPPED": {"untyped int", constant.MakeInt64(int64(q.WTRAPPED))}, + "WUNTRACED": {"untyped int", constant.MakeInt64(int64(q.WUNTRACED))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_wasip1_wasm.go b/pkg/syscall/go123_export_wasip1_wasm.go new file mode 100755 index 00000000..d11013eb --- /dev/null +++ b/pkg/syscall/go123_export_wasip1_wasm.go @@ -0,0 +1,404 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/byteorder": "byteorder", + "internal/goarch": "goarch", + "internal/itoa": "itoa", + "internal/oserror": "oserror", + "internal/stringslite": "stringslite", + "runtime": "runtime", + "sync": "sync", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "Dirent": reflect.TypeOf((*q.Dirent)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "Rlimit": reflect.TypeOf((*q.Rlimit)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "Stat_t": reflect.TypeOf((*q.Stat_t)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{ + "Dircookie": reflect.TypeOf((*uint64)(nil)).Elem(), + "Filetype": reflect.TypeOf((*uint8)(nil)).Elem(), + }, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "Connect": reflect.ValueOf(q.Connect), + "Dup": reflect.ValueOf(q.Dup), + "Dup2": reflect.ValueOf(q.Dup2), + "Environ": reflect.ValueOf(q.Environ), + "Exit": reflect.ValueOf(q.Exit), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "Fstat": reflect.ValueOf(q.Fstat), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getrlimit": reflect.ValueOf(q.Getrlimit), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Kill": reflect.ValueOf(q.Kill), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "Lstat": reflect.ValueOf(q.Lstat), + "Mkdir": reflect.ValueOf(q.Mkdir), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Open": reflect.ValueOf(q.Open), + "ParseDirent": reflect.ValueOf(q.ParseDirent), + "Pipe": reflect.ValueOf(q.Pipe), + "Pread": reflect.ValueOf(q.Pread), + "ProcExit": reflect.ValueOf(q.ProcExit), + "Pwrite": reflect.ValueOf(q.Pwrite), + "RandomGet": reflect.ValueOf(q.RandomGet), + "RawSyscall": reflect.ValueOf(q.RawSyscall), + "RawSyscall6": reflect.ValueOf(q.RawSyscall6), + "Read": reflect.ValueOf(q.Read), + "ReadDir": reflect.ValueOf(q.ReadDir), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "Recvmsg": reflect.ValueOf(q.Recvmsg), + "Rename": reflect.ValueOf(q.Rename), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Sendfile": reflect.ValueOf(q.Sendfile), + "SendmsgN": reflect.ValueOf(q.SendmsgN), + "Sendto": reflect.ValueOf(q.Sendto), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "SetReadDeadline": reflect.ValueOf(q.SetReadDeadline), + "SetWriteDeadline": reflect.ValueOf(q.SetWriteDeadline), + "Setenv": reflect.ValueOf(q.Setenv), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "Shutdown": reflect.ValueOf(q.Shutdown), + "Socket": reflect.ValueOf(q.Socket), + "StartProcess": reflect.ValueOf(q.StartProcess), + "Stat": reflect.ValueOf(q.Stat), + "StopIO": reflect.ValueOf(q.StopIO), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "Symlink": reflect.ValueOf(q.Symlink), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Sysctl": reflect.ValueOf(q.Sysctl), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(q.TimevalToNsec), + "Truncate": reflect.ValueOf(q.Truncate), + "Umask": reflect.ValueOf(q.Umask), + "Unlink": reflect.ValueOf(q.Unlink), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "Wait4": reflect.ValueOf(q.Wait4), + "Write": reflect.ValueOf(q.Write), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTCAPABLE": {reflect.TypeOf(q.ENOTCAPABLE), constant.MakeInt64(int64(q.ENOTCAPABLE))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "FILETYPE_BLOCK_DEVICE": {reflect.TypeOf(q.FILETYPE_BLOCK_DEVICE), constant.MakeInt64(int64(q.FILETYPE_BLOCK_DEVICE))}, + "FILETYPE_CHARACTER_DEVICE": {reflect.TypeOf(q.FILETYPE_CHARACTER_DEVICE), constant.MakeInt64(int64(q.FILETYPE_CHARACTER_DEVICE))}, + "FILETYPE_DIRECTORY": {reflect.TypeOf(q.FILETYPE_DIRECTORY), constant.MakeInt64(int64(q.FILETYPE_DIRECTORY))}, + "FILETYPE_REGULAR_FILE": {reflect.TypeOf(q.FILETYPE_REGULAR_FILE), constant.MakeInt64(int64(q.FILETYPE_REGULAR_FILE))}, + "FILETYPE_SOCKET_DGRAM": {reflect.TypeOf(q.FILETYPE_SOCKET_DGRAM), constant.MakeInt64(int64(q.FILETYPE_SOCKET_DGRAM))}, + "FILETYPE_SOCKET_STREAM": {reflect.TypeOf(q.FILETYPE_SOCKET_STREAM), constant.MakeInt64(int64(q.FILETYPE_SOCKET_STREAM))}, + "FILETYPE_SYMBOLIC_LINK": {reflect.TypeOf(q.FILETYPE_SYMBOLIC_LINK), constant.MakeInt64(int64(q.FILETYPE_SYMBOLIC_LINK))}, + "FILETYPE_UNKNOWN": {reflect.TypeOf(q.FILETYPE_UNKNOWN), constant.MakeInt64(int64(q.FILETYPE_UNKNOWN))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGCHLD": {reflect.TypeOf(q.SIGCHLD), constant.MakeInt64(int64(q.SIGCHLD))}, + "SIGCONT": {reflect.TypeOf(q.SIGCONT), constant.MakeInt64(int64(q.SIGCONT))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGNONE": {reflect.TypeOf(q.SIGNONE), constant.MakeInt64(int64(q.SIGNONE))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGPOLL": {reflect.TypeOf(q.SIGPOLL), constant.MakeInt64(int64(q.SIGPOLL))}, + "SIGPROF": {reflect.TypeOf(q.SIGPROF), constant.MakeInt64(int64(q.SIGPROF))}, + "SIGPWR": {reflect.TypeOf(q.SIGPWR), constant.MakeInt64(int64(q.SIGPWR))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGSTOP": {reflect.TypeOf(q.SIGSTOP), constant.MakeInt64(int64(q.SIGSTOP))}, + "SIGSYS": {reflect.TypeOf(q.SIGSYS), constant.MakeInt64(int64(q.SIGSYS))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "SIGTSTP": {reflect.TypeOf(q.SIGTSTP), constant.MakeInt64(int64(q.SIGTSTP))}, + "SIGTTIN": {reflect.TypeOf(q.SIGTTIN), constant.MakeInt64(int64(q.SIGTTIN))}, + "SIGTTOU": {reflect.TypeOf(q.SIGTTOU), constant.MakeInt64(int64(q.SIGTTOU))}, + "SIGURG": {reflect.TypeOf(q.SIGURG), constant.MakeInt64(int64(q.SIGURG))}, + "SIGUSR1": {reflect.TypeOf(q.SIGUSR1), constant.MakeInt64(int64(q.SIGUSR1))}, + "SIGUSR2": {reflect.TypeOf(q.SIGUSR2), constant.MakeInt64(int64(q.SIGUSR2))}, + "SIGVTARLM": {reflect.TypeOf(q.SIGVTARLM), constant.MakeInt64(int64(q.SIGVTARLM))}, + "SIGWINCH": {reflect.TypeOf(q.SIGWINCH), constant.MakeInt64(int64(q.SIGWINCH))}, + "SIGXCPU": {reflect.TypeOf(q.SIGXCPU), constant.MakeInt64(int64(q.SIGXCPU))}, + "SIGXFSZ": {reflect.TypeOf(q.SIGXFSZ), constant.MakeInt64(int64(q.SIGXFSZ))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "FDFLAG_APPEND": {"untyped int", constant.MakeInt64(int64(q.FDFLAG_APPEND))}, + "FDFLAG_DSYNC": {"untyped int", constant.MakeInt64(int64(q.FDFLAG_DSYNC))}, + "FDFLAG_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.FDFLAG_NONBLOCK))}, + "FDFLAG_RSYNC": {"untyped int", constant.MakeInt64(int64(q.FDFLAG_RSYNC))}, + "FDFLAG_SYNC": {"untyped int", constant.MakeInt64(int64(q.FDFLAG_SYNC))}, + "FILESTAT_SET_ATIM": {"untyped int", constant.MakeInt64(int64(q.FILESTAT_SET_ATIM))}, + "FILESTAT_SET_ATIM_NOW": {"untyped int", constant.MakeInt64(int64(q.FILESTAT_SET_ATIM_NOW))}, + "FILESTAT_SET_MTIM": {"untyped int", constant.MakeInt64(int64(q.FILESTAT_SET_MTIM))}, + "FILESTAT_SET_MTIM_NOW": {"untyped int", constant.MakeInt64(int64(q.FILESTAT_SET_MTIM_NOW))}, + "F_CNVT": {"untyped int", constant.MakeInt64(int64(q.F_CNVT))}, + "F_DUPFD": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD))}, + "F_DUPFD_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.F_DUPFD_CLOEXEC))}, + "F_GETFD": {"untyped int", constant.MakeInt64(int64(q.F_GETFD))}, + "F_GETFL": {"untyped int", constant.MakeInt64(int64(q.F_GETFL))}, + "F_GETLK": {"untyped int", constant.MakeInt64(int64(q.F_GETLK))}, + "F_GETOWN": {"untyped int", constant.MakeInt64(int64(q.F_GETOWN))}, + "F_RDLCK": {"untyped int", constant.MakeInt64(int64(q.F_RDLCK))}, + "F_RGETLK": {"untyped int", constant.MakeInt64(int64(q.F_RGETLK))}, + "F_RSETLK": {"untyped int", constant.MakeInt64(int64(q.F_RSETLK))}, + "F_RSETLKW": {"untyped int", constant.MakeInt64(int64(q.F_RSETLKW))}, + "F_SETFD": {"untyped int", constant.MakeInt64(int64(q.F_SETFD))}, + "F_SETFL": {"untyped int", constant.MakeInt64(int64(q.F_SETFL))}, + "F_SETLK": {"untyped int", constant.MakeInt64(int64(q.F_SETLK))}, + "F_SETLKW": {"untyped int", constant.MakeInt64(int64(q.F_SETLKW))}, + "F_SETOWN": {"untyped int", constant.MakeInt64(int64(q.F_SETOWN))}, + "F_UNLCK": {"untyped int", constant.MakeInt64(int64(q.F_UNLCK))}, + "F_UNLKSYS": {"untyped int", constant.MakeInt64(int64(q.F_UNLKSYS))}, + "F_WRLCK": {"untyped int", constant.MakeInt64(int64(q.F_WRLCK))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPV4": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV4))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "LOOKUP_SYMLINK_FOLLOW": {"untyped int", constant.MakeInt64(int64(q.LOOKUP_SYMLINK_FOLLOW))}, + "OFLAG_CREATE": {"untyped int", constant.MakeInt64(int64(q.OFLAG_CREATE))}, + "OFLAG_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.OFLAG_DIRECTORY))}, + "OFLAG_EXCL": {"untyped int", constant.MakeInt64(int64(q.OFLAG_EXCL))}, + "OFLAG_TRUNC": {"untyped int", constant.MakeInt64(int64(q.OFLAG_TRUNC))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_CREATE": {"untyped int", constant.MakeInt64(int64(q.O_CREATE))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "RIGHT_FDSTAT_SET_FLAGS": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FDSTAT_SET_FLAGS))}, + "RIGHT_FD_ADVISE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_ADVISE))}, + "RIGHT_FD_ALLOCATE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_ALLOCATE))}, + "RIGHT_FD_DATASYNC": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_DATASYNC))}, + "RIGHT_FD_FILESTAT_GET": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_FILESTAT_GET))}, + "RIGHT_FD_FILESTAT_SET_SIZE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_FILESTAT_SET_SIZE))}, + "RIGHT_FD_FILESTAT_SET_TIMES": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_FILESTAT_SET_TIMES))}, + "RIGHT_FD_READ": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_READ))}, + "RIGHT_FD_READDIR": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_READDIR))}, + "RIGHT_FD_SEEK": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_SEEK))}, + "RIGHT_FD_SYNC": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_SYNC))}, + "RIGHT_FD_TELL": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_TELL))}, + "RIGHT_FD_WRITE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_FD_WRITE))}, + "RIGHT_PATH_CREATE_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_CREATE_DIRECTORY))}, + "RIGHT_PATH_CREATE_FILE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_CREATE_FILE))}, + "RIGHT_PATH_FILESTAT_GET": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_FILESTAT_GET))}, + "RIGHT_PATH_FILESTAT_SET_SIZE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_FILESTAT_SET_SIZE))}, + "RIGHT_PATH_FILESTAT_SET_TIMES": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_FILESTAT_SET_TIMES))}, + "RIGHT_PATH_LINK_SOURCE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_LINK_SOURCE))}, + "RIGHT_PATH_LINK_TARGET": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_LINK_TARGET))}, + "RIGHT_PATH_OPEN": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_OPEN))}, + "RIGHT_PATH_READLINK": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_READLINK))}, + "RIGHT_PATH_REMOVE_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_REMOVE_DIRECTORY))}, + "RIGHT_PATH_RENAME_SOURCE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_RENAME_SOURCE))}, + "RIGHT_PATH_RENAME_TARGET": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_RENAME_TARGET))}, + "RIGHT_PATH_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_SYMLINK))}, + "RIGHT_PATH_UNLINK_FILE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_PATH_UNLINK_FILE))}, + "RIGHT_POLL_FD_READWRITE": {"untyped int", constant.MakeInt64(int64(q.RIGHT_POLL_FD_READWRITE))}, + "RIGHT_SOCK_ACCEPT": {"untyped int", constant.MakeInt64(int64(q.RIGHT_SOCK_ACCEPT))}, + "RIGHT_SOCK_SHUTDOWN": {"untyped int", constant.MakeInt64(int64(q.RIGHT_SOCK_SHUTDOWN))}, + "RLIMIT_NOFILE": {"untyped int", constant.MakeInt64(int64(q.RLIMIT_NOFILE))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_ERROR": {"untyped int", constant.MakeInt64(int64(q.SO_ERROR))}, + "SYS_FCNTL": {"untyped int", constant.MakeInt64(int64(q.SYS_FCNTL))}, + "S_IEXEC": {"untyped int", constant.MakeInt64(int64(q.S_IEXEC))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFBOUNDSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFBOUNDSOCK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFCOND": {"untyped int", constant.MakeInt64(int64(q.S_IFCOND))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFDSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFDSOCK))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFMUTEX": {"untyped int", constant.MakeInt64(int64(q.S_IFMUTEX))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSEMA": {"untyped int", constant.MakeInt64(int64(q.S_IFSEMA))}, + "S_IFSHM": {"untyped int", constant.MakeInt64(int64(q.S_IFSHM))}, + "S_IFSHM_SYSV": {"untyped int", constant.MakeInt64(int64(q.S_IFSHM_SYSV))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IFSOCKADDR": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCKADDR))}, + "S_IREAD": {"untyped int", constant.MakeInt64(int64(q.S_IREAD))}, + "S_IRGRP": {"untyped int", constant.MakeInt64(int64(q.S_IRGRP))}, + "S_IROTH": {"untyped int", constant.MakeInt64(int64(q.S_IROTH))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_IRWXG": {"untyped int", constant.MakeInt64(int64(q.S_IRWXG))}, + "S_IRWXO": {"untyped int", constant.MakeInt64(int64(q.S_IRWXO))}, + "S_IRWXU": {"untyped int", constant.MakeInt64(int64(q.S_IRWXU))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWGRP": {"untyped int", constant.MakeInt64(int64(q.S_IWGRP))}, + "S_IWOTH": {"untyped int", constant.MakeInt64(int64(q.S_IWOTH))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXGRP": {"untyped int", constant.MakeInt64(int64(q.S_IXGRP))}, + "S_IXOTH": {"untyped int", constant.MakeInt64(int64(q.S_IXOTH))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "S_UNSUP": {"untyped int", constant.MakeInt64(int64(q.S_UNSUP))}, + "Stderr": {"untyped int", constant.MakeInt64(int64(q.Stderr))}, + "Stdin": {"untyped int", constant.MakeInt64(int64(q.Stdin))}, + "Stdout": {"untyped int", constant.MakeInt64(int64(q.Stdout))}, + "WHENCE_CUR": {"untyped int", constant.MakeInt64(int64(q.WHENCE_CUR))}, + "WHENCE_END": {"untyped int", constant.MakeInt64(int64(q.WHENCE_END))}, + "WHENCE_SET": {"untyped int", constant.MakeInt64(int64(q.WHENCE_SET))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_windows_386.go b/pkg/syscall/go123_export_windows_386.go new file mode 100755 index 00000000..8ee1f18a --- /dev/null +++ b/pkg/syscall/go123_export_windows_386.go @@ -0,0 +1,1043 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/syscall/windows/sysdll": "sysdll", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unicode/utf16": "utf16", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "AddrinfoW": reflect.TypeOf((*q.AddrinfoW)(nil)).Elem(), + "ByHandleFileInformation": reflect.TypeOf((*q.ByHandleFileInformation)(nil)).Elem(), + "CertChainContext": reflect.TypeOf((*q.CertChainContext)(nil)).Elem(), + "CertChainElement": reflect.TypeOf((*q.CertChainElement)(nil)).Elem(), + "CertChainPara": reflect.TypeOf((*q.CertChainPara)(nil)).Elem(), + "CertChainPolicyPara": reflect.TypeOf((*q.CertChainPolicyPara)(nil)).Elem(), + "CertChainPolicyStatus": reflect.TypeOf((*q.CertChainPolicyStatus)(nil)).Elem(), + "CertContext": reflect.TypeOf((*q.CertContext)(nil)).Elem(), + "CertEnhKeyUsage": reflect.TypeOf((*q.CertEnhKeyUsage)(nil)).Elem(), + "CertInfo": reflect.TypeOf((*q.CertInfo)(nil)).Elem(), + "CertRevocationCrlInfo": reflect.TypeOf((*q.CertRevocationCrlInfo)(nil)).Elem(), + "CertRevocationInfo": reflect.TypeOf((*q.CertRevocationInfo)(nil)).Elem(), + "CertSimpleChain": reflect.TypeOf((*q.CertSimpleChain)(nil)).Elem(), + "CertTrustListInfo": reflect.TypeOf((*q.CertTrustListInfo)(nil)).Elem(), + "CertTrustStatus": reflect.TypeOf((*q.CertTrustStatus)(nil)).Elem(), + "CertUsageMatch": reflect.TypeOf((*q.CertUsageMatch)(nil)).Elem(), + "DLL": reflect.TypeOf((*q.DLL)(nil)).Elem(), + "DLLError": reflect.TypeOf((*q.DLLError)(nil)).Elem(), + "DNSMXData": reflect.TypeOf((*q.DNSMXData)(nil)).Elem(), + "DNSPTRData": reflect.TypeOf((*q.DNSPTRData)(nil)).Elem(), + "DNSRecord": reflect.TypeOf((*q.DNSRecord)(nil)).Elem(), + "DNSSRVData": reflect.TypeOf((*q.DNSSRVData)(nil)).Elem(), + "DNSTXTData": reflect.TypeOf((*q.DNSTXTData)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FileNotifyInformation": reflect.TypeOf((*q.FileNotifyInformation)(nil)).Elem(), + "Filetime": reflect.TypeOf((*q.Filetime)(nil)).Elem(), + "GUID": reflect.TypeOf((*q.GUID)(nil)).Elem(), + "Handle": reflect.TypeOf((*q.Handle)(nil)).Elem(), + "Hostent": reflect.TypeOf((*q.Hostent)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "InterfaceInfo": reflect.TypeOf((*q.InterfaceInfo)(nil)).Elem(), + "IpAdapterInfo": reflect.TypeOf((*q.IpAdapterInfo)(nil)).Elem(), + "IpAddrString": reflect.TypeOf((*q.IpAddrString)(nil)).Elem(), + "IpAddressString": reflect.TypeOf((*q.IpAddressString)(nil)).Elem(), + "IpMaskString": reflect.TypeOf((*q.IpMaskString)(nil)).Elem(), + "LazyDLL": reflect.TypeOf((*q.LazyDLL)(nil)).Elem(), + "LazyProc": reflect.TypeOf((*q.LazyProc)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "MibIfRow": reflect.TypeOf((*q.MibIfRow)(nil)).Elem(), + "Overlapped": reflect.TypeOf((*q.Overlapped)(nil)).Elem(), + "Pointer": reflect.TypeOf((*q.Pointer)(nil)).Elem(), + "Proc": reflect.TypeOf((*q.Proc)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "ProcessEntry32": reflect.TypeOf((*q.ProcessEntry32)(nil)).Elem(), + "ProcessInformation": reflect.TypeOf((*q.ProcessInformation)(nil)).Elem(), + "Protoent": reflect.TypeOf((*q.Protoent)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "SID": reflect.TypeOf((*q.SID)(nil)).Elem(), + "SIDAndAttributes": reflect.TypeOf((*q.SIDAndAttributes)(nil)).Elem(), + "SSLExtraCertChainPolicyPara": reflect.TypeOf((*q.SSLExtraCertChainPolicyPara)(nil)).Elem(), + "SecurityAttributes": reflect.TypeOf((*q.SecurityAttributes)(nil)).Elem(), + "Servent": reflect.TypeOf((*q.Servent)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrGen": reflect.TypeOf((*q.SockaddrGen)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "StartupInfo": reflect.TypeOf((*q.StartupInfo)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Systemtime": reflect.TypeOf((*q.Systemtime)(nil)).Elem(), + "TCPKeepalive": reflect.TypeOf((*q.TCPKeepalive)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timezoneinformation": reflect.TypeOf((*q.Timezoneinformation)(nil)).Elem(), + "Token": reflect.TypeOf((*q.Token)(nil)).Elem(), + "Tokenprimarygroup": reflect.TypeOf((*q.Tokenprimarygroup)(nil)).Elem(), + "Tokenuser": reflect.TypeOf((*q.Tokenuser)(nil)).Elem(), + "TransmitFileBuffers": reflect.TypeOf((*q.TransmitFileBuffers)(nil)).Elem(), + "UserInfo10": reflect.TypeOf((*q.UserInfo10)(nil)).Elem(), + "WSABuf": reflect.TypeOf((*q.WSABuf)(nil)).Elem(), + "WSAData": reflect.TypeOf((*q.WSAData)(nil)).Elem(), + "WSAProtocolChain": reflect.TypeOf((*q.WSAProtocolChain)(nil)).Elem(), + "WSAProtocolInfo": reflect.TypeOf((*q.WSAProtocolInfo)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + "Win32FileAttributeData": reflect.TypeOf((*q.Win32FileAttributeData)(nil)).Elem(), + "Win32finddata": reflect.TypeOf((*q.Win32finddata)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&q.OID_PKIX_KP_SERVER_AUTH), + "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&q.OID_SERVER_GATED_CRYPTO), + "OID_SGC_NETSCAPE": reflect.ValueOf(&q.OID_SGC_NETSCAPE), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + "WSAID_CONNECTEX": reflect.ValueOf(&q.WSAID_CONNECTEX), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "AcceptEx": reflect.ValueOf(q.AcceptEx), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "CancelIo": reflect.ValueOf(q.CancelIo), + "CancelIoEx": reflect.ValueOf(q.CancelIoEx), + "CertAddCertificateContextToStore": reflect.ValueOf(q.CertAddCertificateContextToStore), + "CertCloseStore": reflect.ValueOf(q.CertCloseStore), + "CertCreateCertificateContext": reflect.ValueOf(q.CertCreateCertificateContext), + "CertEnumCertificatesInStore": reflect.ValueOf(q.CertEnumCertificatesInStore), + "CertFreeCertificateChain": reflect.ValueOf(q.CertFreeCertificateChain), + "CertFreeCertificateContext": reflect.ValueOf(q.CertFreeCertificateContext), + "CertGetCertificateChain": reflect.ValueOf(q.CertGetCertificateChain), + "CertOpenStore": reflect.ValueOf(q.CertOpenStore), + "CertOpenSystemStore": reflect.ValueOf(q.CertOpenSystemStore), + "CertVerifyCertificateChainPolicy": reflect.ValueOf(q.CertVerifyCertificateChainPolicy), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseHandle": reflect.ValueOf(q.CloseHandle), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "Closesocket": reflect.ValueOf(q.Closesocket), + "CommandLineToArgv": reflect.ValueOf(q.CommandLineToArgv), + "ComputerName": reflect.ValueOf(q.ComputerName), + "Connect": reflect.ValueOf(q.Connect), + "ConnectEx": reflect.ValueOf(q.ConnectEx), + "ConvertSidToStringSid": reflect.ValueOf(q.ConvertSidToStringSid), + "ConvertStringSidToSid": reflect.ValueOf(q.ConvertStringSidToSid), + "CopySid": reflect.ValueOf(q.CopySid), + "CreateDirectory": reflect.ValueOf(q.CreateDirectory), + "CreateFile": reflect.ValueOf(q.CreateFile), + "CreateFileMapping": reflect.ValueOf(q.CreateFileMapping), + "CreateHardLink": reflect.ValueOf(q.CreateHardLink), + "CreateIoCompletionPort": reflect.ValueOf(q.CreateIoCompletionPort), + "CreatePipe": reflect.ValueOf(q.CreatePipe), + "CreateProcess": reflect.ValueOf(q.CreateProcess), + "CreateProcessAsUser": reflect.ValueOf(q.CreateProcessAsUser), + "CreateSymbolicLink": reflect.ValueOf(q.CreateSymbolicLink), + "CreateToolhelp32Snapshot": reflect.ValueOf(q.CreateToolhelp32Snapshot), + "CryptAcquireContext": reflect.ValueOf(q.CryptAcquireContext), + "CryptGenRandom": reflect.ValueOf(q.CryptGenRandom), + "CryptReleaseContext": reflect.ValueOf(q.CryptReleaseContext), + "DeleteFile": reflect.ValueOf(q.DeleteFile), + "DeviceIoControl": reflect.ValueOf(q.DeviceIoControl), + "DnsNameCompare": reflect.ValueOf(q.DnsNameCompare), + "DnsQuery": reflect.ValueOf(q.DnsQuery), + "DnsRecordListFree": reflect.ValueOf(q.DnsRecordListFree), + "DuplicateHandle": reflect.ValueOf(q.DuplicateHandle), + "Environ": reflect.ValueOf(q.Environ), + "EscapeArg": reflect.ValueOf(q.EscapeArg), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "ExitProcess": reflect.ValueOf(q.ExitProcess), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FindClose": reflect.ValueOf(q.FindClose), + "FindFirstFile": reflect.ValueOf(q.FindFirstFile), + "FindNextFile": reflect.ValueOf(q.FindNextFile), + "FlushFileBuffers": reflect.ValueOf(q.FlushFileBuffers), + "FlushViewOfFile": reflect.ValueOf(q.FlushViewOfFile), + "FormatMessage": reflect.ValueOf(q.FormatMessage), + "FreeAddrInfoW": reflect.ValueOf(q.FreeAddrInfoW), + "FreeEnvironmentStrings": reflect.ValueOf(q.FreeEnvironmentStrings), + "FreeLibrary": reflect.ValueOf(q.FreeLibrary), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "FullPath": reflect.ValueOf(q.FullPath), + "GetAcceptExSockaddrs": reflect.ValueOf(q.GetAcceptExSockaddrs), + "GetAdaptersInfo": reflect.ValueOf(q.GetAdaptersInfo), + "GetAddrInfoW": reflect.ValueOf(q.GetAddrInfoW), + "GetCommandLine": reflect.ValueOf(q.GetCommandLine), + "GetComputerName": reflect.ValueOf(q.GetComputerName), + "GetConsoleMode": reflect.ValueOf(q.GetConsoleMode), + "GetCurrentDirectory": reflect.ValueOf(q.GetCurrentDirectory), + "GetCurrentProcess": reflect.ValueOf(q.GetCurrentProcess), + "GetEnvironmentStrings": reflect.ValueOf(q.GetEnvironmentStrings), + "GetEnvironmentVariable": reflect.ValueOf(q.GetEnvironmentVariable), + "GetExitCodeProcess": reflect.ValueOf(q.GetExitCodeProcess), + "GetFileAttributes": reflect.ValueOf(q.GetFileAttributes), + "GetFileAttributesEx": reflect.ValueOf(q.GetFileAttributesEx), + "GetFileInformationByHandle": reflect.ValueOf(q.GetFileInformationByHandle), + "GetFileType": reflect.ValueOf(q.GetFileType), + "GetFullPathName": reflect.ValueOf(q.GetFullPathName), + "GetHostByName": reflect.ValueOf(q.GetHostByName), + "GetIfEntry": reflect.ValueOf(q.GetIfEntry), + "GetLastError": reflect.ValueOf(q.GetLastError), + "GetLengthSid": reflect.ValueOf(q.GetLengthSid), + "GetLongPathName": reflect.ValueOf(q.GetLongPathName), + "GetProcAddress": reflect.ValueOf(q.GetProcAddress), + "GetProcessTimes": reflect.ValueOf(q.GetProcessTimes), + "GetProtoByName": reflect.ValueOf(q.GetProtoByName), + "GetQueuedCompletionStatus": reflect.ValueOf(q.GetQueuedCompletionStatus), + "GetServByName": reflect.ValueOf(q.GetServByName), + "GetShortPathName": reflect.ValueOf(q.GetShortPathName), + "GetStartupInfo": reflect.ValueOf(q.GetStartupInfo), + "GetStdHandle": reflect.ValueOf(q.GetStdHandle), + "GetSystemTimeAsFileTime": reflect.ValueOf(q.GetSystemTimeAsFileTime), + "GetTempPath": reflect.ValueOf(q.GetTempPath), + "GetTimeZoneInformation": reflect.ValueOf(q.GetTimeZoneInformation), + "GetTokenInformation": reflect.ValueOf(q.GetTokenInformation), + "GetUserNameEx": reflect.ValueOf(q.GetUserNameEx), + "GetUserProfileDirectory": reflect.ValueOf(q.GetUserProfileDirectory), + "GetVersion": reflect.ValueOf(q.GetVersion), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "Getsockopt": reflect.ValueOf(q.Getsockopt), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "LoadCancelIoEx": reflect.ValueOf(q.LoadCancelIoEx), + "LoadConnectEx": reflect.ValueOf(q.LoadConnectEx), + "LoadCreateSymbolicLink": reflect.ValueOf(q.LoadCreateSymbolicLink), + "LoadDLL": reflect.ValueOf(q.LoadDLL), + "LoadGetAddrInfo": reflect.ValueOf(q.LoadGetAddrInfo), + "LoadLibrary": reflect.ValueOf(q.LoadLibrary), + "LoadSetFileCompletionNotificationModes": reflect.ValueOf(q.LoadSetFileCompletionNotificationModes), + "LocalFree": reflect.ValueOf(q.LocalFree), + "LookupAccountName": reflect.ValueOf(q.LookupAccountName), + "LookupAccountSid": reflect.ValueOf(q.LookupAccountSid), + "LookupSID": reflect.ValueOf(q.LookupSID), + "MapViewOfFile": reflect.ValueOf(q.MapViewOfFile), + "Mkdir": reflect.ValueOf(q.Mkdir), + "MoveFile": reflect.ValueOf(q.MoveFile), + "MustLoadDLL": reflect.ValueOf(q.MustLoadDLL), + "NetApiBufferFree": reflect.ValueOf(q.NetApiBufferFree), + "NetGetJoinInformation": reflect.ValueOf(q.NetGetJoinInformation), + "NetUserGetInfo": reflect.ValueOf(q.NetUserGetInfo), + "NewCallback": reflect.ValueOf(q.NewCallback), + "NewCallbackCDecl": reflect.ValueOf(q.NewCallbackCDecl), + "NewLazyDLL": reflect.ValueOf(q.NewLazyDLL), + "NsecToFiletime": reflect.ValueOf(q.NsecToFiletime), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Ntohs": reflect.ValueOf(q.Ntohs), + "Open": reflect.ValueOf(q.Open), + "OpenCurrentProcessToken": reflect.ValueOf(q.OpenCurrentProcessToken), + "OpenProcess": reflect.ValueOf(q.OpenProcess), + "OpenProcessToken": reflect.ValueOf(q.OpenProcessToken), + "Pipe": reflect.ValueOf(q.Pipe), + "PostQueuedCompletionStatus": reflect.ValueOf(q.PostQueuedCompletionStatus), + "Process32First": reflect.ValueOf(q.Process32First), + "Process32Next": reflect.ValueOf(q.Process32Next), + "Read": reflect.ValueOf(q.Read), + "ReadConsole": reflect.ValueOf(q.ReadConsole), + "ReadDirectoryChanges": reflect.ValueOf(q.ReadDirectoryChanges), + "ReadFile": reflect.ValueOf(q.ReadFile), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "RegCloseKey": reflect.ValueOf(q.RegCloseKey), + "RegEnumKeyEx": reflect.ValueOf(q.RegEnumKeyEx), + "RegOpenKeyEx": reflect.ValueOf(q.RegOpenKeyEx), + "RegQueryInfoKey": reflect.ValueOf(q.RegQueryInfoKey), + "RegQueryValueEx": reflect.ValueOf(q.RegQueryValueEx), + "RemoveDirectory": reflect.ValueOf(q.RemoveDirectory), + "Rename": reflect.ValueOf(q.Rename), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Sendto": reflect.ValueOf(q.Sendto), + "SetCurrentDirectory": reflect.ValueOf(q.SetCurrentDirectory), + "SetEndOfFile": reflect.ValueOf(q.SetEndOfFile), + "SetEnvironmentVariable": reflect.ValueOf(q.SetEnvironmentVariable), + "SetFileAttributes": reflect.ValueOf(q.SetFileAttributes), + "SetFileCompletionNotificationModes": reflect.ValueOf(q.SetFileCompletionNotificationModes), + "SetFilePointer": reflect.ValueOf(q.SetFilePointer), + "SetFileTime": reflect.ValueOf(q.SetFileTime), + "SetHandleInformation": reflect.ValueOf(q.SetHandleInformation), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setenv": reflect.ValueOf(q.Setenv), + "Setsockopt": reflect.ValueOf(q.Setsockopt), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Shutdown": reflect.ValueOf(q.Shutdown), + "Socket": reflect.ValueOf(q.Socket), + "StartProcess": reflect.ValueOf(q.StartProcess), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringToSid": reflect.ValueOf(q.StringToSid), + "StringToUTF16": reflect.ValueOf(q.StringToUTF16), + "StringToUTF16Ptr": reflect.ValueOf(q.StringToUTF16Ptr), + "Symlink": reflect.ValueOf(q.Symlink), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall12": reflect.ValueOf(q.Syscall12), + "Syscall15": reflect.ValueOf(q.Syscall15), + "Syscall18": reflect.ValueOf(q.Syscall18), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "SyscallN": reflect.ValueOf(q.SyscallN), + "TerminateProcess": reflect.ValueOf(q.TerminateProcess), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TranslateAccountName": reflect.ValueOf(q.TranslateAccountName), + "TranslateName": reflect.ValueOf(q.TranslateName), + "TransmitFile": reflect.ValueOf(q.TransmitFile), + "UTF16FromString": reflect.ValueOf(q.UTF16FromString), + "UTF16PtrFromString": reflect.ValueOf(q.UTF16PtrFromString), + "UTF16ToString": reflect.ValueOf(q.UTF16ToString), + "Unlink": reflect.ValueOf(q.Unlink), + "UnmapViewOfFile": reflect.ValueOf(q.UnmapViewOfFile), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "VirtualLock": reflect.ValueOf(q.VirtualLock), + "VirtualUnlock": reflect.ValueOf(q.VirtualUnlock), + "WSACleanup": reflect.ValueOf(q.WSACleanup), + "WSAEnumProtocols": reflect.ValueOf(q.WSAEnumProtocols), + "WSAIoctl": reflect.ValueOf(q.WSAIoctl), + "WSARecv": reflect.ValueOf(q.WSARecv), + "WSARecvFrom": reflect.ValueOf(q.WSARecvFrom), + "WSASend": reflect.ValueOf(q.WSASend), + "WSASendTo": reflect.ValueOf(q.WSASendTo), + "WSASendto": reflect.ValueOf(q.WSASendto), + "WSAStartup": reflect.ValueOf(q.WSAStartup), + "WaitForSingleObject": reflect.ValueOf(q.WaitForSingleObject), + "Write": reflect.ValueOf(q.Write), + "WriteConsole": reflect.ValueOf(q.WriteConsole), + "WriteFile": reflect.ValueOf(q.WriteFile), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERROR_ACCESS_DENIED": {reflect.TypeOf(q.ERROR_ACCESS_DENIED), constant.MakeInt64(int64(q.ERROR_ACCESS_DENIED))}, + "ERROR_ALREADY_EXISTS": {reflect.TypeOf(q.ERROR_ALREADY_EXISTS), constant.MakeInt64(int64(q.ERROR_ALREADY_EXISTS))}, + "ERROR_BROKEN_PIPE": {reflect.TypeOf(q.ERROR_BROKEN_PIPE), constant.MakeInt64(int64(q.ERROR_BROKEN_PIPE))}, + "ERROR_BUFFER_OVERFLOW": {reflect.TypeOf(q.ERROR_BUFFER_OVERFLOW), constant.MakeInt64(int64(q.ERROR_BUFFER_OVERFLOW))}, + "ERROR_DIR_NOT_EMPTY": {reflect.TypeOf(q.ERROR_DIR_NOT_EMPTY), constant.MakeInt64(int64(q.ERROR_DIR_NOT_EMPTY))}, + "ERROR_ENVVAR_NOT_FOUND": {reflect.TypeOf(q.ERROR_ENVVAR_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_ENVVAR_NOT_FOUND))}, + "ERROR_FILE_EXISTS": {reflect.TypeOf(q.ERROR_FILE_EXISTS), constant.MakeInt64(int64(q.ERROR_FILE_EXISTS))}, + "ERROR_FILE_NOT_FOUND": {reflect.TypeOf(q.ERROR_FILE_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_FILE_NOT_FOUND))}, + "ERROR_HANDLE_EOF": {reflect.TypeOf(q.ERROR_HANDLE_EOF), constant.MakeInt64(int64(q.ERROR_HANDLE_EOF))}, + "ERROR_INSUFFICIENT_BUFFER": {reflect.TypeOf(q.ERROR_INSUFFICIENT_BUFFER), constant.MakeInt64(int64(q.ERROR_INSUFFICIENT_BUFFER))}, + "ERROR_IO_PENDING": {reflect.TypeOf(q.ERROR_IO_PENDING), constant.MakeInt64(int64(q.ERROR_IO_PENDING))}, + "ERROR_MOD_NOT_FOUND": {reflect.TypeOf(q.ERROR_MOD_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_MOD_NOT_FOUND))}, + "ERROR_MORE_DATA": {reflect.TypeOf(q.ERROR_MORE_DATA), constant.MakeInt64(int64(q.ERROR_MORE_DATA))}, + "ERROR_NETNAME_DELETED": {reflect.TypeOf(q.ERROR_NETNAME_DELETED), constant.MakeInt64(int64(q.ERROR_NETNAME_DELETED))}, + "ERROR_NOT_FOUND": {reflect.TypeOf(q.ERROR_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_NOT_FOUND))}, + "ERROR_NO_MORE_FILES": {reflect.TypeOf(q.ERROR_NO_MORE_FILES), constant.MakeInt64(int64(q.ERROR_NO_MORE_FILES))}, + "ERROR_OPERATION_ABORTED": {reflect.TypeOf(q.ERROR_OPERATION_ABORTED), constant.MakeInt64(int64(q.ERROR_OPERATION_ABORTED))}, + "ERROR_PATH_NOT_FOUND": {reflect.TypeOf(q.ERROR_PATH_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_PATH_NOT_FOUND))}, + "ERROR_PRIVILEGE_NOT_HELD": {reflect.TypeOf(q.ERROR_PRIVILEGE_NOT_HELD), constant.MakeInt64(int64(q.ERROR_PRIVILEGE_NOT_HELD))}, + "ERROR_PROC_NOT_FOUND": {reflect.TypeOf(q.ERROR_PROC_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_PROC_NOT_FOUND))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWINDOWS": {reflect.TypeOf(q.EWINDOWS), constant.MakeInt64(int64(q.EWINDOWS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "InvalidHandle": {reflect.TypeOf(q.InvalidHandle), constant.MakeUint64(uint64(q.InvalidHandle))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "WSAEACCES": {reflect.TypeOf(q.WSAEACCES), constant.MakeInt64(int64(q.WSAEACCES))}, + "WSAECONNABORTED": {reflect.TypeOf(q.WSAECONNABORTED), constant.MakeInt64(int64(q.WSAECONNABORTED))}, + "WSAECONNRESET": {reflect.TypeOf(q.WSAECONNRESET), constant.MakeInt64(int64(q.WSAECONNRESET))}, + "WSAENOPROTOOPT": {reflect.TypeOf(q.WSAENOPROTOOPT), constant.MakeInt64(int64(q.WSAENOPROTOOPT))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AI_CANONNAME": {"untyped int", constant.MakeInt64(int64(q.AI_CANONNAME))}, + "AI_NUMERICHOST": {"untyped int", constant.MakeInt64(int64(q.AI_NUMERICHOST))}, + "AI_PASSIVE": {"untyped int", constant.MakeInt64(int64(q.AI_PASSIVE))}, + "APPLICATION_ERROR": {"untyped int", constant.MakeInt64(int64(q.APPLICATION_ERROR))}, + "AUTHTYPE_CLIENT": {"untyped int", constant.MakeInt64(int64(q.AUTHTYPE_CLIENT))}, + "AUTHTYPE_SERVER": {"untyped int", constant.MakeInt64(int64(q.AUTHTYPE_SERVER))}, + "BASE_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.BASE_PROTOCOL))}, + "CERT_CHAIN_POLICY_AUTHENTICODE": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_AUTHENTICODE))}, + "CERT_CHAIN_POLICY_AUTHENTICODE_TS": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_AUTHENTICODE_TS))}, + "CERT_CHAIN_POLICY_BASE": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_BASE))}, + "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_BASIC_CONSTRAINTS))}, + "CERT_CHAIN_POLICY_EV": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_EV))}, + "CERT_CHAIN_POLICY_MICROSOFT_ROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_MICROSOFT_ROOT))}, + "CERT_CHAIN_POLICY_NT_AUTH": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_NT_AUTH))}, + "CERT_CHAIN_POLICY_SSL": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_SSL))}, + "CERT_E_CN_NO_MATCH": {"untyped int", constant.MakeInt64(int64(q.CERT_E_CN_NO_MATCH))}, + "CERT_E_EXPIRED": {"untyped int", constant.MakeInt64(int64(q.CERT_E_EXPIRED))}, + "CERT_E_PURPOSE": {"untyped int", constant.MakeInt64(int64(q.CERT_E_PURPOSE))}, + "CERT_E_ROLE": {"untyped int", constant.MakeInt64(int64(q.CERT_E_ROLE))}, + "CERT_E_UNTRUSTEDROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_E_UNTRUSTEDROOT))}, + "CERT_STORE_ADD_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_ADD_ALWAYS))}, + "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG))}, + "CERT_STORE_PROV_MEMORY": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_PROV_MEMORY))}, + "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT))}, + "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT))}, + "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_BASIC_CONSTRAINTS))}, + "CERT_TRUST_INVALID_EXTENSION": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_EXTENSION))}, + "CERT_TRUST_INVALID_NAME_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_NAME_CONSTRAINTS))}, + "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_POLICY_CONSTRAINTS))}, + "CERT_TRUST_IS_CYCLIC": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_CYCLIC))}, + "CERT_TRUST_IS_EXPLICIT_DISTRUST": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_EXPLICIT_DISTRUST))}, + "CERT_TRUST_IS_NOT_SIGNATURE_VALID": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_SIGNATURE_VALID))}, + "CERT_TRUST_IS_NOT_TIME_VALID": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_TIME_VALID))}, + "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_VALID_FOR_USAGE))}, + "CERT_TRUST_IS_OFFLINE_REVOCATION": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_OFFLINE_REVOCATION))}, + "CERT_TRUST_IS_REVOKED": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_REVOKED))}, + "CERT_TRUST_IS_UNTRUSTED_ROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_UNTRUSTED_ROOT))}, + "CERT_TRUST_NO_ERROR": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_NO_ERROR))}, + "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY))}, + "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_REVOCATION_STATUS_UNKNOWN))}, + "CREATE_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.CREATE_ALWAYS))}, + "CREATE_NEW": {"untyped int", constant.MakeInt64(int64(q.CREATE_NEW))}, + "CREATE_NEW_PROCESS_GROUP": {"untyped int", constant.MakeInt64(int64(q.CREATE_NEW_PROCESS_GROUP))}, + "CREATE_UNICODE_ENVIRONMENT": {"untyped int", constant.MakeInt64(int64(q.CREATE_UNICODE_ENVIRONMENT))}, + "CRYPT_DEFAULT_CONTAINER_OPTIONAL": {"untyped int", constant.MakeInt64(int64(q.CRYPT_DEFAULT_CONTAINER_OPTIONAL))}, + "CRYPT_DELETEKEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_DELETEKEYSET))}, + "CRYPT_MACHINE_KEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_MACHINE_KEYSET))}, + "CRYPT_NEWKEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_NEWKEYSET))}, + "CRYPT_SILENT": {"untyped int", constant.MakeInt64(int64(q.CRYPT_SILENT))}, + "CRYPT_VERIFYCONTEXT": {"untyped int", constant.MakeInt64(int64(q.CRYPT_VERIFYCONTEXT))}, + "CTRL_BREAK_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_BREAK_EVENT))}, + "CTRL_CLOSE_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_CLOSE_EVENT))}, + "CTRL_C_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_C_EVENT))}, + "CTRL_LOGOFF_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_LOGOFF_EVENT))}, + "CTRL_SHUTDOWN_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_SHUTDOWN_EVENT))}, + "DNS_INFO_NO_RECORDS": {"untyped int", constant.MakeInt64(int64(q.DNS_INFO_NO_RECORDS))}, + "DNS_TYPE_A": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_A))}, + "DNS_TYPE_A6": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_A6))}, + "DNS_TYPE_AAAA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AAAA))}, + "DNS_TYPE_ADDRS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ADDRS))}, + "DNS_TYPE_AFSDB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AFSDB))}, + "DNS_TYPE_ALL": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ALL))}, + "DNS_TYPE_ANY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ANY))}, + "DNS_TYPE_ATMA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ATMA))}, + "DNS_TYPE_AXFR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AXFR))}, + "DNS_TYPE_CERT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_CERT))}, + "DNS_TYPE_CNAME": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_CNAME))}, + "DNS_TYPE_DHCID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DHCID))}, + "DNS_TYPE_DNAME": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DNAME))}, + "DNS_TYPE_DNSKEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DNSKEY))}, + "DNS_TYPE_DS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DS))}, + "DNS_TYPE_EID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_EID))}, + "DNS_TYPE_GID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_GID))}, + "DNS_TYPE_GPOS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_GPOS))}, + "DNS_TYPE_HINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_HINFO))}, + "DNS_TYPE_ISDN": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ISDN))}, + "DNS_TYPE_IXFR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_IXFR))}, + "DNS_TYPE_KEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_KEY))}, + "DNS_TYPE_KX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_KX))}, + "DNS_TYPE_LOC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_LOC))}, + "DNS_TYPE_MAILA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MAILA))}, + "DNS_TYPE_MAILB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MAILB))}, + "DNS_TYPE_MB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MB))}, + "DNS_TYPE_MD": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MD))}, + "DNS_TYPE_MF": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MF))}, + "DNS_TYPE_MG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MG))}, + "DNS_TYPE_MINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MINFO))}, + "DNS_TYPE_MR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MR))}, + "DNS_TYPE_MX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MX))}, + "DNS_TYPE_NAPTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NAPTR))}, + "DNS_TYPE_NBSTAT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NBSTAT))}, + "DNS_TYPE_NIMLOC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NIMLOC))}, + "DNS_TYPE_NS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NS))}, + "DNS_TYPE_NSAP": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSAP))}, + "DNS_TYPE_NSAPPTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSAPPTR))}, + "DNS_TYPE_NSEC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSEC))}, + "DNS_TYPE_NULL": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NULL))}, + "DNS_TYPE_NXT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NXT))}, + "DNS_TYPE_OPT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_OPT))}, + "DNS_TYPE_PTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_PTR))}, + "DNS_TYPE_PX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_PX))}, + "DNS_TYPE_RP": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RP))}, + "DNS_TYPE_RRSIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RRSIG))}, + "DNS_TYPE_RT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RT))}, + "DNS_TYPE_SIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SIG))}, + "DNS_TYPE_SINK": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SINK))}, + "DNS_TYPE_SOA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SOA))}, + "DNS_TYPE_SRV": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SRV))}, + "DNS_TYPE_TEXT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TEXT))}, + "DNS_TYPE_TKEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TKEY))}, + "DNS_TYPE_TSIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TSIG))}, + "DNS_TYPE_UID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UID))}, + "DNS_TYPE_UINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UINFO))}, + "DNS_TYPE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UNSPEC))}, + "DNS_TYPE_WINS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WINS))}, + "DNS_TYPE_WINSR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WINSR))}, + "DNS_TYPE_WKS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WKS))}, + "DNS_TYPE_X25": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_X25))}, + "DUPLICATE_CLOSE_SOURCE": {"untyped int", constant.MakeInt64(int64(q.DUPLICATE_CLOSE_SOURCE))}, + "DUPLICATE_SAME_ACCESS": {"untyped int", constant.MakeInt64(int64(q.DUPLICATE_SAME_ACCESS))}, + "DnsSectionAdditional": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAdditional))}, + "DnsSectionAnswer": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAnswer))}, + "DnsSectionAuthority": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAuthority))}, + "DnsSectionQuestion": {"untyped int", constant.MakeInt64(int64(q.DnsSectionQuestion))}, + "FILE_ACTION_ADDED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_ADDED))}, + "FILE_ACTION_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_MODIFIED))}, + "FILE_ACTION_REMOVED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_REMOVED))}, + "FILE_ACTION_RENAMED_NEW_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_RENAMED_NEW_NAME))}, + "FILE_ACTION_RENAMED_OLD_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_RENAMED_OLD_NAME))}, + "FILE_APPEND_DATA": {"untyped int", constant.MakeInt64(int64(q.FILE_APPEND_DATA))}, + "FILE_ATTRIBUTE_ARCHIVE": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_ARCHIVE))}, + "FILE_ATTRIBUTE_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_DIRECTORY))}, + "FILE_ATTRIBUTE_HIDDEN": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_HIDDEN))}, + "FILE_ATTRIBUTE_NORMAL": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_NORMAL))}, + "FILE_ATTRIBUTE_READONLY": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_READONLY))}, + "FILE_ATTRIBUTE_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_REPARSE_POINT))}, + "FILE_ATTRIBUTE_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_SYSTEM))}, + "FILE_BEGIN": {"untyped int", constant.MakeInt64(int64(q.FILE_BEGIN))}, + "FILE_CURRENT": {"untyped int", constant.MakeInt64(int64(q.FILE_CURRENT))}, + "FILE_END": {"untyped int", constant.MakeInt64(int64(q.FILE_END))}, + "FILE_FLAG_BACKUP_SEMANTICS": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_BACKUP_SEMANTICS))}, + "FILE_FLAG_OPEN_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_OPEN_REPARSE_POINT))}, + "FILE_FLAG_OVERLAPPED": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_OVERLAPPED))}, + "FILE_LIST_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.FILE_LIST_DIRECTORY))}, + "FILE_MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_COPY))}, + "FILE_MAP_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_EXECUTE))}, + "FILE_MAP_READ": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_READ))}, + "FILE_MAP_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_WRITE))}, + "FILE_NOTIFY_CHANGE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_ATTRIBUTES))}, + "FILE_NOTIFY_CHANGE_CREATION": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_CREATION))}, + "FILE_NOTIFY_CHANGE_DIR_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_DIR_NAME))}, + "FILE_NOTIFY_CHANGE_FILE_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_FILE_NAME))}, + "FILE_NOTIFY_CHANGE_LAST_ACCESS": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_LAST_ACCESS))}, + "FILE_NOTIFY_CHANGE_LAST_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_LAST_WRITE))}, + "FILE_NOTIFY_CHANGE_SIZE": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_SIZE))}, + "FILE_SHARE_DELETE": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_DELETE))}, + "FILE_SHARE_READ": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_READ))}, + "FILE_SHARE_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_WRITE))}, + "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": {"untyped int", constant.MakeInt64(int64(q.FILE_SKIP_COMPLETION_PORT_ON_SUCCESS))}, + "FILE_SKIP_SET_EVENT_ON_HANDLE": {"untyped int", constant.MakeInt64(int64(q.FILE_SKIP_SET_EVENT_ON_HANDLE))}, + "FILE_TYPE_CHAR": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_CHAR))}, + "FILE_TYPE_DISK": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_DISK))}, + "FILE_TYPE_PIPE": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_PIPE))}, + "FILE_TYPE_REMOTE": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_REMOTE))}, + "FILE_TYPE_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_UNKNOWN))}, + "FILE_WRITE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.FILE_WRITE_ATTRIBUTES))}, + "FORMAT_MESSAGE_ALLOCATE_BUFFER": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_ALLOCATE_BUFFER))}, + "FORMAT_MESSAGE_ARGUMENT_ARRAY": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_ARGUMENT_ARRAY))}, + "FORMAT_MESSAGE_FROM_HMODULE": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_HMODULE))}, + "FORMAT_MESSAGE_FROM_STRING": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_STRING))}, + "FORMAT_MESSAGE_FROM_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_SYSTEM))}, + "FORMAT_MESSAGE_IGNORE_INSERTS": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_IGNORE_INSERTS))}, + "FORMAT_MESSAGE_MAX_WIDTH_MASK": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_MAX_WIDTH_MASK))}, + "FSCTL_GET_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FSCTL_GET_REPARSE_POINT))}, + "GENERIC_ALL": {"untyped int", constant.MakeInt64(int64(q.GENERIC_ALL))}, + "GENERIC_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.GENERIC_EXECUTE))}, + "GENERIC_READ": {"untyped int", constant.MakeInt64(int64(q.GENERIC_READ))}, + "GENERIC_WRITE": {"untyped int", constant.MakeInt64(int64(q.GENERIC_WRITE))}, + "GetFileExInfoStandard": {"untyped int", constant.MakeInt64(int64(q.GetFileExInfoStandard))}, + "GetFileExMaxInfoLevel": {"untyped int", constant.MakeInt64(int64(q.GetFileExMaxInfoLevel))}, + "HANDLE_FLAG_INHERIT": {"untyped int", constant.MakeInt64(int64(q.HANDLE_FLAG_INHERIT))}, + "HKEY_CLASSES_ROOT": {"untyped int", constant.MakeInt64(int64(q.HKEY_CLASSES_ROOT))}, + "HKEY_CURRENT_CONFIG": {"untyped int", constant.MakeInt64(int64(q.HKEY_CURRENT_CONFIG))}, + "HKEY_CURRENT_USER": {"untyped int", constant.MakeInt64(int64(q.HKEY_CURRENT_USER))}, + "HKEY_DYN_DATA": {"untyped int", constant.MakeInt64(int64(q.HKEY_DYN_DATA))}, + "HKEY_LOCAL_MACHINE": {"untyped int", constant.MakeInt64(int64(q.HKEY_LOCAL_MACHINE))}, + "HKEY_PERFORMANCE_DATA": {"untyped int", constant.MakeInt64(int64(q.HKEY_PERFORMANCE_DATA))}, + "HKEY_USERS": {"untyped int", constant.MakeInt64(int64(q.HKEY_USERS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_POINTTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTTOPOINT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IGNORE": {"untyped int", constant.MakeInt64(int64(q.IGNORE))}, + "INFINITE": {"untyped int", constant.MakeInt64(int64(q.INFINITE))}, + "INVALID_FILE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.INVALID_FILE_ATTRIBUTES))}, + "IOC_IN": {"untyped int", constant.MakeInt64(int64(q.IOC_IN))}, + "IOC_INOUT": {"untyped int", constant.MakeInt64(int64(q.IOC_INOUT))}, + "IOC_OUT": {"untyped int", constant.MakeInt64(int64(q.IOC_OUT))}, + "IOC_VENDOR": {"untyped int", constant.MakeInt64(int64(q.IOC_VENDOR))}, + "IOC_WS2": {"untyped int", constant.MakeInt64(int64(q.IOC_WS2))}, + "IO_REPARSE_TAG_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.IO_REPARSE_TAG_SYMLINK))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "KEY_ALL_ACCESS": {"untyped int", constant.MakeInt64(int64(q.KEY_ALL_ACCESS))}, + "KEY_CREATE_LINK": {"untyped int", constant.MakeInt64(int64(q.KEY_CREATE_LINK))}, + "KEY_CREATE_SUB_KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_CREATE_SUB_KEY))}, + "KEY_ENUMERATE_SUB_KEYS": {"untyped int", constant.MakeInt64(int64(q.KEY_ENUMERATE_SUB_KEYS))}, + "KEY_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.KEY_EXECUTE))}, + "KEY_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.KEY_NOTIFY))}, + "KEY_QUERY_VALUE": {"untyped int", constant.MakeInt64(int64(q.KEY_QUERY_VALUE))}, + "KEY_READ": {"untyped int", constant.MakeInt64(int64(q.KEY_READ))}, + "KEY_SET_VALUE": {"untyped int", constant.MakeInt64(int64(q.KEY_SET_VALUE))}, + "KEY_WOW64_32KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_WOW64_32KEY))}, + "KEY_WOW64_64KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_WOW64_64KEY))}, + "KEY_WRITE": {"untyped int", constant.MakeInt64(int64(q.KEY_WRITE))}, + "LANG_ENGLISH": {"untyped int", constant.MakeInt64(int64(q.LANG_ENGLISH))}, + "LAYERED_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.LAYERED_PROTOCOL))}, + "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": {"untyped int", constant.MakeInt64(int64(q.MAXIMUM_REPARSE_DATA_BUFFER_SIZE))}, + "MAXLEN_IFDESCR": {"untyped int", constant.MakeInt64(int64(q.MAXLEN_IFDESCR))}, + "MAXLEN_PHYSADDR": {"untyped int", constant.MakeInt64(int64(q.MAXLEN_PHYSADDR))}, + "MAX_ADAPTER_ADDRESS_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_ADDRESS_LENGTH))}, + "MAX_ADAPTER_DESCRIPTION_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_DESCRIPTION_LENGTH))}, + "MAX_ADAPTER_NAME_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_NAME_LENGTH))}, + "MAX_COMPUTERNAME_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_COMPUTERNAME_LENGTH))}, + "MAX_INTERFACE_NAME_LEN": {"untyped int", constant.MakeInt64(int64(q.MAX_INTERFACE_NAME_LEN))}, + "MAX_LONG_PATH": {"untyped int", constant.MakeInt64(int64(q.MAX_LONG_PATH))}, + "MAX_PATH": {"untyped int", constant.MakeInt64(int64(q.MAX_PATH))}, + "MAX_PROTOCOL_CHAIN": {"untyped int", constant.MakeInt64(int64(q.MAX_PROTOCOL_CHAIN))}, + "MaxTokenInfoClass": {"untyped int", constant.MakeInt64(int64(q.MaxTokenInfoClass))}, + "NameCanonical": {"untyped int", constant.MakeInt64(int64(q.NameCanonical))}, + "NameCanonicalEx": {"untyped int", constant.MakeInt64(int64(q.NameCanonicalEx))}, + "NameDisplay": {"untyped int", constant.MakeInt64(int64(q.NameDisplay))}, + "NameDnsDomain": {"untyped int", constant.MakeInt64(int64(q.NameDnsDomain))}, + "NameFullyQualifiedDN": {"untyped int", constant.MakeInt64(int64(q.NameFullyQualifiedDN))}, + "NameSamCompatible": {"untyped int", constant.MakeInt64(int64(q.NameSamCompatible))}, + "NameServicePrincipal": {"untyped int", constant.MakeInt64(int64(q.NameServicePrincipal))}, + "NameUniqueId": {"untyped int", constant.MakeInt64(int64(q.NameUniqueId))}, + "NameUnknown": {"untyped int", constant.MakeInt64(int64(q.NameUnknown))}, + "NameUserPrincipal": {"untyped int", constant.MakeInt64(int64(q.NameUserPrincipal))}, + "NetSetupDomainName": {"untyped int", constant.MakeInt64(int64(q.NetSetupDomainName))}, + "NetSetupUnjoined": {"untyped int", constant.MakeInt64(int64(q.NetSetupUnjoined))}, + "NetSetupUnknownStatus": {"untyped int", constant.MakeInt64(int64(q.NetSetupUnknownStatus))}, + "NetSetupWorkgroupName": {"untyped int", constant.MakeInt64(int64(q.NetSetupWorkgroupName))}, + "OPEN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.OPEN_ALWAYS))}, + "OPEN_EXISTING": {"untyped int", constant.MakeInt64(int64(q.OPEN_EXISTING))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PAGE_EXECUTE_READ": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_READ))}, + "PAGE_EXECUTE_READWRITE": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_READWRITE))}, + "PAGE_EXECUTE_WRITECOPY": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_WRITECOPY))}, + "PAGE_READONLY": {"untyped int", constant.MakeInt64(int64(q.PAGE_READONLY))}, + "PAGE_READWRITE": {"untyped int", constant.MakeInt64(int64(q.PAGE_READWRITE))}, + "PAGE_WRITECOPY": {"untyped int", constant.MakeInt64(int64(q.PAGE_WRITECOPY))}, + "PFL_HIDDEN": {"untyped int", constant.MakeInt64(int64(q.PFL_HIDDEN))}, + "PFL_MATCHES_PROTOCOL_ZERO": {"untyped int", constant.MakeInt64(int64(q.PFL_MATCHES_PROTOCOL_ZERO))}, + "PFL_MULTIPLE_PROTO_ENTRIES": {"untyped int", constant.MakeInt64(int64(q.PFL_MULTIPLE_PROTO_ENTRIES))}, + "PFL_NETWORKDIRECT_PROVIDER": {"untyped int", constant.MakeInt64(int64(q.PFL_NETWORKDIRECT_PROVIDER))}, + "PFL_RECOMMENDED_PROTO_ENTRY": {"untyped int", constant.MakeInt64(int64(q.PFL_RECOMMENDED_PROTO_ENTRY))}, + "PKCS_7_ASN_ENCODING": {"untyped int", constant.MakeInt64(int64(q.PKCS_7_ASN_ENCODING))}, + "PROCESS_QUERY_INFORMATION": {"untyped int", constant.MakeInt64(int64(q.PROCESS_QUERY_INFORMATION))}, + "PROCESS_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.PROCESS_TERMINATE))}, + "PROV_DH_SCHANNEL": {"untyped int", constant.MakeInt64(int64(q.PROV_DH_SCHANNEL))}, + "PROV_DSS": {"untyped int", constant.MakeInt64(int64(q.PROV_DSS))}, + "PROV_DSS_DH": {"untyped int", constant.MakeInt64(int64(q.PROV_DSS_DH))}, + "PROV_EC_ECDSA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECDSA_FULL))}, + "PROV_EC_ECDSA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECDSA_SIG))}, + "PROV_EC_ECNRA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECNRA_FULL))}, + "PROV_EC_ECNRA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECNRA_SIG))}, + "PROV_FORTEZZA": {"untyped int", constant.MakeInt64(int64(q.PROV_FORTEZZA))}, + "PROV_INTEL_SEC": {"untyped int", constant.MakeInt64(int64(q.PROV_INTEL_SEC))}, + "PROV_MS_EXCHANGE": {"untyped int", constant.MakeInt64(int64(q.PROV_MS_EXCHANGE))}, + "PROV_REPLACE_OWF": {"untyped int", constant.MakeInt64(int64(q.PROV_REPLACE_OWF))}, + "PROV_RNG": {"untyped int", constant.MakeInt64(int64(q.PROV_RNG))}, + "PROV_RSA_AES": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_AES))}, + "PROV_RSA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_FULL))}, + "PROV_RSA_SCHANNEL": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_SCHANNEL))}, + "PROV_RSA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_SIG))}, + "PROV_SPYRUS_LYNKS": {"untyped int", constant.MakeInt64(int64(q.PROV_SPYRUS_LYNKS))}, + "PROV_SSL": {"untyped int", constant.MakeInt64(int64(q.PROV_SSL))}, + "REG_BINARY": {"untyped int", constant.MakeInt64(int64(q.REG_BINARY))}, + "REG_DWORD": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD))}, + "REG_DWORD_BIG_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD_BIG_ENDIAN))}, + "REG_DWORD_LITTLE_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD_LITTLE_ENDIAN))}, + "REG_EXPAND_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_EXPAND_SZ))}, + "REG_FULL_RESOURCE_DESCRIPTOR": {"untyped int", constant.MakeInt64(int64(q.REG_FULL_RESOURCE_DESCRIPTOR))}, + "REG_LINK": {"untyped int", constant.MakeInt64(int64(q.REG_LINK))}, + "REG_MULTI_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_MULTI_SZ))}, + "REG_NONE": {"untyped int", constant.MakeInt64(int64(q.REG_NONE))}, + "REG_QWORD": {"untyped int", constant.MakeInt64(int64(q.REG_QWORD))}, + "REG_QWORD_LITTLE_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_QWORD_LITTLE_ENDIAN))}, + "REG_RESOURCE_LIST": {"untyped int", constant.MakeInt64(int64(q.REG_RESOURCE_LIST))}, + "REG_RESOURCE_REQUIREMENTS_LIST": {"untyped int", constant.MakeInt64(int64(q.REG_RESOURCE_REQUIREMENTS_LIST))}, + "REG_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_SZ))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIO_GET_EXTENSION_FUNCTION_POINTER": {"untyped int", constant.MakeInt64(int64(q.SIO_GET_EXTENSION_FUNCTION_POINTER))}, + "SIO_GET_INTERFACE_LIST": {"untyped int", constant.MakeInt64(int64(q.SIO_GET_INTERFACE_LIST))}, + "SIO_KEEPALIVE_VALS": {"untyped int", constant.MakeInt64(int64(q.SIO_KEEPALIVE_VALS))}, + "SIO_UDP_CONNRESET": {"untyped int", constant.MakeInt64(int64(q.SIO_UDP_CONNRESET))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_UPDATE_ACCEPT_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.SO_UPDATE_ACCEPT_CONTEXT))}, + "SO_UPDATE_CONNECT_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.SO_UPDATE_CONNECT_CONTEXT))}, + "STANDARD_RIGHTS_ALL": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_ALL))}, + "STANDARD_RIGHTS_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_EXECUTE))}, + "STANDARD_RIGHTS_READ": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_READ))}, + "STANDARD_RIGHTS_REQUIRED": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_REQUIRED))}, + "STANDARD_RIGHTS_WRITE": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_WRITE))}, + "STARTF_USESHOWWINDOW": {"untyped int", constant.MakeInt64(int64(q.STARTF_USESHOWWINDOW))}, + "STARTF_USESTDHANDLES": {"untyped int", constant.MakeInt64(int64(q.STARTF_USESTDHANDLES))}, + "STD_ERROR_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_ERROR_HANDLE))}, + "STD_INPUT_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_INPUT_HANDLE))}, + "STD_OUTPUT_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_OUTPUT_HANDLE))}, + "SUBLANG_ENGLISH_US": {"untyped int", constant.MakeInt64(int64(q.SUBLANG_ENGLISH_US))}, + "SW_FORCEMINIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_FORCEMINIMIZE))}, + "SW_HIDE": {"untyped int", constant.MakeInt64(int64(q.SW_HIDE))}, + "SW_MAXIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_MAXIMIZE))}, + "SW_MINIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_MINIMIZE))}, + "SW_NORMAL": {"untyped int", constant.MakeInt64(int64(q.SW_NORMAL))}, + "SW_RESTORE": {"untyped int", constant.MakeInt64(int64(q.SW_RESTORE))}, + "SW_SHOW": {"untyped int", constant.MakeInt64(int64(q.SW_SHOW))}, + "SW_SHOWDEFAULT": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWDEFAULT))}, + "SW_SHOWMAXIMIZED": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMAXIMIZED))}, + "SW_SHOWMINIMIZED": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMINIMIZED))}, + "SW_SHOWMINNOACTIVE": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMINNOACTIVE))}, + "SW_SHOWNA": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNA))}, + "SW_SHOWNOACTIVATE": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNOACTIVATE))}, + "SW_SHOWNORMAL": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNORMAL))}, + "SYMBOLIC_LINK_FLAG_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.SYMBOLIC_LINK_FLAG_DIRECTORY))}, + "SYNCHRONIZE": {"untyped int", constant.MakeInt64(int64(q.SYNCHRONIZE))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SidTypeAlias": {"untyped int", constant.MakeInt64(int64(q.SidTypeAlias))}, + "SidTypeComputer": {"untyped int", constant.MakeInt64(int64(q.SidTypeComputer))}, + "SidTypeDeletedAccount": {"untyped int", constant.MakeInt64(int64(q.SidTypeDeletedAccount))}, + "SidTypeDomain": {"untyped int", constant.MakeInt64(int64(q.SidTypeDomain))}, + "SidTypeGroup": {"untyped int", constant.MakeInt64(int64(q.SidTypeGroup))}, + "SidTypeInvalid": {"untyped int", constant.MakeInt64(int64(q.SidTypeInvalid))}, + "SidTypeLabel": {"untyped int", constant.MakeInt64(int64(q.SidTypeLabel))}, + "SidTypeUnknown": {"untyped int", constant.MakeInt64(int64(q.SidTypeUnknown))}, + "SidTypeUser": {"untyped int", constant.MakeInt64(int64(q.SidTypeUser))}, + "SidTypeWellKnownGroup": {"untyped int", constant.MakeInt64(int64(q.SidTypeWellKnownGroup))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TF_DISCONNECT": {"untyped int", constant.MakeInt64(int64(q.TF_DISCONNECT))}, + "TF_REUSE_SOCKET": {"untyped int", constant.MakeInt64(int64(q.TF_REUSE_SOCKET))}, + "TF_USE_DEFAULT_WORKER": {"untyped int", constant.MakeInt64(int64(q.TF_USE_DEFAULT_WORKER))}, + "TF_USE_KERNEL_APC": {"untyped int", constant.MakeInt64(int64(q.TF_USE_KERNEL_APC))}, + "TF_USE_SYSTEM_THREAD": {"untyped int", constant.MakeInt64(int64(q.TF_USE_SYSTEM_THREAD))}, + "TF_WRITE_BEHIND": {"untyped int", constant.MakeInt64(int64(q.TF_WRITE_BEHIND))}, + "TH32CS_INHERIT": {"untyped int", constant.MakeInt64(int64(q.TH32CS_INHERIT))}, + "TH32CS_SNAPALL": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPALL))}, + "TH32CS_SNAPHEAPLIST": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPHEAPLIST))}, + "TH32CS_SNAPMODULE": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPMODULE))}, + "TH32CS_SNAPMODULE32": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPMODULE32))}, + "TH32CS_SNAPPROCESS": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPPROCESS))}, + "TH32CS_SNAPTHREAD": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPTHREAD))}, + "TIME_ZONE_ID_DAYLIGHT": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_DAYLIGHT))}, + "TIME_ZONE_ID_STANDARD": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_STANDARD))}, + "TIME_ZONE_ID_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_UNKNOWN))}, + "TOKEN_ADJUST_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_DEFAULT))}, + "TOKEN_ADJUST_GROUPS": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_GROUPS))}, + "TOKEN_ADJUST_PRIVILEGES": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_PRIVILEGES))}, + "TOKEN_ADJUST_SESSIONID": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_SESSIONID))}, + "TOKEN_ALL_ACCESS": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ALL_ACCESS))}, + "TOKEN_ASSIGN_PRIMARY": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ASSIGN_PRIMARY))}, + "TOKEN_DUPLICATE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_DUPLICATE))}, + "TOKEN_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_EXECUTE))}, + "TOKEN_IMPERSONATE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_IMPERSONATE))}, + "TOKEN_QUERY": {"untyped int", constant.MakeInt64(int64(q.TOKEN_QUERY))}, + "TOKEN_QUERY_SOURCE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_QUERY_SOURCE))}, + "TOKEN_READ": {"untyped int", constant.MakeInt64(int64(q.TOKEN_READ))}, + "TOKEN_WRITE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_WRITE))}, + "TRUNCATE_EXISTING": {"untyped int", constant.MakeInt64(int64(q.TRUNCATE_EXISTING))}, + "TokenAccessInformation": {"untyped int", constant.MakeInt64(int64(q.TokenAccessInformation))}, + "TokenAuditPolicy": {"untyped int", constant.MakeInt64(int64(q.TokenAuditPolicy))}, + "TokenDefaultDacl": {"untyped int", constant.MakeInt64(int64(q.TokenDefaultDacl))}, + "TokenElevation": {"untyped int", constant.MakeInt64(int64(q.TokenElevation))}, + "TokenElevationType": {"untyped int", constant.MakeInt64(int64(q.TokenElevationType))}, + "TokenGroups": {"untyped int", constant.MakeInt64(int64(q.TokenGroups))}, + "TokenGroupsAndPrivileges": {"untyped int", constant.MakeInt64(int64(q.TokenGroupsAndPrivileges))}, + "TokenHasRestrictions": {"untyped int", constant.MakeInt64(int64(q.TokenHasRestrictions))}, + "TokenImpersonationLevel": {"untyped int", constant.MakeInt64(int64(q.TokenImpersonationLevel))}, + "TokenIntegrityLevel": {"untyped int", constant.MakeInt64(int64(q.TokenIntegrityLevel))}, + "TokenLinkedToken": {"untyped int", constant.MakeInt64(int64(q.TokenLinkedToken))}, + "TokenLogonSid": {"untyped int", constant.MakeInt64(int64(q.TokenLogonSid))}, + "TokenMandatoryPolicy": {"untyped int", constant.MakeInt64(int64(q.TokenMandatoryPolicy))}, + "TokenOrigin": {"untyped int", constant.MakeInt64(int64(q.TokenOrigin))}, + "TokenOwner": {"untyped int", constant.MakeInt64(int64(q.TokenOwner))}, + "TokenPrimaryGroup": {"untyped int", constant.MakeInt64(int64(q.TokenPrimaryGroup))}, + "TokenPrivileges": {"untyped int", constant.MakeInt64(int64(q.TokenPrivileges))}, + "TokenRestrictedSids": {"untyped int", constant.MakeInt64(int64(q.TokenRestrictedSids))}, + "TokenSandBoxInert": {"untyped int", constant.MakeInt64(int64(q.TokenSandBoxInert))}, + "TokenSessionId": {"untyped int", constant.MakeInt64(int64(q.TokenSessionId))}, + "TokenSessionReference": {"untyped int", constant.MakeInt64(int64(q.TokenSessionReference))}, + "TokenSource": {"untyped int", constant.MakeInt64(int64(q.TokenSource))}, + "TokenStatistics": {"untyped int", constant.MakeInt64(int64(q.TokenStatistics))}, + "TokenType": {"untyped int", constant.MakeInt64(int64(q.TokenType))}, + "TokenUIAccess": {"untyped int", constant.MakeInt64(int64(q.TokenUIAccess))}, + "TokenUser": {"untyped int", constant.MakeInt64(int64(q.TokenUser))}, + "TokenVirtualizationAllowed": {"untyped int", constant.MakeInt64(int64(q.TokenVirtualizationAllowed))}, + "TokenVirtualizationEnabled": {"untyped int", constant.MakeInt64(int64(q.TokenVirtualizationEnabled))}, + "UNIX_PATH_MAX": {"untyped int", constant.MakeInt64(int64(q.UNIX_PATH_MAX))}, + "USAGE_MATCH_TYPE_AND": {"untyped int", constant.MakeInt64(int64(q.USAGE_MATCH_TYPE_AND))}, + "USAGE_MATCH_TYPE_OR": {"untyped int", constant.MakeInt64(int64(q.USAGE_MATCH_TYPE_OR))}, + "WAIT_ABANDONED": {"untyped int", constant.MakeInt64(int64(q.WAIT_ABANDONED))}, + "WAIT_FAILED": {"untyped int", constant.MakeInt64(int64(q.WAIT_FAILED))}, + "WAIT_OBJECT_0": {"untyped int", constant.MakeInt64(int64(q.WAIT_OBJECT_0))}, + "WAIT_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.WAIT_TIMEOUT))}, + "WSADESCRIPTION_LEN": {"untyped int", constant.MakeInt64(int64(q.WSADESCRIPTION_LEN))}, + "WSAPROTOCOL_LEN": {"untyped int", constant.MakeInt64(int64(q.WSAPROTOCOL_LEN))}, + "WSASYS_STATUS_LEN": {"untyped int", constant.MakeInt64(int64(q.WSASYS_STATUS_LEN))}, + "X509_ASN_ENCODING": {"untyped int", constant.MakeInt64(int64(q.X509_ASN_ENCODING))}, + "XP1_CONNECTIONLESS": {"untyped int", constant.MakeInt64(int64(q.XP1_CONNECTIONLESS))}, + "XP1_CONNECT_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_CONNECT_DATA))}, + "XP1_DISCONNECT_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_DISCONNECT_DATA))}, + "XP1_EXPEDITED_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_EXPEDITED_DATA))}, + "XP1_GRACEFUL_CLOSE": {"untyped int", constant.MakeInt64(int64(q.XP1_GRACEFUL_CLOSE))}, + "XP1_GUARANTEED_DELIVERY": {"untyped int", constant.MakeInt64(int64(q.XP1_GUARANTEED_DELIVERY))}, + "XP1_GUARANTEED_ORDER": {"untyped int", constant.MakeInt64(int64(q.XP1_GUARANTEED_ORDER))}, + "XP1_IFS_HANDLES": {"untyped int", constant.MakeInt64(int64(q.XP1_IFS_HANDLES))}, + "XP1_MESSAGE_ORIENTED": {"untyped int", constant.MakeInt64(int64(q.XP1_MESSAGE_ORIENTED))}, + "XP1_MULTIPOINT_CONTROL_PLANE": {"untyped int", constant.MakeInt64(int64(q.XP1_MULTIPOINT_CONTROL_PLANE))}, + "XP1_MULTIPOINT_DATA_PLANE": {"untyped int", constant.MakeInt64(int64(q.XP1_MULTIPOINT_DATA_PLANE))}, + "XP1_PARTIAL_MESSAGE": {"untyped int", constant.MakeInt64(int64(q.XP1_PARTIAL_MESSAGE))}, + "XP1_PSEUDO_STREAM": {"untyped int", constant.MakeInt64(int64(q.XP1_PSEUDO_STREAM))}, + "XP1_QOS_SUPPORTED": {"untyped int", constant.MakeInt64(int64(q.XP1_QOS_SUPPORTED))}, + "XP1_SAN_SUPPORT_SDP": {"untyped int", constant.MakeInt64(int64(q.XP1_SAN_SUPPORT_SDP))}, + "XP1_SUPPORT_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.XP1_SUPPORT_BROADCAST))}, + "XP1_SUPPORT_MULTIPOINT": {"untyped int", constant.MakeInt64(int64(q.XP1_SUPPORT_MULTIPOINT))}, + "XP1_UNI_RECV": {"untyped int", constant.MakeInt64(int64(q.XP1_UNI_RECV))}, + "XP1_UNI_SEND": {"untyped int", constant.MakeInt64(int64(q.XP1_UNI_SEND))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_windows_amd64.go b/pkg/syscall/go123_export_windows_amd64.go new file mode 100755 index 00000000..8ee1f18a --- /dev/null +++ b/pkg/syscall/go123_export_windows_amd64.go @@ -0,0 +1,1043 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/syscall/windows/sysdll": "sysdll", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unicode/utf16": "utf16", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "AddrinfoW": reflect.TypeOf((*q.AddrinfoW)(nil)).Elem(), + "ByHandleFileInformation": reflect.TypeOf((*q.ByHandleFileInformation)(nil)).Elem(), + "CertChainContext": reflect.TypeOf((*q.CertChainContext)(nil)).Elem(), + "CertChainElement": reflect.TypeOf((*q.CertChainElement)(nil)).Elem(), + "CertChainPara": reflect.TypeOf((*q.CertChainPara)(nil)).Elem(), + "CertChainPolicyPara": reflect.TypeOf((*q.CertChainPolicyPara)(nil)).Elem(), + "CertChainPolicyStatus": reflect.TypeOf((*q.CertChainPolicyStatus)(nil)).Elem(), + "CertContext": reflect.TypeOf((*q.CertContext)(nil)).Elem(), + "CertEnhKeyUsage": reflect.TypeOf((*q.CertEnhKeyUsage)(nil)).Elem(), + "CertInfo": reflect.TypeOf((*q.CertInfo)(nil)).Elem(), + "CertRevocationCrlInfo": reflect.TypeOf((*q.CertRevocationCrlInfo)(nil)).Elem(), + "CertRevocationInfo": reflect.TypeOf((*q.CertRevocationInfo)(nil)).Elem(), + "CertSimpleChain": reflect.TypeOf((*q.CertSimpleChain)(nil)).Elem(), + "CertTrustListInfo": reflect.TypeOf((*q.CertTrustListInfo)(nil)).Elem(), + "CertTrustStatus": reflect.TypeOf((*q.CertTrustStatus)(nil)).Elem(), + "CertUsageMatch": reflect.TypeOf((*q.CertUsageMatch)(nil)).Elem(), + "DLL": reflect.TypeOf((*q.DLL)(nil)).Elem(), + "DLLError": reflect.TypeOf((*q.DLLError)(nil)).Elem(), + "DNSMXData": reflect.TypeOf((*q.DNSMXData)(nil)).Elem(), + "DNSPTRData": reflect.TypeOf((*q.DNSPTRData)(nil)).Elem(), + "DNSRecord": reflect.TypeOf((*q.DNSRecord)(nil)).Elem(), + "DNSSRVData": reflect.TypeOf((*q.DNSSRVData)(nil)).Elem(), + "DNSTXTData": reflect.TypeOf((*q.DNSTXTData)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FileNotifyInformation": reflect.TypeOf((*q.FileNotifyInformation)(nil)).Elem(), + "Filetime": reflect.TypeOf((*q.Filetime)(nil)).Elem(), + "GUID": reflect.TypeOf((*q.GUID)(nil)).Elem(), + "Handle": reflect.TypeOf((*q.Handle)(nil)).Elem(), + "Hostent": reflect.TypeOf((*q.Hostent)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "InterfaceInfo": reflect.TypeOf((*q.InterfaceInfo)(nil)).Elem(), + "IpAdapterInfo": reflect.TypeOf((*q.IpAdapterInfo)(nil)).Elem(), + "IpAddrString": reflect.TypeOf((*q.IpAddrString)(nil)).Elem(), + "IpAddressString": reflect.TypeOf((*q.IpAddressString)(nil)).Elem(), + "IpMaskString": reflect.TypeOf((*q.IpMaskString)(nil)).Elem(), + "LazyDLL": reflect.TypeOf((*q.LazyDLL)(nil)).Elem(), + "LazyProc": reflect.TypeOf((*q.LazyProc)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "MibIfRow": reflect.TypeOf((*q.MibIfRow)(nil)).Elem(), + "Overlapped": reflect.TypeOf((*q.Overlapped)(nil)).Elem(), + "Pointer": reflect.TypeOf((*q.Pointer)(nil)).Elem(), + "Proc": reflect.TypeOf((*q.Proc)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "ProcessEntry32": reflect.TypeOf((*q.ProcessEntry32)(nil)).Elem(), + "ProcessInformation": reflect.TypeOf((*q.ProcessInformation)(nil)).Elem(), + "Protoent": reflect.TypeOf((*q.Protoent)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "SID": reflect.TypeOf((*q.SID)(nil)).Elem(), + "SIDAndAttributes": reflect.TypeOf((*q.SIDAndAttributes)(nil)).Elem(), + "SSLExtraCertChainPolicyPara": reflect.TypeOf((*q.SSLExtraCertChainPolicyPara)(nil)).Elem(), + "SecurityAttributes": reflect.TypeOf((*q.SecurityAttributes)(nil)).Elem(), + "Servent": reflect.TypeOf((*q.Servent)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrGen": reflect.TypeOf((*q.SockaddrGen)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "StartupInfo": reflect.TypeOf((*q.StartupInfo)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Systemtime": reflect.TypeOf((*q.Systemtime)(nil)).Elem(), + "TCPKeepalive": reflect.TypeOf((*q.TCPKeepalive)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timezoneinformation": reflect.TypeOf((*q.Timezoneinformation)(nil)).Elem(), + "Token": reflect.TypeOf((*q.Token)(nil)).Elem(), + "Tokenprimarygroup": reflect.TypeOf((*q.Tokenprimarygroup)(nil)).Elem(), + "Tokenuser": reflect.TypeOf((*q.Tokenuser)(nil)).Elem(), + "TransmitFileBuffers": reflect.TypeOf((*q.TransmitFileBuffers)(nil)).Elem(), + "UserInfo10": reflect.TypeOf((*q.UserInfo10)(nil)).Elem(), + "WSABuf": reflect.TypeOf((*q.WSABuf)(nil)).Elem(), + "WSAData": reflect.TypeOf((*q.WSAData)(nil)).Elem(), + "WSAProtocolChain": reflect.TypeOf((*q.WSAProtocolChain)(nil)).Elem(), + "WSAProtocolInfo": reflect.TypeOf((*q.WSAProtocolInfo)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + "Win32FileAttributeData": reflect.TypeOf((*q.Win32FileAttributeData)(nil)).Elem(), + "Win32finddata": reflect.TypeOf((*q.Win32finddata)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&q.OID_PKIX_KP_SERVER_AUTH), + "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&q.OID_SERVER_GATED_CRYPTO), + "OID_SGC_NETSCAPE": reflect.ValueOf(&q.OID_SGC_NETSCAPE), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + "WSAID_CONNECTEX": reflect.ValueOf(&q.WSAID_CONNECTEX), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "AcceptEx": reflect.ValueOf(q.AcceptEx), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "CancelIo": reflect.ValueOf(q.CancelIo), + "CancelIoEx": reflect.ValueOf(q.CancelIoEx), + "CertAddCertificateContextToStore": reflect.ValueOf(q.CertAddCertificateContextToStore), + "CertCloseStore": reflect.ValueOf(q.CertCloseStore), + "CertCreateCertificateContext": reflect.ValueOf(q.CertCreateCertificateContext), + "CertEnumCertificatesInStore": reflect.ValueOf(q.CertEnumCertificatesInStore), + "CertFreeCertificateChain": reflect.ValueOf(q.CertFreeCertificateChain), + "CertFreeCertificateContext": reflect.ValueOf(q.CertFreeCertificateContext), + "CertGetCertificateChain": reflect.ValueOf(q.CertGetCertificateChain), + "CertOpenStore": reflect.ValueOf(q.CertOpenStore), + "CertOpenSystemStore": reflect.ValueOf(q.CertOpenSystemStore), + "CertVerifyCertificateChainPolicy": reflect.ValueOf(q.CertVerifyCertificateChainPolicy), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseHandle": reflect.ValueOf(q.CloseHandle), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "Closesocket": reflect.ValueOf(q.Closesocket), + "CommandLineToArgv": reflect.ValueOf(q.CommandLineToArgv), + "ComputerName": reflect.ValueOf(q.ComputerName), + "Connect": reflect.ValueOf(q.Connect), + "ConnectEx": reflect.ValueOf(q.ConnectEx), + "ConvertSidToStringSid": reflect.ValueOf(q.ConvertSidToStringSid), + "ConvertStringSidToSid": reflect.ValueOf(q.ConvertStringSidToSid), + "CopySid": reflect.ValueOf(q.CopySid), + "CreateDirectory": reflect.ValueOf(q.CreateDirectory), + "CreateFile": reflect.ValueOf(q.CreateFile), + "CreateFileMapping": reflect.ValueOf(q.CreateFileMapping), + "CreateHardLink": reflect.ValueOf(q.CreateHardLink), + "CreateIoCompletionPort": reflect.ValueOf(q.CreateIoCompletionPort), + "CreatePipe": reflect.ValueOf(q.CreatePipe), + "CreateProcess": reflect.ValueOf(q.CreateProcess), + "CreateProcessAsUser": reflect.ValueOf(q.CreateProcessAsUser), + "CreateSymbolicLink": reflect.ValueOf(q.CreateSymbolicLink), + "CreateToolhelp32Snapshot": reflect.ValueOf(q.CreateToolhelp32Snapshot), + "CryptAcquireContext": reflect.ValueOf(q.CryptAcquireContext), + "CryptGenRandom": reflect.ValueOf(q.CryptGenRandom), + "CryptReleaseContext": reflect.ValueOf(q.CryptReleaseContext), + "DeleteFile": reflect.ValueOf(q.DeleteFile), + "DeviceIoControl": reflect.ValueOf(q.DeviceIoControl), + "DnsNameCompare": reflect.ValueOf(q.DnsNameCompare), + "DnsQuery": reflect.ValueOf(q.DnsQuery), + "DnsRecordListFree": reflect.ValueOf(q.DnsRecordListFree), + "DuplicateHandle": reflect.ValueOf(q.DuplicateHandle), + "Environ": reflect.ValueOf(q.Environ), + "EscapeArg": reflect.ValueOf(q.EscapeArg), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "ExitProcess": reflect.ValueOf(q.ExitProcess), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FindClose": reflect.ValueOf(q.FindClose), + "FindFirstFile": reflect.ValueOf(q.FindFirstFile), + "FindNextFile": reflect.ValueOf(q.FindNextFile), + "FlushFileBuffers": reflect.ValueOf(q.FlushFileBuffers), + "FlushViewOfFile": reflect.ValueOf(q.FlushViewOfFile), + "FormatMessage": reflect.ValueOf(q.FormatMessage), + "FreeAddrInfoW": reflect.ValueOf(q.FreeAddrInfoW), + "FreeEnvironmentStrings": reflect.ValueOf(q.FreeEnvironmentStrings), + "FreeLibrary": reflect.ValueOf(q.FreeLibrary), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "FullPath": reflect.ValueOf(q.FullPath), + "GetAcceptExSockaddrs": reflect.ValueOf(q.GetAcceptExSockaddrs), + "GetAdaptersInfo": reflect.ValueOf(q.GetAdaptersInfo), + "GetAddrInfoW": reflect.ValueOf(q.GetAddrInfoW), + "GetCommandLine": reflect.ValueOf(q.GetCommandLine), + "GetComputerName": reflect.ValueOf(q.GetComputerName), + "GetConsoleMode": reflect.ValueOf(q.GetConsoleMode), + "GetCurrentDirectory": reflect.ValueOf(q.GetCurrentDirectory), + "GetCurrentProcess": reflect.ValueOf(q.GetCurrentProcess), + "GetEnvironmentStrings": reflect.ValueOf(q.GetEnvironmentStrings), + "GetEnvironmentVariable": reflect.ValueOf(q.GetEnvironmentVariable), + "GetExitCodeProcess": reflect.ValueOf(q.GetExitCodeProcess), + "GetFileAttributes": reflect.ValueOf(q.GetFileAttributes), + "GetFileAttributesEx": reflect.ValueOf(q.GetFileAttributesEx), + "GetFileInformationByHandle": reflect.ValueOf(q.GetFileInformationByHandle), + "GetFileType": reflect.ValueOf(q.GetFileType), + "GetFullPathName": reflect.ValueOf(q.GetFullPathName), + "GetHostByName": reflect.ValueOf(q.GetHostByName), + "GetIfEntry": reflect.ValueOf(q.GetIfEntry), + "GetLastError": reflect.ValueOf(q.GetLastError), + "GetLengthSid": reflect.ValueOf(q.GetLengthSid), + "GetLongPathName": reflect.ValueOf(q.GetLongPathName), + "GetProcAddress": reflect.ValueOf(q.GetProcAddress), + "GetProcessTimes": reflect.ValueOf(q.GetProcessTimes), + "GetProtoByName": reflect.ValueOf(q.GetProtoByName), + "GetQueuedCompletionStatus": reflect.ValueOf(q.GetQueuedCompletionStatus), + "GetServByName": reflect.ValueOf(q.GetServByName), + "GetShortPathName": reflect.ValueOf(q.GetShortPathName), + "GetStartupInfo": reflect.ValueOf(q.GetStartupInfo), + "GetStdHandle": reflect.ValueOf(q.GetStdHandle), + "GetSystemTimeAsFileTime": reflect.ValueOf(q.GetSystemTimeAsFileTime), + "GetTempPath": reflect.ValueOf(q.GetTempPath), + "GetTimeZoneInformation": reflect.ValueOf(q.GetTimeZoneInformation), + "GetTokenInformation": reflect.ValueOf(q.GetTokenInformation), + "GetUserNameEx": reflect.ValueOf(q.GetUserNameEx), + "GetUserProfileDirectory": reflect.ValueOf(q.GetUserProfileDirectory), + "GetVersion": reflect.ValueOf(q.GetVersion), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "Getsockopt": reflect.ValueOf(q.Getsockopt), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "LoadCancelIoEx": reflect.ValueOf(q.LoadCancelIoEx), + "LoadConnectEx": reflect.ValueOf(q.LoadConnectEx), + "LoadCreateSymbolicLink": reflect.ValueOf(q.LoadCreateSymbolicLink), + "LoadDLL": reflect.ValueOf(q.LoadDLL), + "LoadGetAddrInfo": reflect.ValueOf(q.LoadGetAddrInfo), + "LoadLibrary": reflect.ValueOf(q.LoadLibrary), + "LoadSetFileCompletionNotificationModes": reflect.ValueOf(q.LoadSetFileCompletionNotificationModes), + "LocalFree": reflect.ValueOf(q.LocalFree), + "LookupAccountName": reflect.ValueOf(q.LookupAccountName), + "LookupAccountSid": reflect.ValueOf(q.LookupAccountSid), + "LookupSID": reflect.ValueOf(q.LookupSID), + "MapViewOfFile": reflect.ValueOf(q.MapViewOfFile), + "Mkdir": reflect.ValueOf(q.Mkdir), + "MoveFile": reflect.ValueOf(q.MoveFile), + "MustLoadDLL": reflect.ValueOf(q.MustLoadDLL), + "NetApiBufferFree": reflect.ValueOf(q.NetApiBufferFree), + "NetGetJoinInformation": reflect.ValueOf(q.NetGetJoinInformation), + "NetUserGetInfo": reflect.ValueOf(q.NetUserGetInfo), + "NewCallback": reflect.ValueOf(q.NewCallback), + "NewCallbackCDecl": reflect.ValueOf(q.NewCallbackCDecl), + "NewLazyDLL": reflect.ValueOf(q.NewLazyDLL), + "NsecToFiletime": reflect.ValueOf(q.NsecToFiletime), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Ntohs": reflect.ValueOf(q.Ntohs), + "Open": reflect.ValueOf(q.Open), + "OpenCurrentProcessToken": reflect.ValueOf(q.OpenCurrentProcessToken), + "OpenProcess": reflect.ValueOf(q.OpenProcess), + "OpenProcessToken": reflect.ValueOf(q.OpenProcessToken), + "Pipe": reflect.ValueOf(q.Pipe), + "PostQueuedCompletionStatus": reflect.ValueOf(q.PostQueuedCompletionStatus), + "Process32First": reflect.ValueOf(q.Process32First), + "Process32Next": reflect.ValueOf(q.Process32Next), + "Read": reflect.ValueOf(q.Read), + "ReadConsole": reflect.ValueOf(q.ReadConsole), + "ReadDirectoryChanges": reflect.ValueOf(q.ReadDirectoryChanges), + "ReadFile": reflect.ValueOf(q.ReadFile), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "RegCloseKey": reflect.ValueOf(q.RegCloseKey), + "RegEnumKeyEx": reflect.ValueOf(q.RegEnumKeyEx), + "RegOpenKeyEx": reflect.ValueOf(q.RegOpenKeyEx), + "RegQueryInfoKey": reflect.ValueOf(q.RegQueryInfoKey), + "RegQueryValueEx": reflect.ValueOf(q.RegQueryValueEx), + "RemoveDirectory": reflect.ValueOf(q.RemoveDirectory), + "Rename": reflect.ValueOf(q.Rename), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Sendto": reflect.ValueOf(q.Sendto), + "SetCurrentDirectory": reflect.ValueOf(q.SetCurrentDirectory), + "SetEndOfFile": reflect.ValueOf(q.SetEndOfFile), + "SetEnvironmentVariable": reflect.ValueOf(q.SetEnvironmentVariable), + "SetFileAttributes": reflect.ValueOf(q.SetFileAttributes), + "SetFileCompletionNotificationModes": reflect.ValueOf(q.SetFileCompletionNotificationModes), + "SetFilePointer": reflect.ValueOf(q.SetFilePointer), + "SetFileTime": reflect.ValueOf(q.SetFileTime), + "SetHandleInformation": reflect.ValueOf(q.SetHandleInformation), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setenv": reflect.ValueOf(q.Setenv), + "Setsockopt": reflect.ValueOf(q.Setsockopt), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Shutdown": reflect.ValueOf(q.Shutdown), + "Socket": reflect.ValueOf(q.Socket), + "StartProcess": reflect.ValueOf(q.StartProcess), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringToSid": reflect.ValueOf(q.StringToSid), + "StringToUTF16": reflect.ValueOf(q.StringToUTF16), + "StringToUTF16Ptr": reflect.ValueOf(q.StringToUTF16Ptr), + "Symlink": reflect.ValueOf(q.Symlink), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall12": reflect.ValueOf(q.Syscall12), + "Syscall15": reflect.ValueOf(q.Syscall15), + "Syscall18": reflect.ValueOf(q.Syscall18), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "SyscallN": reflect.ValueOf(q.SyscallN), + "TerminateProcess": reflect.ValueOf(q.TerminateProcess), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TranslateAccountName": reflect.ValueOf(q.TranslateAccountName), + "TranslateName": reflect.ValueOf(q.TranslateName), + "TransmitFile": reflect.ValueOf(q.TransmitFile), + "UTF16FromString": reflect.ValueOf(q.UTF16FromString), + "UTF16PtrFromString": reflect.ValueOf(q.UTF16PtrFromString), + "UTF16ToString": reflect.ValueOf(q.UTF16ToString), + "Unlink": reflect.ValueOf(q.Unlink), + "UnmapViewOfFile": reflect.ValueOf(q.UnmapViewOfFile), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "VirtualLock": reflect.ValueOf(q.VirtualLock), + "VirtualUnlock": reflect.ValueOf(q.VirtualUnlock), + "WSACleanup": reflect.ValueOf(q.WSACleanup), + "WSAEnumProtocols": reflect.ValueOf(q.WSAEnumProtocols), + "WSAIoctl": reflect.ValueOf(q.WSAIoctl), + "WSARecv": reflect.ValueOf(q.WSARecv), + "WSARecvFrom": reflect.ValueOf(q.WSARecvFrom), + "WSASend": reflect.ValueOf(q.WSASend), + "WSASendTo": reflect.ValueOf(q.WSASendTo), + "WSASendto": reflect.ValueOf(q.WSASendto), + "WSAStartup": reflect.ValueOf(q.WSAStartup), + "WaitForSingleObject": reflect.ValueOf(q.WaitForSingleObject), + "Write": reflect.ValueOf(q.Write), + "WriteConsole": reflect.ValueOf(q.WriteConsole), + "WriteFile": reflect.ValueOf(q.WriteFile), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERROR_ACCESS_DENIED": {reflect.TypeOf(q.ERROR_ACCESS_DENIED), constant.MakeInt64(int64(q.ERROR_ACCESS_DENIED))}, + "ERROR_ALREADY_EXISTS": {reflect.TypeOf(q.ERROR_ALREADY_EXISTS), constant.MakeInt64(int64(q.ERROR_ALREADY_EXISTS))}, + "ERROR_BROKEN_PIPE": {reflect.TypeOf(q.ERROR_BROKEN_PIPE), constant.MakeInt64(int64(q.ERROR_BROKEN_PIPE))}, + "ERROR_BUFFER_OVERFLOW": {reflect.TypeOf(q.ERROR_BUFFER_OVERFLOW), constant.MakeInt64(int64(q.ERROR_BUFFER_OVERFLOW))}, + "ERROR_DIR_NOT_EMPTY": {reflect.TypeOf(q.ERROR_DIR_NOT_EMPTY), constant.MakeInt64(int64(q.ERROR_DIR_NOT_EMPTY))}, + "ERROR_ENVVAR_NOT_FOUND": {reflect.TypeOf(q.ERROR_ENVVAR_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_ENVVAR_NOT_FOUND))}, + "ERROR_FILE_EXISTS": {reflect.TypeOf(q.ERROR_FILE_EXISTS), constant.MakeInt64(int64(q.ERROR_FILE_EXISTS))}, + "ERROR_FILE_NOT_FOUND": {reflect.TypeOf(q.ERROR_FILE_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_FILE_NOT_FOUND))}, + "ERROR_HANDLE_EOF": {reflect.TypeOf(q.ERROR_HANDLE_EOF), constant.MakeInt64(int64(q.ERROR_HANDLE_EOF))}, + "ERROR_INSUFFICIENT_BUFFER": {reflect.TypeOf(q.ERROR_INSUFFICIENT_BUFFER), constant.MakeInt64(int64(q.ERROR_INSUFFICIENT_BUFFER))}, + "ERROR_IO_PENDING": {reflect.TypeOf(q.ERROR_IO_PENDING), constant.MakeInt64(int64(q.ERROR_IO_PENDING))}, + "ERROR_MOD_NOT_FOUND": {reflect.TypeOf(q.ERROR_MOD_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_MOD_NOT_FOUND))}, + "ERROR_MORE_DATA": {reflect.TypeOf(q.ERROR_MORE_DATA), constant.MakeInt64(int64(q.ERROR_MORE_DATA))}, + "ERROR_NETNAME_DELETED": {reflect.TypeOf(q.ERROR_NETNAME_DELETED), constant.MakeInt64(int64(q.ERROR_NETNAME_DELETED))}, + "ERROR_NOT_FOUND": {reflect.TypeOf(q.ERROR_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_NOT_FOUND))}, + "ERROR_NO_MORE_FILES": {reflect.TypeOf(q.ERROR_NO_MORE_FILES), constant.MakeInt64(int64(q.ERROR_NO_MORE_FILES))}, + "ERROR_OPERATION_ABORTED": {reflect.TypeOf(q.ERROR_OPERATION_ABORTED), constant.MakeInt64(int64(q.ERROR_OPERATION_ABORTED))}, + "ERROR_PATH_NOT_FOUND": {reflect.TypeOf(q.ERROR_PATH_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_PATH_NOT_FOUND))}, + "ERROR_PRIVILEGE_NOT_HELD": {reflect.TypeOf(q.ERROR_PRIVILEGE_NOT_HELD), constant.MakeInt64(int64(q.ERROR_PRIVILEGE_NOT_HELD))}, + "ERROR_PROC_NOT_FOUND": {reflect.TypeOf(q.ERROR_PROC_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_PROC_NOT_FOUND))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWINDOWS": {reflect.TypeOf(q.EWINDOWS), constant.MakeInt64(int64(q.EWINDOWS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "InvalidHandle": {reflect.TypeOf(q.InvalidHandle), constant.MakeUint64(uint64(q.InvalidHandle))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "WSAEACCES": {reflect.TypeOf(q.WSAEACCES), constant.MakeInt64(int64(q.WSAEACCES))}, + "WSAECONNABORTED": {reflect.TypeOf(q.WSAECONNABORTED), constant.MakeInt64(int64(q.WSAECONNABORTED))}, + "WSAECONNRESET": {reflect.TypeOf(q.WSAECONNRESET), constant.MakeInt64(int64(q.WSAECONNRESET))}, + "WSAENOPROTOOPT": {reflect.TypeOf(q.WSAENOPROTOOPT), constant.MakeInt64(int64(q.WSAENOPROTOOPT))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AI_CANONNAME": {"untyped int", constant.MakeInt64(int64(q.AI_CANONNAME))}, + "AI_NUMERICHOST": {"untyped int", constant.MakeInt64(int64(q.AI_NUMERICHOST))}, + "AI_PASSIVE": {"untyped int", constant.MakeInt64(int64(q.AI_PASSIVE))}, + "APPLICATION_ERROR": {"untyped int", constant.MakeInt64(int64(q.APPLICATION_ERROR))}, + "AUTHTYPE_CLIENT": {"untyped int", constant.MakeInt64(int64(q.AUTHTYPE_CLIENT))}, + "AUTHTYPE_SERVER": {"untyped int", constant.MakeInt64(int64(q.AUTHTYPE_SERVER))}, + "BASE_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.BASE_PROTOCOL))}, + "CERT_CHAIN_POLICY_AUTHENTICODE": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_AUTHENTICODE))}, + "CERT_CHAIN_POLICY_AUTHENTICODE_TS": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_AUTHENTICODE_TS))}, + "CERT_CHAIN_POLICY_BASE": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_BASE))}, + "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_BASIC_CONSTRAINTS))}, + "CERT_CHAIN_POLICY_EV": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_EV))}, + "CERT_CHAIN_POLICY_MICROSOFT_ROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_MICROSOFT_ROOT))}, + "CERT_CHAIN_POLICY_NT_AUTH": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_NT_AUTH))}, + "CERT_CHAIN_POLICY_SSL": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_SSL))}, + "CERT_E_CN_NO_MATCH": {"untyped int", constant.MakeInt64(int64(q.CERT_E_CN_NO_MATCH))}, + "CERT_E_EXPIRED": {"untyped int", constant.MakeInt64(int64(q.CERT_E_EXPIRED))}, + "CERT_E_PURPOSE": {"untyped int", constant.MakeInt64(int64(q.CERT_E_PURPOSE))}, + "CERT_E_ROLE": {"untyped int", constant.MakeInt64(int64(q.CERT_E_ROLE))}, + "CERT_E_UNTRUSTEDROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_E_UNTRUSTEDROOT))}, + "CERT_STORE_ADD_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_ADD_ALWAYS))}, + "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG))}, + "CERT_STORE_PROV_MEMORY": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_PROV_MEMORY))}, + "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT))}, + "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT))}, + "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_BASIC_CONSTRAINTS))}, + "CERT_TRUST_INVALID_EXTENSION": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_EXTENSION))}, + "CERT_TRUST_INVALID_NAME_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_NAME_CONSTRAINTS))}, + "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_POLICY_CONSTRAINTS))}, + "CERT_TRUST_IS_CYCLIC": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_CYCLIC))}, + "CERT_TRUST_IS_EXPLICIT_DISTRUST": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_EXPLICIT_DISTRUST))}, + "CERT_TRUST_IS_NOT_SIGNATURE_VALID": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_SIGNATURE_VALID))}, + "CERT_TRUST_IS_NOT_TIME_VALID": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_TIME_VALID))}, + "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_VALID_FOR_USAGE))}, + "CERT_TRUST_IS_OFFLINE_REVOCATION": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_OFFLINE_REVOCATION))}, + "CERT_TRUST_IS_REVOKED": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_REVOKED))}, + "CERT_TRUST_IS_UNTRUSTED_ROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_UNTRUSTED_ROOT))}, + "CERT_TRUST_NO_ERROR": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_NO_ERROR))}, + "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY))}, + "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_REVOCATION_STATUS_UNKNOWN))}, + "CREATE_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.CREATE_ALWAYS))}, + "CREATE_NEW": {"untyped int", constant.MakeInt64(int64(q.CREATE_NEW))}, + "CREATE_NEW_PROCESS_GROUP": {"untyped int", constant.MakeInt64(int64(q.CREATE_NEW_PROCESS_GROUP))}, + "CREATE_UNICODE_ENVIRONMENT": {"untyped int", constant.MakeInt64(int64(q.CREATE_UNICODE_ENVIRONMENT))}, + "CRYPT_DEFAULT_CONTAINER_OPTIONAL": {"untyped int", constant.MakeInt64(int64(q.CRYPT_DEFAULT_CONTAINER_OPTIONAL))}, + "CRYPT_DELETEKEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_DELETEKEYSET))}, + "CRYPT_MACHINE_KEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_MACHINE_KEYSET))}, + "CRYPT_NEWKEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_NEWKEYSET))}, + "CRYPT_SILENT": {"untyped int", constant.MakeInt64(int64(q.CRYPT_SILENT))}, + "CRYPT_VERIFYCONTEXT": {"untyped int", constant.MakeInt64(int64(q.CRYPT_VERIFYCONTEXT))}, + "CTRL_BREAK_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_BREAK_EVENT))}, + "CTRL_CLOSE_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_CLOSE_EVENT))}, + "CTRL_C_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_C_EVENT))}, + "CTRL_LOGOFF_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_LOGOFF_EVENT))}, + "CTRL_SHUTDOWN_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_SHUTDOWN_EVENT))}, + "DNS_INFO_NO_RECORDS": {"untyped int", constant.MakeInt64(int64(q.DNS_INFO_NO_RECORDS))}, + "DNS_TYPE_A": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_A))}, + "DNS_TYPE_A6": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_A6))}, + "DNS_TYPE_AAAA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AAAA))}, + "DNS_TYPE_ADDRS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ADDRS))}, + "DNS_TYPE_AFSDB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AFSDB))}, + "DNS_TYPE_ALL": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ALL))}, + "DNS_TYPE_ANY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ANY))}, + "DNS_TYPE_ATMA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ATMA))}, + "DNS_TYPE_AXFR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AXFR))}, + "DNS_TYPE_CERT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_CERT))}, + "DNS_TYPE_CNAME": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_CNAME))}, + "DNS_TYPE_DHCID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DHCID))}, + "DNS_TYPE_DNAME": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DNAME))}, + "DNS_TYPE_DNSKEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DNSKEY))}, + "DNS_TYPE_DS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DS))}, + "DNS_TYPE_EID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_EID))}, + "DNS_TYPE_GID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_GID))}, + "DNS_TYPE_GPOS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_GPOS))}, + "DNS_TYPE_HINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_HINFO))}, + "DNS_TYPE_ISDN": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ISDN))}, + "DNS_TYPE_IXFR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_IXFR))}, + "DNS_TYPE_KEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_KEY))}, + "DNS_TYPE_KX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_KX))}, + "DNS_TYPE_LOC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_LOC))}, + "DNS_TYPE_MAILA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MAILA))}, + "DNS_TYPE_MAILB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MAILB))}, + "DNS_TYPE_MB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MB))}, + "DNS_TYPE_MD": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MD))}, + "DNS_TYPE_MF": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MF))}, + "DNS_TYPE_MG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MG))}, + "DNS_TYPE_MINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MINFO))}, + "DNS_TYPE_MR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MR))}, + "DNS_TYPE_MX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MX))}, + "DNS_TYPE_NAPTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NAPTR))}, + "DNS_TYPE_NBSTAT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NBSTAT))}, + "DNS_TYPE_NIMLOC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NIMLOC))}, + "DNS_TYPE_NS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NS))}, + "DNS_TYPE_NSAP": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSAP))}, + "DNS_TYPE_NSAPPTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSAPPTR))}, + "DNS_TYPE_NSEC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSEC))}, + "DNS_TYPE_NULL": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NULL))}, + "DNS_TYPE_NXT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NXT))}, + "DNS_TYPE_OPT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_OPT))}, + "DNS_TYPE_PTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_PTR))}, + "DNS_TYPE_PX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_PX))}, + "DNS_TYPE_RP": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RP))}, + "DNS_TYPE_RRSIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RRSIG))}, + "DNS_TYPE_RT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RT))}, + "DNS_TYPE_SIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SIG))}, + "DNS_TYPE_SINK": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SINK))}, + "DNS_TYPE_SOA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SOA))}, + "DNS_TYPE_SRV": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SRV))}, + "DNS_TYPE_TEXT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TEXT))}, + "DNS_TYPE_TKEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TKEY))}, + "DNS_TYPE_TSIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TSIG))}, + "DNS_TYPE_UID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UID))}, + "DNS_TYPE_UINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UINFO))}, + "DNS_TYPE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UNSPEC))}, + "DNS_TYPE_WINS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WINS))}, + "DNS_TYPE_WINSR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WINSR))}, + "DNS_TYPE_WKS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WKS))}, + "DNS_TYPE_X25": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_X25))}, + "DUPLICATE_CLOSE_SOURCE": {"untyped int", constant.MakeInt64(int64(q.DUPLICATE_CLOSE_SOURCE))}, + "DUPLICATE_SAME_ACCESS": {"untyped int", constant.MakeInt64(int64(q.DUPLICATE_SAME_ACCESS))}, + "DnsSectionAdditional": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAdditional))}, + "DnsSectionAnswer": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAnswer))}, + "DnsSectionAuthority": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAuthority))}, + "DnsSectionQuestion": {"untyped int", constant.MakeInt64(int64(q.DnsSectionQuestion))}, + "FILE_ACTION_ADDED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_ADDED))}, + "FILE_ACTION_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_MODIFIED))}, + "FILE_ACTION_REMOVED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_REMOVED))}, + "FILE_ACTION_RENAMED_NEW_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_RENAMED_NEW_NAME))}, + "FILE_ACTION_RENAMED_OLD_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_RENAMED_OLD_NAME))}, + "FILE_APPEND_DATA": {"untyped int", constant.MakeInt64(int64(q.FILE_APPEND_DATA))}, + "FILE_ATTRIBUTE_ARCHIVE": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_ARCHIVE))}, + "FILE_ATTRIBUTE_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_DIRECTORY))}, + "FILE_ATTRIBUTE_HIDDEN": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_HIDDEN))}, + "FILE_ATTRIBUTE_NORMAL": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_NORMAL))}, + "FILE_ATTRIBUTE_READONLY": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_READONLY))}, + "FILE_ATTRIBUTE_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_REPARSE_POINT))}, + "FILE_ATTRIBUTE_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_SYSTEM))}, + "FILE_BEGIN": {"untyped int", constant.MakeInt64(int64(q.FILE_BEGIN))}, + "FILE_CURRENT": {"untyped int", constant.MakeInt64(int64(q.FILE_CURRENT))}, + "FILE_END": {"untyped int", constant.MakeInt64(int64(q.FILE_END))}, + "FILE_FLAG_BACKUP_SEMANTICS": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_BACKUP_SEMANTICS))}, + "FILE_FLAG_OPEN_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_OPEN_REPARSE_POINT))}, + "FILE_FLAG_OVERLAPPED": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_OVERLAPPED))}, + "FILE_LIST_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.FILE_LIST_DIRECTORY))}, + "FILE_MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_COPY))}, + "FILE_MAP_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_EXECUTE))}, + "FILE_MAP_READ": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_READ))}, + "FILE_MAP_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_WRITE))}, + "FILE_NOTIFY_CHANGE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_ATTRIBUTES))}, + "FILE_NOTIFY_CHANGE_CREATION": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_CREATION))}, + "FILE_NOTIFY_CHANGE_DIR_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_DIR_NAME))}, + "FILE_NOTIFY_CHANGE_FILE_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_FILE_NAME))}, + "FILE_NOTIFY_CHANGE_LAST_ACCESS": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_LAST_ACCESS))}, + "FILE_NOTIFY_CHANGE_LAST_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_LAST_WRITE))}, + "FILE_NOTIFY_CHANGE_SIZE": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_SIZE))}, + "FILE_SHARE_DELETE": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_DELETE))}, + "FILE_SHARE_READ": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_READ))}, + "FILE_SHARE_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_WRITE))}, + "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": {"untyped int", constant.MakeInt64(int64(q.FILE_SKIP_COMPLETION_PORT_ON_SUCCESS))}, + "FILE_SKIP_SET_EVENT_ON_HANDLE": {"untyped int", constant.MakeInt64(int64(q.FILE_SKIP_SET_EVENT_ON_HANDLE))}, + "FILE_TYPE_CHAR": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_CHAR))}, + "FILE_TYPE_DISK": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_DISK))}, + "FILE_TYPE_PIPE": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_PIPE))}, + "FILE_TYPE_REMOTE": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_REMOTE))}, + "FILE_TYPE_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_UNKNOWN))}, + "FILE_WRITE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.FILE_WRITE_ATTRIBUTES))}, + "FORMAT_MESSAGE_ALLOCATE_BUFFER": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_ALLOCATE_BUFFER))}, + "FORMAT_MESSAGE_ARGUMENT_ARRAY": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_ARGUMENT_ARRAY))}, + "FORMAT_MESSAGE_FROM_HMODULE": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_HMODULE))}, + "FORMAT_MESSAGE_FROM_STRING": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_STRING))}, + "FORMAT_MESSAGE_FROM_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_SYSTEM))}, + "FORMAT_MESSAGE_IGNORE_INSERTS": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_IGNORE_INSERTS))}, + "FORMAT_MESSAGE_MAX_WIDTH_MASK": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_MAX_WIDTH_MASK))}, + "FSCTL_GET_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FSCTL_GET_REPARSE_POINT))}, + "GENERIC_ALL": {"untyped int", constant.MakeInt64(int64(q.GENERIC_ALL))}, + "GENERIC_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.GENERIC_EXECUTE))}, + "GENERIC_READ": {"untyped int", constant.MakeInt64(int64(q.GENERIC_READ))}, + "GENERIC_WRITE": {"untyped int", constant.MakeInt64(int64(q.GENERIC_WRITE))}, + "GetFileExInfoStandard": {"untyped int", constant.MakeInt64(int64(q.GetFileExInfoStandard))}, + "GetFileExMaxInfoLevel": {"untyped int", constant.MakeInt64(int64(q.GetFileExMaxInfoLevel))}, + "HANDLE_FLAG_INHERIT": {"untyped int", constant.MakeInt64(int64(q.HANDLE_FLAG_INHERIT))}, + "HKEY_CLASSES_ROOT": {"untyped int", constant.MakeInt64(int64(q.HKEY_CLASSES_ROOT))}, + "HKEY_CURRENT_CONFIG": {"untyped int", constant.MakeInt64(int64(q.HKEY_CURRENT_CONFIG))}, + "HKEY_CURRENT_USER": {"untyped int", constant.MakeInt64(int64(q.HKEY_CURRENT_USER))}, + "HKEY_DYN_DATA": {"untyped int", constant.MakeInt64(int64(q.HKEY_DYN_DATA))}, + "HKEY_LOCAL_MACHINE": {"untyped int", constant.MakeInt64(int64(q.HKEY_LOCAL_MACHINE))}, + "HKEY_PERFORMANCE_DATA": {"untyped int", constant.MakeInt64(int64(q.HKEY_PERFORMANCE_DATA))}, + "HKEY_USERS": {"untyped int", constant.MakeInt64(int64(q.HKEY_USERS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_POINTTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTTOPOINT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IGNORE": {"untyped int", constant.MakeInt64(int64(q.IGNORE))}, + "INFINITE": {"untyped int", constant.MakeInt64(int64(q.INFINITE))}, + "INVALID_FILE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.INVALID_FILE_ATTRIBUTES))}, + "IOC_IN": {"untyped int", constant.MakeInt64(int64(q.IOC_IN))}, + "IOC_INOUT": {"untyped int", constant.MakeInt64(int64(q.IOC_INOUT))}, + "IOC_OUT": {"untyped int", constant.MakeInt64(int64(q.IOC_OUT))}, + "IOC_VENDOR": {"untyped int", constant.MakeInt64(int64(q.IOC_VENDOR))}, + "IOC_WS2": {"untyped int", constant.MakeInt64(int64(q.IOC_WS2))}, + "IO_REPARSE_TAG_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.IO_REPARSE_TAG_SYMLINK))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "KEY_ALL_ACCESS": {"untyped int", constant.MakeInt64(int64(q.KEY_ALL_ACCESS))}, + "KEY_CREATE_LINK": {"untyped int", constant.MakeInt64(int64(q.KEY_CREATE_LINK))}, + "KEY_CREATE_SUB_KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_CREATE_SUB_KEY))}, + "KEY_ENUMERATE_SUB_KEYS": {"untyped int", constant.MakeInt64(int64(q.KEY_ENUMERATE_SUB_KEYS))}, + "KEY_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.KEY_EXECUTE))}, + "KEY_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.KEY_NOTIFY))}, + "KEY_QUERY_VALUE": {"untyped int", constant.MakeInt64(int64(q.KEY_QUERY_VALUE))}, + "KEY_READ": {"untyped int", constant.MakeInt64(int64(q.KEY_READ))}, + "KEY_SET_VALUE": {"untyped int", constant.MakeInt64(int64(q.KEY_SET_VALUE))}, + "KEY_WOW64_32KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_WOW64_32KEY))}, + "KEY_WOW64_64KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_WOW64_64KEY))}, + "KEY_WRITE": {"untyped int", constant.MakeInt64(int64(q.KEY_WRITE))}, + "LANG_ENGLISH": {"untyped int", constant.MakeInt64(int64(q.LANG_ENGLISH))}, + "LAYERED_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.LAYERED_PROTOCOL))}, + "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": {"untyped int", constant.MakeInt64(int64(q.MAXIMUM_REPARSE_DATA_BUFFER_SIZE))}, + "MAXLEN_IFDESCR": {"untyped int", constant.MakeInt64(int64(q.MAXLEN_IFDESCR))}, + "MAXLEN_PHYSADDR": {"untyped int", constant.MakeInt64(int64(q.MAXLEN_PHYSADDR))}, + "MAX_ADAPTER_ADDRESS_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_ADDRESS_LENGTH))}, + "MAX_ADAPTER_DESCRIPTION_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_DESCRIPTION_LENGTH))}, + "MAX_ADAPTER_NAME_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_NAME_LENGTH))}, + "MAX_COMPUTERNAME_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_COMPUTERNAME_LENGTH))}, + "MAX_INTERFACE_NAME_LEN": {"untyped int", constant.MakeInt64(int64(q.MAX_INTERFACE_NAME_LEN))}, + "MAX_LONG_PATH": {"untyped int", constant.MakeInt64(int64(q.MAX_LONG_PATH))}, + "MAX_PATH": {"untyped int", constant.MakeInt64(int64(q.MAX_PATH))}, + "MAX_PROTOCOL_CHAIN": {"untyped int", constant.MakeInt64(int64(q.MAX_PROTOCOL_CHAIN))}, + "MaxTokenInfoClass": {"untyped int", constant.MakeInt64(int64(q.MaxTokenInfoClass))}, + "NameCanonical": {"untyped int", constant.MakeInt64(int64(q.NameCanonical))}, + "NameCanonicalEx": {"untyped int", constant.MakeInt64(int64(q.NameCanonicalEx))}, + "NameDisplay": {"untyped int", constant.MakeInt64(int64(q.NameDisplay))}, + "NameDnsDomain": {"untyped int", constant.MakeInt64(int64(q.NameDnsDomain))}, + "NameFullyQualifiedDN": {"untyped int", constant.MakeInt64(int64(q.NameFullyQualifiedDN))}, + "NameSamCompatible": {"untyped int", constant.MakeInt64(int64(q.NameSamCompatible))}, + "NameServicePrincipal": {"untyped int", constant.MakeInt64(int64(q.NameServicePrincipal))}, + "NameUniqueId": {"untyped int", constant.MakeInt64(int64(q.NameUniqueId))}, + "NameUnknown": {"untyped int", constant.MakeInt64(int64(q.NameUnknown))}, + "NameUserPrincipal": {"untyped int", constant.MakeInt64(int64(q.NameUserPrincipal))}, + "NetSetupDomainName": {"untyped int", constant.MakeInt64(int64(q.NetSetupDomainName))}, + "NetSetupUnjoined": {"untyped int", constant.MakeInt64(int64(q.NetSetupUnjoined))}, + "NetSetupUnknownStatus": {"untyped int", constant.MakeInt64(int64(q.NetSetupUnknownStatus))}, + "NetSetupWorkgroupName": {"untyped int", constant.MakeInt64(int64(q.NetSetupWorkgroupName))}, + "OPEN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.OPEN_ALWAYS))}, + "OPEN_EXISTING": {"untyped int", constant.MakeInt64(int64(q.OPEN_EXISTING))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PAGE_EXECUTE_READ": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_READ))}, + "PAGE_EXECUTE_READWRITE": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_READWRITE))}, + "PAGE_EXECUTE_WRITECOPY": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_WRITECOPY))}, + "PAGE_READONLY": {"untyped int", constant.MakeInt64(int64(q.PAGE_READONLY))}, + "PAGE_READWRITE": {"untyped int", constant.MakeInt64(int64(q.PAGE_READWRITE))}, + "PAGE_WRITECOPY": {"untyped int", constant.MakeInt64(int64(q.PAGE_WRITECOPY))}, + "PFL_HIDDEN": {"untyped int", constant.MakeInt64(int64(q.PFL_HIDDEN))}, + "PFL_MATCHES_PROTOCOL_ZERO": {"untyped int", constant.MakeInt64(int64(q.PFL_MATCHES_PROTOCOL_ZERO))}, + "PFL_MULTIPLE_PROTO_ENTRIES": {"untyped int", constant.MakeInt64(int64(q.PFL_MULTIPLE_PROTO_ENTRIES))}, + "PFL_NETWORKDIRECT_PROVIDER": {"untyped int", constant.MakeInt64(int64(q.PFL_NETWORKDIRECT_PROVIDER))}, + "PFL_RECOMMENDED_PROTO_ENTRY": {"untyped int", constant.MakeInt64(int64(q.PFL_RECOMMENDED_PROTO_ENTRY))}, + "PKCS_7_ASN_ENCODING": {"untyped int", constant.MakeInt64(int64(q.PKCS_7_ASN_ENCODING))}, + "PROCESS_QUERY_INFORMATION": {"untyped int", constant.MakeInt64(int64(q.PROCESS_QUERY_INFORMATION))}, + "PROCESS_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.PROCESS_TERMINATE))}, + "PROV_DH_SCHANNEL": {"untyped int", constant.MakeInt64(int64(q.PROV_DH_SCHANNEL))}, + "PROV_DSS": {"untyped int", constant.MakeInt64(int64(q.PROV_DSS))}, + "PROV_DSS_DH": {"untyped int", constant.MakeInt64(int64(q.PROV_DSS_DH))}, + "PROV_EC_ECDSA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECDSA_FULL))}, + "PROV_EC_ECDSA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECDSA_SIG))}, + "PROV_EC_ECNRA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECNRA_FULL))}, + "PROV_EC_ECNRA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECNRA_SIG))}, + "PROV_FORTEZZA": {"untyped int", constant.MakeInt64(int64(q.PROV_FORTEZZA))}, + "PROV_INTEL_SEC": {"untyped int", constant.MakeInt64(int64(q.PROV_INTEL_SEC))}, + "PROV_MS_EXCHANGE": {"untyped int", constant.MakeInt64(int64(q.PROV_MS_EXCHANGE))}, + "PROV_REPLACE_OWF": {"untyped int", constant.MakeInt64(int64(q.PROV_REPLACE_OWF))}, + "PROV_RNG": {"untyped int", constant.MakeInt64(int64(q.PROV_RNG))}, + "PROV_RSA_AES": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_AES))}, + "PROV_RSA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_FULL))}, + "PROV_RSA_SCHANNEL": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_SCHANNEL))}, + "PROV_RSA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_SIG))}, + "PROV_SPYRUS_LYNKS": {"untyped int", constant.MakeInt64(int64(q.PROV_SPYRUS_LYNKS))}, + "PROV_SSL": {"untyped int", constant.MakeInt64(int64(q.PROV_SSL))}, + "REG_BINARY": {"untyped int", constant.MakeInt64(int64(q.REG_BINARY))}, + "REG_DWORD": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD))}, + "REG_DWORD_BIG_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD_BIG_ENDIAN))}, + "REG_DWORD_LITTLE_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD_LITTLE_ENDIAN))}, + "REG_EXPAND_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_EXPAND_SZ))}, + "REG_FULL_RESOURCE_DESCRIPTOR": {"untyped int", constant.MakeInt64(int64(q.REG_FULL_RESOURCE_DESCRIPTOR))}, + "REG_LINK": {"untyped int", constant.MakeInt64(int64(q.REG_LINK))}, + "REG_MULTI_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_MULTI_SZ))}, + "REG_NONE": {"untyped int", constant.MakeInt64(int64(q.REG_NONE))}, + "REG_QWORD": {"untyped int", constant.MakeInt64(int64(q.REG_QWORD))}, + "REG_QWORD_LITTLE_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_QWORD_LITTLE_ENDIAN))}, + "REG_RESOURCE_LIST": {"untyped int", constant.MakeInt64(int64(q.REG_RESOURCE_LIST))}, + "REG_RESOURCE_REQUIREMENTS_LIST": {"untyped int", constant.MakeInt64(int64(q.REG_RESOURCE_REQUIREMENTS_LIST))}, + "REG_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_SZ))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIO_GET_EXTENSION_FUNCTION_POINTER": {"untyped int", constant.MakeInt64(int64(q.SIO_GET_EXTENSION_FUNCTION_POINTER))}, + "SIO_GET_INTERFACE_LIST": {"untyped int", constant.MakeInt64(int64(q.SIO_GET_INTERFACE_LIST))}, + "SIO_KEEPALIVE_VALS": {"untyped int", constant.MakeInt64(int64(q.SIO_KEEPALIVE_VALS))}, + "SIO_UDP_CONNRESET": {"untyped int", constant.MakeInt64(int64(q.SIO_UDP_CONNRESET))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_UPDATE_ACCEPT_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.SO_UPDATE_ACCEPT_CONTEXT))}, + "SO_UPDATE_CONNECT_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.SO_UPDATE_CONNECT_CONTEXT))}, + "STANDARD_RIGHTS_ALL": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_ALL))}, + "STANDARD_RIGHTS_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_EXECUTE))}, + "STANDARD_RIGHTS_READ": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_READ))}, + "STANDARD_RIGHTS_REQUIRED": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_REQUIRED))}, + "STANDARD_RIGHTS_WRITE": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_WRITE))}, + "STARTF_USESHOWWINDOW": {"untyped int", constant.MakeInt64(int64(q.STARTF_USESHOWWINDOW))}, + "STARTF_USESTDHANDLES": {"untyped int", constant.MakeInt64(int64(q.STARTF_USESTDHANDLES))}, + "STD_ERROR_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_ERROR_HANDLE))}, + "STD_INPUT_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_INPUT_HANDLE))}, + "STD_OUTPUT_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_OUTPUT_HANDLE))}, + "SUBLANG_ENGLISH_US": {"untyped int", constant.MakeInt64(int64(q.SUBLANG_ENGLISH_US))}, + "SW_FORCEMINIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_FORCEMINIMIZE))}, + "SW_HIDE": {"untyped int", constant.MakeInt64(int64(q.SW_HIDE))}, + "SW_MAXIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_MAXIMIZE))}, + "SW_MINIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_MINIMIZE))}, + "SW_NORMAL": {"untyped int", constant.MakeInt64(int64(q.SW_NORMAL))}, + "SW_RESTORE": {"untyped int", constant.MakeInt64(int64(q.SW_RESTORE))}, + "SW_SHOW": {"untyped int", constant.MakeInt64(int64(q.SW_SHOW))}, + "SW_SHOWDEFAULT": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWDEFAULT))}, + "SW_SHOWMAXIMIZED": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMAXIMIZED))}, + "SW_SHOWMINIMIZED": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMINIMIZED))}, + "SW_SHOWMINNOACTIVE": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMINNOACTIVE))}, + "SW_SHOWNA": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNA))}, + "SW_SHOWNOACTIVATE": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNOACTIVATE))}, + "SW_SHOWNORMAL": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNORMAL))}, + "SYMBOLIC_LINK_FLAG_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.SYMBOLIC_LINK_FLAG_DIRECTORY))}, + "SYNCHRONIZE": {"untyped int", constant.MakeInt64(int64(q.SYNCHRONIZE))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SidTypeAlias": {"untyped int", constant.MakeInt64(int64(q.SidTypeAlias))}, + "SidTypeComputer": {"untyped int", constant.MakeInt64(int64(q.SidTypeComputer))}, + "SidTypeDeletedAccount": {"untyped int", constant.MakeInt64(int64(q.SidTypeDeletedAccount))}, + "SidTypeDomain": {"untyped int", constant.MakeInt64(int64(q.SidTypeDomain))}, + "SidTypeGroup": {"untyped int", constant.MakeInt64(int64(q.SidTypeGroup))}, + "SidTypeInvalid": {"untyped int", constant.MakeInt64(int64(q.SidTypeInvalid))}, + "SidTypeLabel": {"untyped int", constant.MakeInt64(int64(q.SidTypeLabel))}, + "SidTypeUnknown": {"untyped int", constant.MakeInt64(int64(q.SidTypeUnknown))}, + "SidTypeUser": {"untyped int", constant.MakeInt64(int64(q.SidTypeUser))}, + "SidTypeWellKnownGroup": {"untyped int", constant.MakeInt64(int64(q.SidTypeWellKnownGroup))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TF_DISCONNECT": {"untyped int", constant.MakeInt64(int64(q.TF_DISCONNECT))}, + "TF_REUSE_SOCKET": {"untyped int", constant.MakeInt64(int64(q.TF_REUSE_SOCKET))}, + "TF_USE_DEFAULT_WORKER": {"untyped int", constant.MakeInt64(int64(q.TF_USE_DEFAULT_WORKER))}, + "TF_USE_KERNEL_APC": {"untyped int", constant.MakeInt64(int64(q.TF_USE_KERNEL_APC))}, + "TF_USE_SYSTEM_THREAD": {"untyped int", constant.MakeInt64(int64(q.TF_USE_SYSTEM_THREAD))}, + "TF_WRITE_BEHIND": {"untyped int", constant.MakeInt64(int64(q.TF_WRITE_BEHIND))}, + "TH32CS_INHERIT": {"untyped int", constant.MakeInt64(int64(q.TH32CS_INHERIT))}, + "TH32CS_SNAPALL": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPALL))}, + "TH32CS_SNAPHEAPLIST": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPHEAPLIST))}, + "TH32CS_SNAPMODULE": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPMODULE))}, + "TH32CS_SNAPMODULE32": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPMODULE32))}, + "TH32CS_SNAPPROCESS": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPPROCESS))}, + "TH32CS_SNAPTHREAD": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPTHREAD))}, + "TIME_ZONE_ID_DAYLIGHT": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_DAYLIGHT))}, + "TIME_ZONE_ID_STANDARD": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_STANDARD))}, + "TIME_ZONE_ID_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_UNKNOWN))}, + "TOKEN_ADJUST_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_DEFAULT))}, + "TOKEN_ADJUST_GROUPS": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_GROUPS))}, + "TOKEN_ADJUST_PRIVILEGES": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_PRIVILEGES))}, + "TOKEN_ADJUST_SESSIONID": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_SESSIONID))}, + "TOKEN_ALL_ACCESS": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ALL_ACCESS))}, + "TOKEN_ASSIGN_PRIMARY": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ASSIGN_PRIMARY))}, + "TOKEN_DUPLICATE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_DUPLICATE))}, + "TOKEN_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_EXECUTE))}, + "TOKEN_IMPERSONATE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_IMPERSONATE))}, + "TOKEN_QUERY": {"untyped int", constant.MakeInt64(int64(q.TOKEN_QUERY))}, + "TOKEN_QUERY_SOURCE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_QUERY_SOURCE))}, + "TOKEN_READ": {"untyped int", constant.MakeInt64(int64(q.TOKEN_READ))}, + "TOKEN_WRITE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_WRITE))}, + "TRUNCATE_EXISTING": {"untyped int", constant.MakeInt64(int64(q.TRUNCATE_EXISTING))}, + "TokenAccessInformation": {"untyped int", constant.MakeInt64(int64(q.TokenAccessInformation))}, + "TokenAuditPolicy": {"untyped int", constant.MakeInt64(int64(q.TokenAuditPolicy))}, + "TokenDefaultDacl": {"untyped int", constant.MakeInt64(int64(q.TokenDefaultDacl))}, + "TokenElevation": {"untyped int", constant.MakeInt64(int64(q.TokenElevation))}, + "TokenElevationType": {"untyped int", constant.MakeInt64(int64(q.TokenElevationType))}, + "TokenGroups": {"untyped int", constant.MakeInt64(int64(q.TokenGroups))}, + "TokenGroupsAndPrivileges": {"untyped int", constant.MakeInt64(int64(q.TokenGroupsAndPrivileges))}, + "TokenHasRestrictions": {"untyped int", constant.MakeInt64(int64(q.TokenHasRestrictions))}, + "TokenImpersonationLevel": {"untyped int", constant.MakeInt64(int64(q.TokenImpersonationLevel))}, + "TokenIntegrityLevel": {"untyped int", constant.MakeInt64(int64(q.TokenIntegrityLevel))}, + "TokenLinkedToken": {"untyped int", constant.MakeInt64(int64(q.TokenLinkedToken))}, + "TokenLogonSid": {"untyped int", constant.MakeInt64(int64(q.TokenLogonSid))}, + "TokenMandatoryPolicy": {"untyped int", constant.MakeInt64(int64(q.TokenMandatoryPolicy))}, + "TokenOrigin": {"untyped int", constant.MakeInt64(int64(q.TokenOrigin))}, + "TokenOwner": {"untyped int", constant.MakeInt64(int64(q.TokenOwner))}, + "TokenPrimaryGroup": {"untyped int", constant.MakeInt64(int64(q.TokenPrimaryGroup))}, + "TokenPrivileges": {"untyped int", constant.MakeInt64(int64(q.TokenPrivileges))}, + "TokenRestrictedSids": {"untyped int", constant.MakeInt64(int64(q.TokenRestrictedSids))}, + "TokenSandBoxInert": {"untyped int", constant.MakeInt64(int64(q.TokenSandBoxInert))}, + "TokenSessionId": {"untyped int", constant.MakeInt64(int64(q.TokenSessionId))}, + "TokenSessionReference": {"untyped int", constant.MakeInt64(int64(q.TokenSessionReference))}, + "TokenSource": {"untyped int", constant.MakeInt64(int64(q.TokenSource))}, + "TokenStatistics": {"untyped int", constant.MakeInt64(int64(q.TokenStatistics))}, + "TokenType": {"untyped int", constant.MakeInt64(int64(q.TokenType))}, + "TokenUIAccess": {"untyped int", constant.MakeInt64(int64(q.TokenUIAccess))}, + "TokenUser": {"untyped int", constant.MakeInt64(int64(q.TokenUser))}, + "TokenVirtualizationAllowed": {"untyped int", constant.MakeInt64(int64(q.TokenVirtualizationAllowed))}, + "TokenVirtualizationEnabled": {"untyped int", constant.MakeInt64(int64(q.TokenVirtualizationEnabled))}, + "UNIX_PATH_MAX": {"untyped int", constant.MakeInt64(int64(q.UNIX_PATH_MAX))}, + "USAGE_MATCH_TYPE_AND": {"untyped int", constant.MakeInt64(int64(q.USAGE_MATCH_TYPE_AND))}, + "USAGE_MATCH_TYPE_OR": {"untyped int", constant.MakeInt64(int64(q.USAGE_MATCH_TYPE_OR))}, + "WAIT_ABANDONED": {"untyped int", constant.MakeInt64(int64(q.WAIT_ABANDONED))}, + "WAIT_FAILED": {"untyped int", constant.MakeInt64(int64(q.WAIT_FAILED))}, + "WAIT_OBJECT_0": {"untyped int", constant.MakeInt64(int64(q.WAIT_OBJECT_0))}, + "WAIT_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.WAIT_TIMEOUT))}, + "WSADESCRIPTION_LEN": {"untyped int", constant.MakeInt64(int64(q.WSADESCRIPTION_LEN))}, + "WSAPROTOCOL_LEN": {"untyped int", constant.MakeInt64(int64(q.WSAPROTOCOL_LEN))}, + "WSASYS_STATUS_LEN": {"untyped int", constant.MakeInt64(int64(q.WSASYS_STATUS_LEN))}, + "X509_ASN_ENCODING": {"untyped int", constant.MakeInt64(int64(q.X509_ASN_ENCODING))}, + "XP1_CONNECTIONLESS": {"untyped int", constant.MakeInt64(int64(q.XP1_CONNECTIONLESS))}, + "XP1_CONNECT_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_CONNECT_DATA))}, + "XP1_DISCONNECT_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_DISCONNECT_DATA))}, + "XP1_EXPEDITED_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_EXPEDITED_DATA))}, + "XP1_GRACEFUL_CLOSE": {"untyped int", constant.MakeInt64(int64(q.XP1_GRACEFUL_CLOSE))}, + "XP1_GUARANTEED_DELIVERY": {"untyped int", constant.MakeInt64(int64(q.XP1_GUARANTEED_DELIVERY))}, + "XP1_GUARANTEED_ORDER": {"untyped int", constant.MakeInt64(int64(q.XP1_GUARANTEED_ORDER))}, + "XP1_IFS_HANDLES": {"untyped int", constant.MakeInt64(int64(q.XP1_IFS_HANDLES))}, + "XP1_MESSAGE_ORIENTED": {"untyped int", constant.MakeInt64(int64(q.XP1_MESSAGE_ORIENTED))}, + "XP1_MULTIPOINT_CONTROL_PLANE": {"untyped int", constant.MakeInt64(int64(q.XP1_MULTIPOINT_CONTROL_PLANE))}, + "XP1_MULTIPOINT_DATA_PLANE": {"untyped int", constant.MakeInt64(int64(q.XP1_MULTIPOINT_DATA_PLANE))}, + "XP1_PARTIAL_MESSAGE": {"untyped int", constant.MakeInt64(int64(q.XP1_PARTIAL_MESSAGE))}, + "XP1_PSEUDO_STREAM": {"untyped int", constant.MakeInt64(int64(q.XP1_PSEUDO_STREAM))}, + "XP1_QOS_SUPPORTED": {"untyped int", constant.MakeInt64(int64(q.XP1_QOS_SUPPORTED))}, + "XP1_SAN_SUPPORT_SDP": {"untyped int", constant.MakeInt64(int64(q.XP1_SAN_SUPPORT_SDP))}, + "XP1_SUPPORT_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.XP1_SUPPORT_BROADCAST))}, + "XP1_SUPPORT_MULTIPOINT": {"untyped int", constant.MakeInt64(int64(q.XP1_SUPPORT_MULTIPOINT))}, + "XP1_UNI_RECV": {"untyped int", constant.MakeInt64(int64(q.XP1_UNI_RECV))}, + "XP1_UNI_SEND": {"untyped int", constant.MakeInt64(int64(q.XP1_UNI_SEND))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_windows_arm.go b/pkg/syscall/go123_export_windows_arm.go new file mode 100755 index 00000000..8ee1f18a --- /dev/null +++ b/pkg/syscall/go123_export_windows_arm.go @@ -0,0 +1,1043 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/syscall/windows/sysdll": "sysdll", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unicode/utf16": "utf16", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "AddrinfoW": reflect.TypeOf((*q.AddrinfoW)(nil)).Elem(), + "ByHandleFileInformation": reflect.TypeOf((*q.ByHandleFileInformation)(nil)).Elem(), + "CertChainContext": reflect.TypeOf((*q.CertChainContext)(nil)).Elem(), + "CertChainElement": reflect.TypeOf((*q.CertChainElement)(nil)).Elem(), + "CertChainPara": reflect.TypeOf((*q.CertChainPara)(nil)).Elem(), + "CertChainPolicyPara": reflect.TypeOf((*q.CertChainPolicyPara)(nil)).Elem(), + "CertChainPolicyStatus": reflect.TypeOf((*q.CertChainPolicyStatus)(nil)).Elem(), + "CertContext": reflect.TypeOf((*q.CertContext)(nil)).Elem(), + "CertEnhKeyUsage": reflect.TypeOf((*q.CertEnhKeyUsage)(nil)).Elem(), + "CertInfo": reflect.TypeOf((*q.CertInfo)(nil)).Elem(), + "CertRevocationCrlInfo": reflect.TypeOf((*q.CertRevocationCrlInfo)(nil)).Elem(), + "CertRevocationInfo": reflect.TypeOf((*q.CertRevocationInfo)(nil)).Elem(), + "CertSimpleChain": reflect.TypeOf((*q.CertSimpleChain)(nil)).Elem(), + "CertTrustListInfo": reflect.TypeOf((*q.CertTrustListInfo)(nil)).Elem(), + "CertTrustStatus": reflect.TypeOf((*q.CertTrustStatus)(nil)).Elem(), + "CertUsageMatch": reflect.TypeOf((*q.CertUsageMatch)(nil)).Elem(), + "DLL": reflect.TypeOf((*q.DLL)(nil)).Elem(), + "DLLError": reflect.TypeOf((*q.DLLError)(nil)).Elem(), + "DNSMXData": reflect.TypeOf((*q.DNSMXData)(nil)).Elem(), + "DNSPTRData": reflect.TypeOf((*q.DNSPTRData)(nil)).Elem(), + "DNSRecord": reflect.TypeOf((*q.DNSRecord)(nil)).Elem(), + "DNSSRVData": reflect.TypeOf((*q.DNSSRVData)(nil)).Elem(), + "DNSTXTData": reflect.TypeOf((*q.DNSTXTData)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FileNotifyInformation": reflect.TypeOf((*q.FileNotifyInformation)(nil)).Elem(), + "Filetime": reflect.TypeOf((*q.Filetime)(nil)).Elem(), + "GUID": reflect.TypeOf((*q.GUID)(nil)).Elem(), + "Handle": reflect.TypeOf((*q.Handle)(nil)).Elem(), + "Hostent": reflect.TypeOf((*q.Hostent)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "InterfaceInfo": reflect.TypeOf((*q.InterfaceInfo)(nil)).Elem(), + "IpAdapterInfo": reflect.TypeOf((*q.IpAdapterInfo)(nil)).Elem(), + "IpAddrString": reflect.TypeOf((*q.IpAddrString)(nil)).Elem(), + "IpAddressString": reflect.TypeOf((*q.IpAddressString)(nil)).Elem(), + "IpMaskString": reflect.TypeOf((*q.IpMaskString)(nil)).Elem(), + "LazyDLL": reflect.TypeOf((*q.LazyDLL)(nil)).Elem(), + "LazyProc": reflect.TypeOf((*q.LazyProc)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "MibIfRow": reflect.TypeOf((*q.MibIfRow)(nil)).Elem(), + "Overlapped": reflect.TypeOf((*q.Overlapped)(nil)).Elem(), + "Pointer": reflect.TypeOf((*q.Pointer)(nil)).Elem(), + "Proc": reflect.TypeOf((*q.Proc)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "ProcessEntry32": reflect.TypeOf((*q.ProcessEntry32)(nil)).Elem(), + "ProcessInformation": reflect.TypeOf((*q.ProcessInformation)(nil)).Elem(), + "Protoent": reflect.TypeOf((*q.Protoent)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "SID": reflect.TypeOf((*q.SID)(nil)).Elem(), + "SIDAndAttributes": reflect.TypeOf((*q.SIDAndAttributes)(nil)).Elem(), + "SSLExtraCertChainPolicyPara": reflect.TypeOf((*q.SSLExtraCertChainPolicyPara)(nil)).Elem(), + "SecurityAttributes": reflect.TypeOf((*q.SecurityAttributes)(nil)).Elem(), + "Servent": reflect.TypeOf((*q.Servent)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrGen": reflect.TypeOf((*q.SockaddrGen)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "StartupInfo": reflect.TypeOf((*q.StartupInfo)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Systemtime": reflect.TypeOf((*q.Systemtime)(nil)).Elem(), + "TCPKeepalive": reflect.TypeOf((*q.TCPKeepalive)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timezoneinformation": reflect.TypeOf((*q.Timezoneinformation)(nil)).Elem(), + "Token": reflect.TypeOf((*q.Token)(nil)).Elem(), + "Tokenprimarygroup": reflect.TypeOf((*q.Tokenprimarygroup)(nil)).Elem(), + "Tokenuser": reflect.TypeOf((*q.Tokenuser)(nil)).Elem(), + "TransmitFileBuffers": reflect.TypeOf((*q.TransmitFileBuffers)(nil)).Elem(), + "UserInfo10": reflect.TypeOf((*q.UserInfo10)(nil)).Elem(), + "WSABuf": reflect.TypeOf((*q.WSABuf)(nil)).Elem(), + "WSAData": reflect.TypeOf((*q.WSAData)(nil)).Elem(), + "WSAProtocolChain": reflect.TypeOf((*q.WSAProtocolChain)(nil)).Elem(), + "WSAProtocolInfo": reflect.TypeOf((*q.WSAProtocolInfo)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + "Win32FileAttributeData": reflect.TypeOf((*q.Win32FileAttributeData)(nil)).Elem(), + "Win32finddata": reflect.TypeOf((*q.Win32finddata)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&q.OID_PKIX_KP_SERVER_AUTH), + "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&q.OID_SERVER_GATED_CRYPTO), + "OID_SGC_NETSCAPE": reflect.ValueOf(&q.OID_SGC_NETSCAPE), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + "WSAID_CONNECTEX": reflect.ValueOf(&q.WSAID_CONNECTEX), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "AcceptEx": reflect.ValueOf(q.AcceptEx), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "CancelIo": reflect.ValueOf(q.CancelIo), + "CancelIoEx": reflect.ValueOf(q.CancelIoEx), + "CertAddCertificateContextToStore": reflect.ValueOf(q.CertAddCertificateContextToStore), + "CertCloseStore": reflect.ValueOf(q.CertCloseStore), + "CertCreateCertificateContext": reflect.ValueOf(q.CertCreateCertificateContext), + "CertEnumCertificatesInStore": reflect.ValueOf(q.CertEnumCertificatesInStore), + "CertFreeCertificateChain": reflect.ValueOf(q.CertFreeCertificateChain), + "CertFreeCertificateContext": reflect.ValueOf(q.CertFreeCertificateContext), + "CertGetCertificateChain": reflect.ValueOf(q.CertGetCertificateChain), + "CertOpenStore": reflect.ValueOf(q.CertOpenStore), + "CertOpenSystemStore": reflect.ValueOf(q.CertOpenSystemStore), + "CertVerifyCertificateChainPolicy": reflect.ValueOf(q.CertVerifyCertificateChainPolicy), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseHandle": reflect.ValueOf(q.CloseHandle), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "Closesocket": reflect.ValueOf(q.Closesocket), + "CommandLineToArgv": reflect.ValueOf(q.CommandLineToArgv), + "ComputerName": reflect.ValueOf(q.ComputerName), + "Connect": reflect.ValueOf(q.Connect), + "ConnectEx": reflect.ValueOf(q.ConnectEx), + "ConvertSidToStringSid": reflect.ValueOf(q.ConvertSidToStringSid), + "ConvertStringSidToSid": reflect.ValueOf(q.ConvertStringSidToSid), + "CopySid": reflect.ValueOf(q.CopySid), + "CreateDirectory": reflect.ValueOf(q.CreateDirectory), + "CreateFile": reflect.ValueOf(q.CreateFile), + "CreateFileMapping": reflect.ValueOf(q.CreateFileMapping), + "CreateHardLink": reflect.ValueOf(q.CreateHardLink), + "CreateIoCompletionPort": reflect.ValueOf(q.CreateIoCompletionPort), + "CreatePipe": reflect.ValueOf(q.CreatePipe), + "CreateProcess": reflect.ValueOf(q.CreateProcess), + "CreateProcessAsUser": reflect.ValueOf(q.CreateProcessAsUser), + "CreateSymbolicLink": reflect.ValueOf(q.CreateSymbolicLink), + "CreateToolhelp32Snapshot": reflect.ValueOf(q.CreateToolhelp32Snapshot), + "CryptAcquireContext": reflect.ValueOf(q.CryptAcquireContext), + "CryptGenRandom": reflect.ValueOf(q.CryptGenRandom), + "CryptReleaseContext": reflect.ValueOf(q.CryptReleaseContext), + "DeleteFile": reflect.ValueOf(q.DeleteFile), + "DeviceIoControl": reflect.ValueOf(q.DeviceIoControl), + "DnsNameCompare": reflect.ValueOf(q.DnsNameCompare), + "DnsQuery": reflect.ValueOf(q.DnsQuery), + "DnsRecordListFree": reflect.ValueOf(q.DnsRecordListFree), + "DuplicateHandle": reflect.ValueOf(q.DuplicateHandle), + "Environ": reflect.ValueOf(q.Environ), + "EscapeArg": reflect.ValueOf(q.EscapeArg), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "ExitProcess": reflect.ValueOf(q.ExitProcess), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FindClose": reflect.ValueOf(q.FindClose), + "FindFirstFile": reflect.ValueOf(q.FindFirstFile), + "FindNextFile": reflect.ValueOf(q.FindNextFile), + "FlushFileBuffers": reflect.ValueOf(q.FlushFileBuffers), + "FlushViewOfFile": reflect.ValueOf(q.FlushViewOfFile), + "FormatMessage": reflect.ValueOf(q.FormatMessage), + "FreeAddrInfoW": reflect.ValueOf(q.FreeAddrInfoW), + "FreeEnvironmentStrings": reflect.ValueOf(q.FreeEnvironmentStrings), + "FreeLibrary": reflect.ValueOf(q.FreeLibrary), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "FullPath": reflect.ValueOf(q.FullPath), + "GetAcceptExSockaddrs": reflect.ValueOf(q.GetAcceptExSockaddrs), + "GetAdaptersInfo": reflect.ValueOf(q.GetAdaptersInfo), + "GetAddrInfoW": reflect.ValueOf(q.GetAddrInfoW), + "GetCommandLine": reflect.ValueOf(q.GetCommandLine), + "GetComputerName": reflect.ValueOf(q.GetComputerName), + "GetConsoleMode": reflect.ValueOf(q.GetConsoleMode), + "GetCurrentDirectory": reflect.ValueOf(q.GetCurrentDirectory), + "GetCurrentProcess": reflect.ValueOf(q.GetCurrentProcess), + "GetEnvironmentStrings": reflect.ValueOf(q.GetEnvironmentStrings), + "GetEnvironmentVariable": reflect.ValueOf(q.GetEnvironmentVariable), + "GetExitCodeProcess": reflect.ValueOf(q.GetExitCodeProcess), + "GetFileAttributes": reflect.ValueOf(q.GetFileAttributes), + "GetFileAttributesEx": reflect.ValueOf(q.GetFileAttributesEx), + "GetFileInformationByHandle": reflect.ValueOf(q.GetFileInformationByHandle), + "GetFileType": reflect.ValueOf(q.GetFileType), + "GetFullPathName": reflect.ValueOf(q.GetFullPathName), + "GetHostByName": reflect.ValueOf(q.GetHostByName), + "GetIfEntry": reflect.ValueOf(q.GetIfEntry), + "GetLastError": reflect.ValueOf(q.GetLastError), + "GetLengthSid": reflect.ValueOf(q.GetLengthSid), + "GetLongPathName": reflect.ValueOf(q.GetLongPathName), + "GetProcAddress": reflect.ValueOf(q.GetProcAddress), + "GetProcessTimes": reflect.ValueOf(q.GetProcessTimes), + "GetProtoByName": reflect.ValueOf(q.GetProtoByName), + "GetQueuedCompletionStatus": reflect.ValueOf(q.GetQueuedCompletionStatus), + "GetServByName": reflect.ValueOf(q.GetServByName), + "GetShortPathName": reflect.ValueOf(q.GetShortPathName), + "GetStartupInfo": reflect.ValueOf(q.GetStartupInfo), + "GetStdHandle": reflect.ValueOf(q.GetStdHandle), + "GetSystemTimeAsFileTime": reflect.ValueOf(q.GetSystemTimeAsFileTime), + "GetTempPath": reflect.ValueOf(q.GetTempPath), + "GetTimeZoneInformation": reflect.ValueOf(q.GetTimeZoneInformation), + "GetTokenInformation": reflect.ValueOf(q.GetTokenInformation), + "GetUserNameEx": reflect.ValueOf(q.GetUserNameEx), + "GetUserProfileDirectory": reflect.ValueOf(q.GetUserProfileDirectory), + "GetVersion": reflect.ValueOf(q.GetVersion), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "Getsockopt": reflect.ValueOf(q.Getsockopt), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "LoadCancelIoEx": reflect.ValueOf(q.LoadCancelIoEx), + "LoadConnectEx": reflect.ValueOf(q.LoadConnectEx), + "LoadCreateSymbolicLink": reflect.ValueOf(q.LoadCreateSymbolicLink), + "LoadDLL": reflect.ValueOf(q.LoadDLL), + "LoadGetAddrInfo": reflect.ValueOf(q.LoadGetAddrInfo), + "LoadLibrary": reflect.ValueOf(q.LoadLibrary), + "LoadSetFileCompletionNotificationModes": reflect.ValueOf(q.LoadSetFileCompletionNotificationModes), + "LocalFree": reflect.ValueOf(q.LocalFree), + "LookupAccountName": reflect.ValueOf(q.LookupAccountName), + "LookupAccountSid": reflect.ValueOf(q.LookupAccountSid), + "LookupSID": reflect.ValueOf(q.LookupSID), + "MapViewOfFile": reflect.ValueOf(q.MapViewOfFile), + "Mkdir": reflect.ValueOf(q.Mkdir), + "MoveFile": reflect.ValueOf(q.MoveFile), + "MustLoadDLL": reflect.ValueOf(q.MustLoadDLL), + "NetApiBufferFree": reflect.ValueOf(q.NetApiBufferFree), + "NetGetJoinInformation": reflect.ValueOf(q.NetGetJoinInformation), + "NetUserGetInfo": reflect.ValueOf(q.NetUserGetInfo), + "NewCallback": reflect.ValueOf(q.NewCallback), + "NewCallbackCDecl": reflect.ValueOf(q.NewCallbackCDecl), + "NewLazyDLL": reflect.ValueOf(q.NewLazyDLL), + "NsecToFiletime": reflect.ValueOf(q.NsecToFiletime), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Ntohs": reflect.ValueOf(q.Ntohs), + "Open": reflect.ValueOf(q.Open), + "OpenCurrentProcessToken": reflect.ValueOf(q.OpenCurrentProcessToken), + "OpenProcess": reflect.ValueOf(q.OpenProcess), + "OpenProcessToken": reflect.ValueOf(q.OpenProcessToken), + "Pipe": reflect.ValueOf(q.Pipe), + "PostQueuedCompletionStatus": reflect.ValueOf(q.PostQueuedCompletionStatus), + "Process32First": reflect.ValueOf(q.Process32First), + "Process32Next": reflect.ValueOf(q.Process32Next), + "Read": reflect.ValueOf(q.Read), + "ReadConsole": reflect.ValueOf(q.ReadConsole), + "ReadDirectoryChanges": reflect.ValueOf(q.ReadDirectoryChanges), + "ReadFile": reflect.ValueOf(q.ReadFile), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "RegCloseKey": reflect.ValueOf(q.RegCloseKey), + "RegEnumKeyEx": reflect.ValueOf(q.RegEnumKeyEx), + "RegOpenKeyEx": reflect.ValueOf(q.RegOpenKeyEx), + "RegQueryInfoKey": reflect.ValueOf(q.RegQueryInfoKey), + "RegQueryValueEx": reflect.ValueOf(q.RegQueryValueEx), + "RemoveDirectory": reflect.ValueOf(q.RemoveDirectory), + "Rename": reflect.ValueOf(q.Rename), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Sendto": reflect.ValueOf(q.Sendto), + "SetCurrentDirectory": reflect.ValueOf(q.SetCurrentDirectory), + "SetEndOfFile": reflect.ValueOf(q.SetEndOfFile), + "SetEnvironmentVariable": reflect.ValueOf(q.SetEnvironmentVariable), + "SetFileAttributes": reflect.ValueOf(q.SetFileAttributes), + "SetFileCompletionNotificationModes": reflect.ValueOf(q.SetFileCompletionNotificationModes), + "SetFilePointer": reflect.ValueOf(q.SetFilePointer), + "SetFileTime": reflect.ValueOf(q.SetFileTime), + "SetHandleInformation": reflect.ValueOf(q.SetHandleInformation), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setenv": reflect.ValueOf(q.Setenv), + "Setsockopt": reflect.ValueOf(q.Setsockopt), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Shutdown": reflect.ValueOf(q.Shutdown), + "Socket": reflect.ValueOf(q.Socket), + "StartProcess": reflect.ValueOf(q.StartProcess), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringToSid": reflect.ValueOf(q.StringToSid), + "StringToUTF16": reflect.ValueOf(q.StringToUTF16), + "StringToUTF16Ptr": reflect.ValueOf(q.StringToUTF16Ptr), + "Symlink": reflect.ValueOf(q.Symlink), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall12": reflect.ValueOf(q.Syscall12), + "Syscall15": reflect.ValueOf(q.Syscall15), + "Syscall18": reflect.ValueOf(q.Syscall18), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "SyscallN": reflect.ValueOf(q.SyscallN), + "TerminateProcess": reflect.ValueOf(q.TerminateProcess), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TranslateAccountName": reflect.ValueOf(q.TranslateAccountName), + "TranslateName": reflect.ValueOf(q.TranslateName), + "TransmitFile": reflect.ValueOf(q.TransmitFile), + "UTF16FromString": reflect.ValueOf(q.UTF16FromString), + "UTF16PtrFromString": reflect.ValueOf(q.UTF16PtrFromString), + "UTF16ToString": reflect.ValueOf(q.UTF16ToString), + "Unlink": reflect.ValueOf(q.Unlink), + "UnmapViewOfFile": reflect.ValueOf(q.UnmapViewOfFile), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "VirtualLock": reflect.ValueOf(q.VirtualLock), + "VirtualUnlock": reflect.ValueOf(q.VirtualUnlock), + "WSACleanup": reflect.ValueOf(q.WSACleanup), + "WSAEnumProtocols": reflect.ValueOf(q.WSAEnumProtocols), + "WSAIoctl": reflect.ValueOf(q.WSAIoctl), + "WSARecv": reflect.ValueOf(q.WSARecv), + "WSARecvFrom": reflect.ValueOf(q.WSARecvFrom), + "WSASend": reflect.ValueOf(q.WSASend), + "WSASendTo": reflect.ValueOf(q.WSASendTo), + "WSASendto": reflect.ValueOf(q.WSASendto), + "WSAStartup": reflect.ValueOf(q.WSAStartup), + "WaitForSingleObject": reflect.ValueOf(q.WaitForSingleObject), + "Write": reflect.ValueOf(q.Write), + "WriteConsole": reflect.ValueOf(q.WriteConsole), + "WriteFile": reflect.ValueOf(q.WriteFile), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERROR_ACCESS_DENIED": {reflect.TypeOf(q.ERROR_ACCESS_DENIED), constant.MakeInt64(int64(q.ERROR_ACCESS_DENIED))}, + "ERROR_ALREADY_EXISTS": {reflect.TypeOf(q.ERROR_ALREADY_EXISTS), constant.MakeInt64(int64(q.ERROR_ALREADY_EXISTS))}, + "ERROR_BROKEN_PIPE": {reflect.TypeOf(q.ERROR_BROKEN_PIPE), constant.MakeInt64(int64(q.ERROR_BROKEN_PIPE))}, + "ERROR_BUFFER_OVERFLOW": {reflect.TypeOf(q.ERROR_BUFFER_OVERFLOW), constant.MakeInt64(int64(q.ERROR_BUFFER_OVERFLOW))}, + "ERROR_DIR_NOT_EMPTY": {reflect.TypeOf(q.ERROR_DIR_NOT_EMPTY), constant.MakeInt64(int64(q.ERROR_DIR_NOT_EMPTY))}, + "ERROR_ENVVAR_NOT_FOUND": {reflect.TypeOf(q.ERROR_ENVVAR_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_ENVVAR_NOT_FOUND))}, + "ERROR_FILE_EXISTS": {reflect.TypeOf(q.ERROR_FILE_EXISTS), constant.MakeInt64(int64(q.ERROR_FILE_EXISTS))}, + "ERROR_FILE_NOT_FOUND": {reflect.TypeOf(q.ERROR_FILE_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_FILE_NOT_FOUND))}, + "ERROR_HANDLE_EOF": {reflect.TypeOf(q.ERROR_HANDLE_EOF), constant.MakeInt64(int64(q.ERROR_HANDLE_EOF))}, + "ERROR_INSUFFICIENT_BUFFER": {reflect.TypeOf(q.ERROR_INSUFFICIENT_BUFFER), constant.MakeInt64(int64(q.ERROR_INSUFFICIENT_BUFFER))}, + "ERROR_IO_PENDING": {reflect.TypeOf(q.ERROR_IO_PENDING), constant.MakeInt64(int64(q.ERROR_IO_PENDING))}, + "ERROR_MOD_NOT_FOUND": {reflect.TypeOf(q.ERROR_MOD_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_MOD_NOT_FOUND))}, + "ERROR_MORE_DATA": {reflect.TypeOf(q.ERROR_MORE_DATA), constant.MakeInt64(int64(q.ERROR_MORE_DATA))}, + "ERROR_NETNAME_DELETED": {reflect.TypeOf(q.ERROR_NETNAME_DELETED), constant.MakeInt64(int64(q.ERROR_NETNAME_DELETED))}, + "ERROR_NOT_FOUND": {reflect.TypeOf(q.ERROR_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_NOT_FOUND))}, + "ERROR_NO_MORE_FILES": {reflect.TypeOf(q.ERROR_NO_MORE_FILES), constant.MakeInt64(int64(q.ERROR_NO_MORE_FILES))}, + "ERROR_OPERATION_ABORTED": {reflect.TypeOf(q.ERROR_OPERATION_ABORTED), constant.MakeInt64(int64(q.ERROR_OPERATION_ABORTED))}, + "ERROR_PATH_NOT_FOUND": {reflect.TypeOf(q.ERROR_PATH_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_PATH_NOT_FOUND))}, + "ERROR_PRIVILEGE_NOT_HELD": {reflect.TypeOf(q.ERROR_PRIVILEGE_NOT_HELD), constant.MakeInt64(int64(q.ERROR_PRIVILEGE_NOT_HELD))}, + "ERROR_PROC_NOT_FOUND": {reflect.TypeOf(q.ERROR_PROC_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_PROC_NOT_FOUND))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWINDOWS": {reflect.TypeOf(q.EWINDOWS), constant.MakeInt64(int64(q.EWINDOWS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "InvalidHandle": {reflect.TypeOf(q.InvalidHandle), constant.MakeUint64(uint64(q.InvalidHandle))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "WSAEACCES": {reflect.TypeOf(q.WSAEACCES), constant.MakeInt64(int64(q.WSAEACCES))}, + "WSAECONNABORTED": {reflect.TypeOf(q.WSAECONNABORTED), constant.MakeInt64(int64(q.WSAECONNABORTED))}, + "WSAECONNRESET": {reflect.TypeOf(q.WSAECONNRESET), constant.MakeInt64(int64(q.WSAECONNRESET))}, + "WSAENOPROTOOPT": {reflect.TypeOf(q.WSAENOPROTOOPT), constant.MakeInt64(int64(q.WSAENOPROTOOPT))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AI_CANONNAME": {"untyped int", constant.MakeInt64(int64(q.AI_CANONNAME))}, + "AI_NUMERICHOST": {"untyped int", constant.MakeInt64(int64(q.AI_NUMERICHOST))}, + "AI_PASSIVE": {"untyped int", constant.MakeInt64(int64(q.AI_PASSIVE))}, + "APPLICATION_ERROR": {"untyped int", constant.MakeInt64(int64(q.APPLICATION_ERROR))}, + "AUTHTYPE_CLIENT": {"untyped int", constant.MakeInt64(int64(q.AUTHTYPE_CLIENT))}, + "AUTHTYPE_SERVER": {"untyped int", constant.MakeInt64(int64(q.AUTHTYPE_SERVER))}, + "BASE_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.BASE_PROTOCOL))}, + "CERT_CHAIN_POLICY_AUTHENTICODE": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_AUTHENTICODE))}, + "CERT_CHAIN_POLICY_AUTHENTICODE_TS": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_AUTHENTICODE_TS))}, + "CERT_CHAIN_POLICY_BASE": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_BASE))}, + "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_BASIC_CONSTRAINTS))}, + "CERT_CHAIN_POLICY_EV": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_EV))}, + "CERT_CHAIN_POLICY_MICROSOFT_ROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_MICROSOFT_ROOT))}, + "CERT_CHAIN_POLICY_NT_AUTH": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_NT_AUTH))}, + "CERT_CHAIN_POLICY_SSL": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_SSL))}, + "CERT_E_CN_NO_MATCH": {"untyped int", constant.MakeInt64(int64(q.CERT_E_CN_NO_MATCH))}, + "CERT_E_EXPIRED": {"untyped int", constant.MakeInt64(int64(q.CERT_E_EXPIRED))}, + "CERT_E_PURPOSE": {"untyped int", constant.MakeInt64(int64(q.CERT_E_PURPOSE))}, + "CERT_E_ROLE": {"untyped int", constant.MakeInt64(int64(q.CERT_E_ROLE))}, + "CERT_E_UNTRUSTEDROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_E_UNTRUSTEDROOT))}, + "CERT_STORE_ADD_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_ADD_ALWAYS))}, + "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG))}, + "CERT_STORE_PROV_MEMORY": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_PROV_MEMORY))}, + "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT))}, + "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT))}, + "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_BASIC_CONSTRAINTS))}, + "CERT_TRUST_INVALID_EXTENSION": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_EXTENSION))}, + "CERT_TRUST_INVALID_NAME_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_NAME_CONSTRAINTS))}, + "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_POLICY_CONSTRAINTS))}, + "CERT_TRUST_IS_CYCLIC": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_CYCLIC))}, + "CERT_TRUST_IS_EXPLICIT_DISTRUST": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_EXPLICIT_DISTRUST))}, + "CERT_TRUST_IS_NOT_SIGNATURE_VALID": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_SIGNATURE_VALID))}, + "CERT_TRUST_IS_NOT_TIME_VALID": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_TIME_VALID))}, + "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_VALID_FOR_USAGE))}, + "CERT_TRUST_IS_OFFLINE_REVOCATION": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_OFFLINE_REVOCATION))}, + "CERT_TRUST_IS_REVOKED": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_REVOKED))}, + "CERT_TRUST_IS_UNTRUSTED_ROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_UNTRUSTED_ROOT))}, + "CERT_TRUST_NO_ERROR": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_NO_ERROR))}, + "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY))}, + "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_REVOCATION_STATUS_UNKNOWN))}, + "CREATE_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.CREATE_ALWAYS))}, + "CREATE_NEW": {"untyped int", constant.MakeInt64(int64(q.CREATE_NEW))}, + "CREATE_NEW_PROCESS_GROUP": {"untyped int", constant.MakeInt64(int64(q.CREATE_NEW_PROCESS_GROUP))}, + "CREATE_UNICODE_ENVIRONMENT": {"untyped int", constant.MakeInt64(int64(q.CREATE_UNICODE_ENVIRONMENT))}, + "CRYPT_DEFAULT_CONTAINER_OPTIONAL": {"untyped int", constant.MakeInt64(int64(q.CRYPT_DEFAULT_CONTAINER_OPTIONAL))}, + "CRYPT_DELETEKEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_DELETEKEYSET))}, + "CRYPT_MACHINE_KEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_MACHINE_KEYSET))}, + "CRYPT_NEWKEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_NEWKEYSET))}, + "CRYPT_SILENT": {"untyped int", constant.MakeInt64(int64(q.CRYPT_SILENT))}, + "CRYPT_VERIFYCONTEXT": {"untyped int", constant.MakeInt64(int64(q.CRYPT_VERIFYCONTEXT))}, + "CTRL_BREAK_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_BREAK_EVENT))}, + "CTRL_CLOSE_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_CLOSE_EVENT))}, + "CTRL_C_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_C_EVENT))}, + "CTRL_LOGOFF_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_LOGOFF_EVENT))}, + "CTRL_SHUTDOWN_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_SHUTDOWN_EVENT))}, + "DNS_INFO_NO_RECORDS": {"untyped int", constant.MakeInt64(int64(q.DNS_INFO_NO_RECORDS))}, + "DNS_TYPE_A": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_A))}, + "DNS_TYPE_A6": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_A6))}, + "DNS_TYPE_AAAA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AAAA))}, + "DNS_TYPE_ADDRS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ADDRS))}, + "DNS_TYPE_AFSDB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AFSDB))}, + "DNS_TYPE_ALL": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ALL))}, + "DNS_TYPE_ANY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ANY))}, + "DNS_TYPE_ATMA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ATMA))}, + "DNS_TYPE_AXFR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AXFR))}, + "DNS_TYPE_CERT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_CERT))}, + "DNS_TYPE_CNAME": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_CNAME))}, + "DNS_TYPE_DHCID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DHCID))}, + "DNS_TYPE_DNAME": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DNAME))}, + "DNS_TYPE_DNSKEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DNSKEY))}, + "DNS_TYPE_DS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DS))}, + "DNS_TYPE_EID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_EID))}, + "DNS_TYPE_GID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_GID))}, + "DNS_TYPE_GPOS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_GPOS))}, + "DNS_TYPE_HINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_HINFO))}, + "DNS_TYPE_ISDN": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ISDN))}, + "DNS_TYPE_IXFR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_IXFR))}, + "DNS_TYPE_KEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_KEY))}, + "DNS_TYPE_KX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_KX))}, + "DNS_TYPE_LOC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_LOC))}, + "DNS_TYPE_MAILA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MAILA))}, + "DNS_TYPE_MAILB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MAILB))}, + "DNS_TYPE_MB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MB))}, + "DNS_TYPE_MD": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MD))}, + "DNS_TYPE_MF": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MF))}, + "DNS_TYPE_MG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MG))}, + "DNS_TYPE_MINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MINFO))}, + "DNS_TYPE_MR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MR))}, + "DNS_TYPE_MX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MX))}, + "DNS_TYPE_NAPTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NAPTR))}, + "DNS_TYPE_NBSTAT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NBSTAT))}, + "DNS_TYPE_NIMLOC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NIMLOC))}, + "DNS_TYPE_NS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NS))}, + "DNS_TYPE_NSAP": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSAP))}, + "DNS_TYPE_NSAPPTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSAPPTR))}, + "DNS_TYPE_NSEC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSEC))}, + "DNS_TYPE_NULL": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NULL))}, + "DNS_TYPE_NXT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NXT))}, + "DNS_TYPE_OPT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_OPT))}, + "DNS_TYPE_PTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_PTR))}, + "DNS_TYPE_PX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_PX))}, + "DNS_TYPE_RP": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RP))}, + "DNS_TYPE_RRSIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RRSIG))}, + "DNS_TYPE_RT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RT))}, + "DNS_TYPE_SIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SIG))}, + "DNS_TYPE_SINK": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SINK))}, + "DNS_TYPE_SOA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SOA))}, + "DNS_TYPE_SRV": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SRV))}, + "DNS_TYPE_TEXT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TEXT))}, + "DNS_TYPE_TKEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TKEY))}, + "DNS_TYPE_TSIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TSIG))}, + "DNS_TYPE_UID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UID))}, + "DNS_TYPE_UINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UINFO))}, + "DNS_TYPE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UNSPEC))}, + "DNS_TYPE_WINS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WINS))}, + "DNS_TYPE_WINSR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WINSR))}, + "DNS_TYPE_WKS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WKS))}, + "DNS_TYPE_X25": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_X25))}, + "DUPLICATE_CLOSE_SOURCE": {"untyped int", constant.MakeInt64(int64(q.DUPLICATE_CLOSE_SOURCE))}, + "DUPLICATE_SAME_ACCESS": {"untyped int", constant.MakeInt64(int64(q.DUPLICATE_SAME_ACCESS))}, + "DnsSectionAdditional": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAdditional))}, + "DnsSectionAnswer": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAnswer))}, + "DnsSectionAuthority": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAuthority))}, + "DnsSectionQuestion": {"untyped int", constant.MakeInt64(int64(q.DnsSectionQuestion))}, + "FILE_ACTION_ADDED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_ADDED))}, + "FILE_ACTION_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_MODIFIED))}, + "FILE_ACTION_REMOVED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_REMOVED))}, + "FILE_ACTION_RENAMED_NEW_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_RENAMED_NEW_NAME))}, + "FILE_ACTION_RENAMED_OLD_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_RENAMED_OLD_NAME))}, + "FILE_APPEND_DATA": {"untyped int", constant.MakeInt64(int64(q.FILE_APPEND_DATA))}, + "FILE_ATTRIBUTE_ARCHIVE": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_ARCHIVE))}, + "FILE_ATTRIBUTE_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_DIRECTORY))}, + "FILE_ATTRIBUTE_HIDDEN": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_HIDDEN))}, + "FILE_ATTRIBUTE_NORMAL": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_NORMAL))}, + "FILE_ATTRIBUTE_READONLY": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_READONLY))}, + "FILE_ATTRIBUTE_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_REPARSE_POINT))}, + "FILE_ATTRIBUTE_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_SYSTEM))}, + "FILE_BEGIN": {"untyped int", constant.MakeInt64(int64(q.FILE_BEGIN))}, + "FILE_CURRENT": {"untyped int", constant.MakeInt64(int64(q.FILE_CURRENT))}, + "FILE_END": {"untyped int", constant.MakeInt64(int64(q.FILE_END))}, + "FILE_FLAG_BACKUP_SEMANTICS": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_BACKUP_SEMANTICS))}, + "FILE_FLAG_OPEN_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_OPEN_REPARSE_POINT))}, + "FILE_FLAG_OVERLAPPED": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_OVERLAPPED))}, + "FILE_LIST_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.FILE_LIST_DIRECTORY))}, + "FILE_MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_COPY))}, + "FILE_MAP_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_EXECUTE))}, + "FILE_MAP_READ": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_READ))}, + "FILE_MAP_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_WRITE))}, + "FILE_NOTIFY_CHANGE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_ATTRIBUTES))}, + "FILE_NOTIFY_CHANGE_CREATION": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_CREATION))}, + "FILE_NOTIFY_CHANGE_DIR_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_DIR_NAME))}, + "FILE_NOTIFY_CHANGE_FILE_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_FILE_NAME))}, + "FILE_NOTIFY_CHANGE_LAST_ACCESS": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_LAST_ACCESS))}, + "FILE_NOTIFY_CHANGE_LAST_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_LAST_WRITE))}, + "FILE_NOTIFY_CHANGE_SIZE": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_SIZE))}, + "FILE_SHARE_DELETE": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_DELETE))}, + "FILE_SHARE_READ": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_READ))}, + "FILE_SHARE_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_WRITE))}, + "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": {"untyped int", constant.MakeInt64(int64(q.FILE_SKIP_COMPLETION_PORT_ON_SUCCESS))}, + "FILE_SKIP_SET_EVENT_ON_HANDLE": {"untyped int", constant.MakeInt64(int64(q.FILE_SKIP_SET_EVENT_ON_HANDLE))}, + "FILE_TYPE_CHAR": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_CHAR))}, + "FILE_TYPE_DISK": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_DISK))}, + "FILE_TYPE_PIPE": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_PIPE))}, + "FILE_TYPE_REMOTE": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_REMOTE))}, + "FILE_TYPE_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_UNKNOWN))}, + "FILE_WRITE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.FILE_WRITE_ATTRIBUTES))}, + "FORMAT_MESSAGE_ALLOCATE_BUFFER": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_ALLOCATE_BUFFER))}, + "FORMAT_MESSAGE_ARGUMENT_ARRAY": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_ARGUMENT_ARRAY))}, + "FORMAT_MESSAGE_FROM_HMODULE": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_HMODULE))}, + "FORMAT_MESSAGE_FROM_STRING": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_STRING))}, + "FORMAT_MESSAGE_FROM_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_SYSTEM))}, + "FORMAT_MESSAGE_IGNORE_INSERTS": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_IGNORE_INSERTS))}, + "FORMAT_MESSAGE_MAX_WIDTH_MASK": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_MAX_WIDTH_MASK))}, + "FSCTL_GET_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FSCTL_GET_REPARSE_POINT))}, + "GENERIC_ALL": {"untyped int", constant.MakeInt64(int64(q.GENERIC_ALL))}, + "GENERIC_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.GENERIC_EXECUTE))}, + "GENERIC_READ": {"untyped int", constant.MakeInt64(int64(q.GENERIC_READ))}, + "GENERIC_WRITE": {"untyped int", constant.MakeInt64(int64(q.GENERIC_WRITE))}, + "GetFileExInfoStandard": {"untyped int", constant.MakeInt64(int64(q.GetFileExInfoStandard))}, + "GetFileExMaxInfoLevel": {"untyped int", constant.MakeInt64(int64(q.GetFileExMaxInfoLevel))}, + "HANDLE_FLAG_INHERIT": {"untyped int", constant.MakeInt64(int64(q.HANDLE_FLAG_INHERIT))}, + "HKEY_CLASSES_ROOT": {"untyped int", constant.MakeInt64(int64(q.HKEY_CLASSES_ROOT))}, + "HKEY_CURRENT_CONFIG": {"untyped int", constant.MakeInt64(int64(q.HKEY_CURRENT_CONFIG))}, + "HKEY_CURRENT_USER": {"untyped int", constant.MakeInt64(int64(q.HKEY_CURRENT_USER))}, + "HKEY_DYN_DATA": {"untyped int", constant.MakeInt64(int64(q.HKEY_DYN_DATA))}, + "HKEY_LOCAL_MACHINE": {"untyped int", constant.MakeInt64(int64(q.HKEY_LOCAL_MACHINE))}, + "HKEY_PERFORMANCE_DATA": {"untyped int", constant.MakeInt64(int64(q.HKEY_PERFORMANCE_DATA))}, + "HKEY_USERS": {"untyped int", constant.MakeInt64(int64(q.HKEY_USERS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_POINTTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTTOPOINT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IGNORE": {"untyped int", constant.MakeInt64(int64(q.IGNORE))}, + "INFINITE": {"untyped int", constant.MakeInt64(int64(q.INFINITE))}, + "INVALID_FILE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.INVALID_FILE_ATTRIBUTES))}, + "IOC_IN": {"untyped int", constant.MakeInt64(int64(q.IOC_IN))}, + "IOC_INOUT": {"untyped int", constant.MakeInt64(int64(q.IOC_INOUT))}, + "IOC_OUT": {"untyped int", constant.MakeInt64(int64(q.IOC_OUT))}, + "IOC_VENDOR": {"untyped int", constant.MakeInt64(int64(q.IOC_VENDOR))}, + "IOC_WS2": {"untyped int", constant.MakeInt64(int64(q.IOC_WS2))}, + "IO_REPARSE_TAG_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.IO_REPARSE_TAG_SYMLINK))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "KEY_ALL_ACCESS": {"untyped int", constant.MakeInt64(int64(q.KEY_ALL_ACCESS))}, + "KEY_CREATE_LINK": {"untyped int", constant.MakeInt64(int64(q.KEY_CREATE_LINK))}, + "KEY_CREATE_SUB_KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_CREATE_SUB_KEY))}, + "KEY_ENUMERATE_SUB_KEYS": {"untyped int", constant.MakeInt64(int64(q.KEY_ENUMERATE_SUB_KEYS))}, + "KEY_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.KEY_EXECUTE))}, + "KEY_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.KEY_NOTIFY))}, + "KEY_QUERY_VALUE": {"untyped int", constant.MakeInt64(int64(q.KEY_QUERY_VALUE))}, + "KEY_READ": {"untyped int", constant.MakeInt64(int64(q.KEY_READ))}, + "KEY_SET_VALUE": {"untyped int", constant.MakeInt64(int64(q.KEY_SET_VALUE))}, + "KEY_WOW64_32KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_WOW64_32KEY))}, + "KEY_WOW64_64KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_WOW64_64KEY))}, + "KEY_WRITE": {"untyped int", constant.MakeInt64(int64(q.KEY_WRITE))}, + "LANG_ENGLISH": {"untyped int", constant.MakeInt64(int64(q.LANG_ENGLISH))}, + "LAYERED_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.LAYERED_PROTOCOL))}, + "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": {"untyped int", constant.MakeInt64(int64(q.MAXIMUM_REPARSE_DATA_BUFFER_SIZE))}, + "MAXLEN_IFDESCR": {"untyped int", constant.MakeInt64(int64(q.MAXLEN_IFDESCR))}, + "MAXLEN_PHYSADDR": {"untyped int", constant.MakeInt64(int64(q.MAXLEN_PHYSADDR))}, + "MAX_ADAPTER_ADDRESS_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_ADDRESS_LENGTH))}, + "MAX_ADAPTER_DESCRIPTION_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_DESCRIPTION_LENGTH))}, + "MAX_ADAPTER_NAME_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_NAME_LENGTH))}, + "MAX_COMPUTERNAME_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_COMPUTERNAME_LENGTH))}, + "MAX_INTERFACE_NAME_LEN": {"untyped int", constant.MakeInt64(int64(q.MAX_INTERFACE_NAME_LEN))}, + "MAX_LONG_PATH": {"untyped int", constant.MakeInt64(int64(q.MAX_LONG_PATH))}, + "MAX_PATH": {"untyped int", constant.MakeInt64(int64(q.MAX_PATH))}, + "MAX_PROTOCOL_CHAIN": {"untyped int", constant.MakeInt64(int64(q.MAX_PROTOCOL_CHAIN))}, + "MaxTokenInfoClass": {"untyped int", constant.MakeInt64(int64(q.MaxTokenInfoClass))}, + "NameCanonical": {"untyped int", constant.MakeInt64(int64(q.NameCanonical))}, + "NameCanonicalEx": {"untyped int", constant.MakeInt64(int64(q.NameCanonicalEx))}, + "NameDisplay": {"untyped int", constant.MakeInt64(int64(q.NameDisplay))}, + "NameDnsDomain": {"untyped int", constant.MakeInt64(int64(q.NameDnsDomain))}, + "NameFullyQualifiedDN": {"untyped int", constant.MakeInt64(int64(q.NameFullyQualifiedDN))}, + "NameSamCompatible": {"untyped int", constant.MakeInt64(int64(q.NameSamCompatible))}, + "NameServicePrincipal": {"untyped int", constant.MakeInt64(int64(q.NameServicePrincipal))}, + "NameUniqueId": {"untyped int", constant.MakeInt64(int64(q.NameUniqueId))}, + "NameUnknown": {"untyped int", constant.MakeInt64(int64(q.NameUnknown))}, + "NameUserPrincipal": {"untyped int", constant.MakeInt64(int64(q.NameUserPrincipal))}, + "NetSetupDomainName": {"untyped int", constant.MakeInt64(int64(q.NetSetupDomainName))}, + "NetSetupUnjoined": {"untyped int", constant.MakeInt64(int64(q.NetSetupUnjoined))}, + "NetSetupUnknownStatus": {"untyped int", constant.MakeInt64(int64(q.NetSetupUnknownStatus))}, + "NetSetupWorkgroupName": {"untyped int", constant.MakeInt64(int64(q.NetSetupWorkgroupName))}, + "OPEN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.OPEN_ALWAYS))}, + "OPEN_EXISTING": {"untyped int", constant.MakeInt64(int64(q.OPEN_EXISTING))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PAGE_EXECUTE_READ": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_READ))}, + "PAGE_EXECUTE_READWRITE": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_READWRITE))}, + "PAGE_EXECUTE_WRITECOPY": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_WRITECOPY))}, + "PAGE_READONLY": {"untyped int", constant.MakeInt64(int64(q.PAGE_READONLY))}, + "PAGE_READWRITE": {"untyped int", constant.MakeInt64(int64(q.PAGE_READWRITE))}, + "PAGE_WRITECOPY": {"untyped int", constant.MakeInt64(int64(q.PAGE_WRITECOPY))}, + "PFL_HIDDEN": {"untyped int", constant.MakeInt64(int64(q.PFL_HIDDEN))}, + "PFL_MATCHES_PROTOCOL_ZERO": {"untyped int", constant.MakeInt64(int64(q.PFL_MATCHES_PROTOCOL_ZERO))}, + "PFL_MULTIPLE_PROTO_ENTRIES": {"untyped int", constant.MakeInt64(int64(q.PFL_MULTIPLE_PROTO_ENTRIES))}, + "PFL_NETWORKDIRECT_PROVIDER": {"untyped int", constant.MakeInt64(int64(q.PFL_NETWORKDIRECT_PROVIDER))}, + "PFL_RECOMMENDED_PROTO_ENTRY": {"untyped int", constant.MakeInt64(int64(q.PFL_RECOMMENDED_PROTO_ENTRY))}, + "PKCS_7_ASN_ENCODING": {"untyped int", constant.MakeInt64(int64(q.PKCS_7_ASN_ENCODING))}, + "PROCESS_QUERY_INFORMATION": {"untyped int", constant.MakeInt64(int64(q.PROCESS_QUERY_INFORMATION))}, + "PROCESS_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.PROCESS_TERMINATE))}, + "PROV_DH_SCHANNEL": {"untyped int", constant.MakeInt64(int64(q.PROV_DH_SCHANNEL))}, + "PROV_DSS": {"untyped int", constant.MakeInt64(int64(q.PROV_DSS))}, + "PROV_DSS_DH": {"untyped int", constant.MakeInt64(int64(q.PROV_DSS_DH))}, + "PROV_EC_ECDSA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECDSA_FULL))}, + "PROV_EC_ECDSA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECDSA_SIG))}, + "PROV_EC_ECNRA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECNRA_FULL))}, + "PROV_EC_ECNRA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECNRA_SIG))}, + "PROV_FORTEZZA": {"untyped int", constant.MakeInt64(int64(q.PROV_FORTEZZA))}, + "PROV_INTEL_SEC": {"untyped int", constant.MakeInt64(int64(q.PROV_INTEL_SEC))}, + "PROV_MS_EXCHANGE": {"untyped int", constant.MakeInt64(int64(q.PROV_MS_EXCHANGE))}, + "PROV_REPLACE_OWF": {"untyped int", constant.MakeInt64(int64(q.PROV_REPLACE_OWF))}, + "PROV_RNG": {"untyped int", constant.MakeInt64(int64(q.PROV_RNG))}, + "PROV_RSA_AES": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_AES))}, + "PROV_RSA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_FULL))}, + "PROV_RSA_SCHANNEL": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_SCHANNEL))}, + "PROV_RSA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_SIG))}, + "PROV_SPYRUS_LYNKS": {"untyped int", constant.MakeInt64(int64(q.PROV_SPYRUS_LYNKS))}, + "PROV_SSL": {"untyped int", constant.MakeInt64(int64(q.PROV_SSL))}, + "REG_BINARY": {"untyped int", constant.MakeInt64(int64(q.REG_BINARY))}, + "REG_DWORD": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD))}, + "REG_DWORD_BIG_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD_BIG_ENDIAN))}, + "REG_DWORD_LITTLE_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD_LITTLE_ENDIAN))}, + "REG_EXPAND_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_EXPAND_SZ))}, + "REG_FULL_RESOURCE_DESCRIPTOR": {"untyped int", constant.MakeInt64(int64(q.REG_FULL_RESOURCE_DESCRIPTOR))}, + "REG_LINK": {"untyped int", constant.MakeInt64(int64(q.REG_LINK))}, + "REG_MULTI_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_MULTI_SZ))}, + "REG_NONE": {"untyped int", constant.MakeInt64(int64(q.REG_NONE))}, + "REG_QWORD": {"untyped int", constant.MakeInt64(int64(q.REG_QWORD))}, + "REG_QWORD_LITTLE_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_QWORD_LITTLE_ENDIAN))}, + "REG_RESOURCE_LIST": {"untyped int", constant.MakeInt64(int64(q.REG_RESOURCE_LIST))}, + "REG_RESOURCE_REQUIREMENTS_LIST": {"untyped int", constant.MakeInt64(int64(q.REG_RESOURCE_REQUIREMENTS_LIST))}, + "REG_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_SZ))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIO_GET_EXTENSION_FUNCTION_POINTER": {"untyped int", constant.MakeInt64(int64(q.SIO_GET_EXTENSION_FUNCTION_POINTER))}, + "SIO_GET_INTERFACE_LIST": {"untyped int", constant.MakeInt64(int64(q.SIO_GET_INTERFACE_LIST))}, + "SIO_KEEPALIVE_VALS": {"untyped int", constant.MakeInt64(int64(q.SIO_KEEPALIVE_VALS))}, + "SIO_UDP_CONNRESET": {"untyped int", constant.MakeInt64(int64(q.SIO_UDP_CONNRESET))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_UPDATE_ACCEPT_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.SO_UPDATE_ACCEPT_CONTEXT))}, + "SO_UPDATE_CONNECT_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.SO_UPDATE_CONNECT_CONTEXT))}, + "STANDARD_RIGHTS_ALL": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_ALL))}, + "STANDARD_RIGHTS_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_EXECUTE))}, + "STANDARD_RIGHTS_READ": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_READ))}, + "STANDARD_RIGHTS_REQUIRED": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_REQUIRED))}, + "STANDARD_RIGHTS_WRITE": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_WRITE))}, + "STARTF_USESHOWWINDOW": {"untyped int", constant.MakeInt64(int64(q.STARTF_USESHOWWINDOW))}, + "STARTF_USESTDHANDLES": {"untyped int", constant.MakeInt64(int64(q.STARTF_USESTDHANDLES))}, + "STD_ERROR_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_ERROR_HANDLE))}, + "STD_INPUT_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_INPUT_HANDLE))}, + "STD_OUTPUT_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_OUTPUT_HANDLE))}, + "SUBLANG_ENGLISH_US": {"untyped int", constant.MakeInt64(int64(q.SUBLANG_ENGLISH_US))}, + "SW_FORCEMINIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_FORCEMINIMIZE))}, + "SW_HIDE": {"untyped int", constant.MakeInt64(int64(q.SW_HIDE))}, + "SW_MAXIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_MAXIMIZE))}, + "SW_MINIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_MINIMIZE))}, + "SW_NORMAL": {"untyped int", constant.MakeInt64(int64(q.SW_NORMAL))}, + "SW_RESTORE": {"untyped int", constant.MakeInt64(int64(q.SW_RESTORE))}, + "SW_SHOW": {"untyped int", constant.MakeInt64(int64(q.SW_SHOW))}, + "SW_SHOWDEFAULT": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWDEFAULT))}, + "SW_SHOWMAXIMIZED": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMAXIMIZED))}, + "SW_SHOWMINIMIZED": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMINIMIZED))}, + "SW_SHOWMINNOACTIVE": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMINNOACTIVE))}, + "SW_SHOWNA": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNA))}, + "SW_SHOWNOACTIVATE": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNOACTIVATE))}, + "SW_SHOWNORMAL": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNORMAL))}, + "SYMBOLIC_LINK_FLAG_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.SYMBOLIC_LINK_FLAG_DIRECTORY))}, + "SYNCHRONIZE": {"untyped int", constant.MakeInt64(int64(q.SYNCHRONIZE))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SidTypeAlias": {"untyped int", constant.MakeInt64(int64(q.SidTypeAlias))}, + "SidTypeComputer": {"untyped int", constant.MakeInt64(int64(q.SidTypeComputer))}, + "SidTypeDeletedAccount": {"untyped int", constant.MakeInt64(int64(q.SidTypeDeletedAccount))}, + "SidTypeDomain": {"untyped int", constant.MakeInt64(int64(q.SidTypeDomain))}, + "SidTypeGroup": {"untyped int", constant.MakeInt64(int64(q.SidTypeGroup))}, + "SidTypeInvalid": {"untyped int", constant.MakeInt64(int64(q.SidTypeInvalid))}, + "SidTypeLabel": {"untyped int", constant.MakeInt64(int64(q.SidTypeLabel))}, + "SidTypeUnknown": {"untyped int", constant.MakeInt64(int64(q.SidTypeUnknown))}, + "SidTypeUser": {"untyped int", constant.MakeInt64(int64(q.SidTypeUser))}, + "SidTypeWellKnownGroup": {"untyped int", constant.MakeInt64(int64(q.SidTypeWellKnownGroup))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TF_DISCONNECT": {"untyped int", constant.MakeInt64(int64(q.TF_DISCONNECT))}, + "TF_REUSE_SOCKET": {"untyped int", constant.MakeInt64(int64(q.TF_REUSE_SOCKET))}, + "TF_USE_DEFAULT_WORKER": {"untyped int", constant.MakeInt64(int64(q.TF_USE_DEFAULT_WORKER))}, + "TF_USE_KERNEL_APC": {"untyped int", constant.MakeInt64(int64(q.TF_USE_KERNEL_APC))}, + "TF_USE_SYSTEM_THREAD": {"untyped int", constant.MakeInt64(int64(q.TF_USE_SYSTEM_THREAD))}, + "TF_WRITE_BEHIND": {"untyped int", constant.MakeInt64(int64(q.TF_WRITE_BEHIND))}, + "TH32CS_INHERIT": {"untyped int", constant.MakeInt64(int64(q.TH32CS_INHERIT))}, + "TH32CS_SNAPALL": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPALL))}, + "TH32CS_SNAPHEAPLIST": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPHEAPLIST))}, + "TH32CS_SNAPMODULE": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPMODULE))}, + "TH32CS_SNAPMODULE32": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPMODULE32))}, + "TH32CS_SNAPPROCESS": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPPROCESS))}, + "TH32CS_SNAPTHREAD": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPTHREAD))}, + "TIME_ZONE_ID_DAYLIGHT": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_DAYLIGHT))}, + "TIME_ZONE_ID_STANDARD": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_STANDARD))}, + "TIME_ZONE_ID_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_UNKNOWN))}, + "TOKEN_ADJUST_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_DEFAULT))}, + "TOKEN_ADJUST_GROUPS": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_GROUPS))}, + "TOKEN_ADJUST_PRIVILEGES": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_PRIVILEGES))}, + "TOKEN_ADJUST_SESSIONID": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_SESSIONID))}, + "TOKEN_ALL_ACCESS": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ALL_ACCESS))}, + "TOKEN_ASSIGN_PRIMARY": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ASSIGN_PRIMARY))}, + "TOKEN_DUPLICATE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_DUPLICATE))}, + "TOKEN_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_EXECUTE))}, + "TOKEN_IMPERSONATE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_IMPERSONATE))}, + "TOKEN_QUERY": {"untyped int", constant.MakeInt64(int64(q.TOKEN_QUERY))}, + "TOKEN_QUERY_SOURCE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_QUERY_SOURCE))}, + "TOKEN_READ": {"untyped int", constant.MakeInt64(int64(q.TOKEN_READ))}, + "TOKEN_WRITE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_WRITE))}, + "TRUNCATE_EXISTING": {"untyped int", constant.MakeInt64(int64(q.TRUNCATE_EXISTING))}, + "TokenAccessInformation": {"untyped int", constant.MakeInt64(int64(q.TokenAccessInformation))}, + "TokenAuditPolicy": {"untyped int", constant.MakeInt64(int64(q.TokenAuditPolicy))}, + "TokenDefaultDacl": {"untyped int", constant.MakeInt64(int64(q.TokenDefaultDacl))}, + "TokenElevation": {"untyped int", constant.MakeInt64(int64(q.TokenElevation))}, + "TokenElevationType": {"untyped int", constant.MakeInt64(int64(q.TokenElevationType))}, + "TokenGroups": {"untyped int", constant.MakeInt64(int64(q.TokenGroups))}, + "TokenGroupsAndPrivileges": {"untyped int", constant.MakeInt64(int64(q.TokenGroupsAndPrivileges))}, + "TokenHasRestrictions": {"untyped int", constant.MakeInt64(int64(q.TokenHasRestrictions))}, + "TokenImpersonationLevel": {"untyped int", constant.MakeInt64(int64(q.TokenImpersonationLevel))}, + "TokenIntegrityLevel": {"untyped int", constant.MakeInt64(int64(q.TokenIntegrityLevel))}, + "TokenLinkedToken": {"untyped int", constant.MakeInt64(int64(q.TokenLinkedToken))}, + "TokenLogonSid": {"untyped int", constant.MakeInt64(int64(q.TokenLogonSid))}, + "TokenMandatoryPolicy": {"untyped int", constant.MakeInt64(int64(q.TokenMandatoryPolicy))}, + "TokenOrigin": {"untyped int", constant.MakeInt64(int64(q.TokenOrigin))}, + "TokenOwner": {"untyped int", constant.MakeInt64(int64(q.TokenOwner))}, + "TokenPrimaryGroup": {"untyped int", constant.MakeInt64(int64(q.TokenPrimaryGroup))}, + "TokenPrivileges": {"untyped int", constant.MakeInt64(int64(q.TokenPrivileges))}, + "TokenRestrictedSids": {"untyped int", constant.MakeInt64(int64(q.TokenRestrictedSids))}, + "TokenSandBoxInert": {"untyped int", constant.MakeInt64(int64(q.TokenSandBoxInert))}, + "TokenSessionId": {"untyped int", constant.MakeInt64(int64(q.TokenSessionId))}, + "TokenSessionReference": {"untyped int", constant.MakeInt64(int64(q.TokenSessionReference))}, + "TokenSource": {"untyped int", constant.MakeInt64(int64(q.TokenSource))}, + "TokenStatistics": {"untyped int", constant.MakeInt64(int64(q.TokenStatistics))}, + "TokenType": {"untyped int", constant.MakeInt64(int64(q.TokenType))}, + "TokenUIAccess": {"untyped int", constant.MakeInt64(int64(q.TokenUIAccess))}, + "TokenUser": {"untyped int", constant.MakeInt64(int64(q.TokenUser))}, + "TokenVirtualizationAllowed": {"untyped int", constant.MakeInt64(int64(q.TokenVirtualizationAllowed))}, + "TokenVirtualizationEnabled": {"untyped int", constant.MakeInt64(int64(q.TokenVirtualizationEnabled))}, + "UNIX_PATH_MAX": {"untyped int", constant.MakeInt64(int64(q.UNIX_PATH_MAX))}, + "USAGE_MATCH_TYPE_AND": {"untyped int", constant.MakeInt64(int64(q.USAGE_MATCH_TYPE_AND))}, + "USAGE_MATCH_TYPE_OR": {"untyped int", constant.MakeInt64(int64(q.USAGE_MATCH_TYPE_OR))}, + "WAIT_ABANDONED": {"untyped int", constant.MakeInt64(int64(q.WAIT_ABANDONED))}, + "WAIT_FAILED": {"untyped int", constant.MakeInt64(int64(q.WAIT_FAILED))}, + "WAIT_OBJECT_0": {"untyped int", constant.MakeInt64(int64(q.WAIT_OBJECT_0))}, + "WAIT_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.WAIT_TIMEOUT))}, + "WSADESCRIPTION_LEN": {"untyped int", constant.MakeInt64(int64(q.WSADESCRIPTION_LEN))}, + "WSAPROTOCOL_LEN": {"untyped int", constant.MakeInt64(int64(q.WSAPROTOCOL_LEN))}, + "WSASYS_STATUS_LEN": {"untyped int", constant.MakeInt64(int64(q.WSASYS_STATUS_LEN))}, + "X509_ASN_ENCODING": {"untyped int", constant.MakeInt64(int64(q.X509_ASN_ENCODING))}, + "XP1_CONNECTIONLESS": {"untyped int", constant.MakeInt64(int64(q.XP1_CONNECTIONLESS))}, + "XP1_CONNECT_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_CONNECT_DATA))}, + "XP1_DISCONNECT_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_DISCONNECT_DATA))}, + "XP1_EXPEDITED_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_EXPEDITED_DATA))}, + "XP1_GRACEFUL_CLOSE": {"untyped int", constant.MakeInt64(int64(q.XP1_GRACEFUL_CLOSE))}, + "XP1_GUARANTEED_DELIVERY": {"untyped int", constant.MakeInt64(int64(q.XP1_GUARANTEED_DELIVERY))}, + "XP1_GUARANTEED_ORDER": {"untyped int", constant.MakeInt64(int64(q.XP1_GUARANTEED_ORDER))}, + "XP1_IFS_HANDLES": {"untyped int", constant.MakeInt64(int64(q.XP1_IFS_HANDLES))}, + "XP1_MESSAGE_ORIENTED": {"untyped int", constant.MakeInt64(int64(q.XP1_MESSAGE_ORIENTED))}, + "XP1_MULTIPOINT_CONTROL_PLANE": {"untyped int", constant.MakeInt64(int64(q.XP1_MULTIPOINT_CONTROL_PLANE))}, + "XP1_MULTIPOINT_DATA_PLANE": {"untyped int", constant.MakeInt64(int64(q.XP1_MULTIPOINT_DATA_PLANE))}, + "XP1_PARTIAL_MESSAGE": {"untyped int", constant.MakeInt64(int64(q.XP1_PARTIAL_MESSAGE))}, + "XP1_PSEUDO_STREAM": {"untyped int", constant.MakeInt64(int64(q.XP1_PSEUDO_STREAM))}, + "XP1_QOS_SUPPORTED": {"untyped int", constant.MakeInt64(int64(q.XP1_QOS_SUPPORTED))}, + "XP1_SAN_SUPPORT_SDP": {"untyped int", constant.MakeInt64(int64(q.XP1_SAN_SUPPORT_SDP))}, + "XP1_SUPPORT_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.XP1_SUPPORT_BROADCAST))}, + "XP1_SUPPORT_MULTIPOINT": {"untyped int", constant.MakeInt64(int64(q.XP1_SUPPORT_MULTIPOINT))}, + "XP1_UNI_RECV": {"untyped int", constant.MakeInt64(int64(q.XP1_UNI_RECV))}, + "XP1_UNI_SEND": {"untyped int", constant.MakeInt64(int64(q.XP1_UNI_SEND))}, + }, + }) +} diff --git a/pkg/syscall/go123_export_windows_arm64.go b/pkg/syscall/go123_export_windows_arm64.go new file mode 100755 index 00000000..8ee1f18a --- /dev/null +++ b/pkg/syscall/go123_export_windows_arm64.go @@ -0,0 +1,1043 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package syscall + +import ( + q "syscall" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "syscall", + Path: "syscall", + Deps: map[string]string{ + "errors": "errors", + "internal/asan": "asan", + "internal/bytealg": "bytealg", + "internal/itoa": "itoa", + "internal/msan": "msan", + "internal/oserror": "oserror", + "internal/race": "race", + "internal/syscall/windows/sysdll": "sysdll", + "runtime": "runtime", + "sync": "sync", + "sync/atomic": "atomic", + "unicode/utf16": "utf16", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), + "RawConn": reflect.TypeOf((*q.RawConn)(nil)).Elem(), + "Sockaddr": reflect.TypeOf((*q.Sockaddr)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "AddrinfoW": reflect.TypeOf((*q.AddrinfoW)(nil)).Elem(), + "ByHandleFileInformation": reflect.TypeOf((*q.ByHandleFileInformation)(nil)).Elem(), + "CertChainContext": reflect.TypeOf((*q.CertChainContext)(nil)).Elem(), + "CertChainElement": reflect.TypeOf((*q.CertChainElement)(nil)).Elem(), + "CertChainPara": reflect.TypeOf((*q.CertChainPara)(nil)).Elem(), + "CertChainPolicyPara": reflect.TypeOf((*q.CertChainPolicyPara)(nil)).Elem(), + "CertChainPolicyStatus": reflect.TypeOf((*q.CertChainPolicyStatus)(nil)).Elem(), + "CertContext": reflect.TypeOf((*q.CertContext)(nil)).Elem(), + "CertEnhKeyUsage": reflect.TypeOf((*q.CertEnhKeyUsage)(nil)).Elem(), + "CertInfo": reflect.TypeOf((*q.CertInfo)(nil)).Elem(), + "CertRevocationCrlInfo": reflect.TypeOf((*q.CertRevocationCrlInfo)(nil)).Elem(), + "CertRevocationInfo": reflect.TypeOf((*q.CertRevocationInfo)(nil)).Elem(), + "CertSimpleChain": reflect.TypeOf((*q.CertSimpleChain)(nil)).Elem(), + "CertTrustListInfo": reflect.TypeOf((*q.CertTrustListInfo)(nil)).Elem(), + "CertTrustStatus": reflect.TypeOf((*q.CertTrustStatus)(nil)).Elem(), + "CertUsageMatch": reflect.TypeOf((*q.CertUsageMatch)(nil)).Elem(), + "DLL": reflect.TypeOf((*q.DLL)(nil)).Elem(), + "DLLError": reflect.TypeOf((*q.DLLError)(nil)).Elem(), + "DNSMXData": reflect.TypeOf((*q.DNSMXData)(nil)).Elem(), + "DNSPTRData": reflect.TypeOf((*q.DNSPTRData)(nil)).Elem(), + "DNSRecord": reflect.TypeOf((*q.DNSRecord)(nil)).Elem(), + "DNSSRVData": reflect.TypeOf((*q.DNSSRVData)(nil)).Elem(), + "DNSTXTData": reflect.TypeOf((*q.DNSTXTData)(nil)).Elem(), + "Errno": reflect.TypeOf((*q.Errno)(nil)).Elem(), + "FileNotifyInformation": reflect.TypeOf((*q.FileNotifyInformation)(nil)).Elem(), + "Filetime": reflect.TypeOf((*q.Filetime)(nil)).Elem(), + "GUID": reflect.TypeOf((*q.GUID)(nil)).Elem(), + "Handle": reflect.TypeOf((*q.Handle)(nil)).Elem(), + "Hostent": reflect.TypeOf((*q.Hostent)(nil)).Elem(), + "IPMreq": reflect.TypeOf((*q.IPMreq)(nil)).Elem(), + "IPv6Mreq": reflect.TypeOf((*q.IPv6Mreq)(nil)).Elem(), + "InterfaceInfo": reflect.TypeOf((*q.InterfaceInfo)(nil)).Elem(), + "IpAdapterInfo": reflect.TypeOf((*q.IpAdapterInfo)(nil)).Elem(), + "IpAddrString": reflect.TypeOf((*q.IpAddrString)(nil)).Elem(), + "IpAddressString": reflect.TypeOf((*q.IpAddressString)(nil)).Elem(), + "IpMaskString": reflect.TypeOf((*q.IpMaskString)(nil)).Elem(), + "LazyDLL": reflect.TypeOf((*q.LazyDLL)(nil)).Elem(), + "LazyProc": reflect.TypeOf((*q.LazyProc)(nil)).Elem(), + "Linger": reflect.TypeOf((*q.Linger)(nil)).Elem(), + "MibIfRow": reflect.TypeOf((*q.MibIfRow)(nil)).Elem(), + "Overlapped": reflect.TypeOf((*q.Overlapped)(nil)).Elem(), + "Pointer": reflect.TypeOf((*q.Pointer)(nil)).Elem(), + "Proc": reflect.TypeOf((*q.Proc)(nil)).Elem(), + "ProcAttr": reflect.TypeOf((*q.ProcAttr)(nil)).Elem(), + "ProcessEntry32": reflect.TypeOf((*q.ProcessEntry32)(nil)).Elem(), + "ProcessInformation": reflect.TypeOf((*q.ProcessInformation)(nil)).Elem(), + "Protoent": reflect.TypeOf((*q.Protoent)(nil)).Elem(), + "RawSockaddr": reflect.TypeOf((*q.RawSockaddr)(nil)).Elem(), + "RawSockaddrAny": reflect.TypeOf((*q.RawSockaddrAny)(nil)).Elem(), + "RawSockaddrInet4": reflect.TypeOf((*q.RawSockaddrInet4)(nil)).Elem(), + "RawSockaddrInet6": reflect.TypeOf((*q.RawSockaddrInet6)(nil)).Elem(), + "RawSockaddrUnix": reflect.TypeOf((*q.RawSockaddrUnix)(nil)).Elem(), + "Rusage": reflect.TypeOf((*q.Rusage)(nil)).Elem(), + "SID": reflect.TypeOf((*q.SID)(nil)).Elem(), + "SIDAndAttributes": reflect.TypeOf((*q.SIDAndAttributes)(nil)).Elem(), + "SSLExtraCertChainPolicyPara": reflect.TypeOf((*q.SSLExtraCertChainPolicyPara)(nil)).Elem(), + "SecurityAttributes": reflect.TypeOf((*q.SecurityAttributes)(nil)).Elem(), + "Servent": reflect.TypeOf((*q.Servent)(nil)).Elem(), + "Signal": reflect.TypeOf((*q.Signal)(nil)).Elem(), + "SockaddrGen": reflect.TypeOf((*q.SockaddrGen)(nil)).Elem(), + "SockaddrInet4": reflect.TypeOf((*q.SockaddrInet4)(nil)).Elem(), + "SockaddrInet6": reflect.TypeOf((*q.SockaddrInet6)(nil)).Elem(), + "SockaddrUnix": reflect.TypeOf((*q.SockaddrUnix)(nil)).Elem(), + "StartupInfo": reflect.TypeOf((*q.StartupInfo)(nil)).Elem(), + "SysProcAttr": reflect.TypeOf((*q.SysProcAttr)(nil)).Elem(), + "Systemtime": reflect.TypeOf((*q.Systemtime)(nil)).Elem(), + "TCPKeepalive": reflect.TypeOf((*q.TCPKeepalive)(nil)).Elem(), + "Timespec": reflect.TypeOf((*q.Timespec)(nil)).Elem(), + "Timeval": reflect.TypeOf((*q.Timeval)(nil)).Elem(), + "Timezoneinformation": reflect.TypeOf((*q.Timezoneinformation)(nil)).Elem(), + "Token": reflect.TypeOf((*q.Token)(nil)).Elem(), + "Tokenprimarygroup": reflect.TypeOf((*q.Tokenprimarygroup)(nil)).Elem(), + "Tokenuser": reflect.TypeOf((*q.Tokenuser)(nil)).Elem(), + "TransmitFileBuffers": reflect.TypeOf((*q.TransmitFileBuffers)(nil)).Elem(), + "UserInfo10": reflect.TypeOf((*q.UserInfo10)(nil)).Elem(), + "WSABuf": reflect.TypeOf((*q.WSABuf)(nil)).Elem(), + "WSAData": reflect.TypeOf((*q.WSAData)(nil)).Elem(), + "WSAProtocolChain": reflect.TypeOf((*q.WSAProtocolChain)(nil)).Elem(), + "WSAProtocolInfo": reflect.TypeOf((*q.WSAProtocolInfo)(nil)).Elem(), + "WaitStatus": reflect.TypeOf((*q.WaitStatus)(nil)).Elem(), + "Win32FileAttributeData": reflect.TypeOf((*q.Win32FileAttributeData)(nil)).Elem(), + "Win32finddata": reflect.TypeOf((*q.Win32finddata)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ForkLock": reflect.ValueOf(&q.ForkLock), + "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&q.OID_PKIX_KP_SERVER_AUTH), + "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&q.OID_SERVER_GATED_CRYPTO), + "OID_SGC_NETSCAPE": reflect.ValueOf(&q.OID_SGC_NETSCAPE), + "SocketDisableIPv6": reflect.ValueOf(&q.SocketDisableIPv6), + "Stderr": reflect.ValueOf(&q.Stderr), + "Stdin": reflect.ValueOf(&q.Stdin), + "Stdout": reflect.ValueOf(&q.Stdout), + "WSAID_CONNECTEX": reflect.ValueOf(&q.WSAID_CONNECTEX), + }, + Funcs: map[string]reflect.Value{ + "Accept": reflect.ValueOf(q.Accept), + "AcceptEx": reflect.ValueOf(q.AcceptEx), + "Bind": reflect.ValueOf(q.Bind), + "BytePtrFromString": reflect.ValueOf(q.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(q.ByteSliceFromString), + "CancelIo": reflect.ValueOf(q.CancelIo), + "CancelIoEx": reflect.ValueOf(q.CancelIoEx), + "CertAddCertificateContextToStore": reflect.ValueOf(q.CertAddCertificateContextToStore), + "CertCloseStore": reflect.ValueOf(q.CertCloseStore), + "CertCreateCertificateContext": reflect.ValueOf(q.CertCreateCertificateContext), + "CertEnumCertificatesInStore": reflect.ValueOf(q.CertEnumCertificatesInStore), + "CertFreeCertificateChain": reflect.ValueOf(q.CertFreeCertificateChain), + "CertFreeCertificateContext": reflect.ValueOf(q.CertFreeCertificateContext), + "CertGetCertificateChain": reflect.ValueOf(q.CertGetCertificateChain), + "CertOpenStore": reflect.ValueOf(q.CertOpenStore), + "CertOpenSystemStore": reflect.ValueOf(q.CertOpenSystemStore), + "CertVerifyCertificateChainPolicy": reflect.ValueOf(q.CertVerifyCertificateChainPolicy), + "Chdir": reflect.ValueOf(q.Chdir), + "Chmod": reflect.ValueOf(q.Chmod), + "Chown": reflect.ValueOf(q.Chown), + "Clearenv": reflect.ValueOf(q.Clearenv), + "Close": reflect.ValueOf(q.Close), + "CloseHandle": reflect.ValueOf(q.CloseHandle), + "CloseOnExec": reflect.ValueOf(q.CloseOnExec), + "Closesocket": reflect.ValueOf(q.Closesocket), + "CommandLineToArgv": reflect.ValueOf(q.CommandLineToArgv), + "ComputerName": reflect.ValueOf(q.ComputerName), + "Connect": reflect.ValueOf(q.Connect), + "ConnectEx": reflect.ValueOf(q.ConnectEx), + "ConvertSidToStringSid": reflect.ValueOf(q.ConvertSidToStringSid), + "ConvertStringSidToSid": reflect.ValueOf(q.ConvertStringSidToSid), + "CopySid": reflect.ValueOf(q.CopySid), + "CreateDirectory": reflect.ValueOf(q.CreateDirectory), + "CreateFile": reflect.ValueOf(q.CreateFile), + "CreateFileMapping": reflect.ValueOf(q.CreateFileMapping), + "CreateHardLink": reflect.ValueOf(q.CreateHardLink), + "CreateIoCompletionPort": reflect.ValueOf(q.CreateIoCompletionPort), + "CreatePipe": reflect.ValueOf(q.CreatePipe), + "CreateProcess": reflect.ValueOf(q.CreateProcess), + "CreateProcessAsUser": reflect.ValueOf(q.CreateProcessAsUser), + "CreateSymbolicLink": reflect.ValueOf(q.CreateSymbolicLink), + "CreateToolhelp32Snapshot": reflect.ValueOf(q.CreateToolhelp32Snapshot), + "CryptAcquireContext": reflect.ValueOf(q.CryptAcquireContext), + "CryptGenRandom": reflect.ValueOf(q.CryptGenRandom), + "CryptReleaseContext": reflect.ValueOf(q.CryptReleaseContext), + "DeleteFile": reflect.ValueOf(q.DeleteFile), + "DeviceIoControl": reflect.ValueOf(q.DeviceIoControl), + "DnsNameCompare": reflect.ValueOf(q.DnsNameCompare), + "DnsQuery": reflect.ValueOf(q.DnsQuery), + "DnsRecordListFree": reflect.ValueOf(q.DnsRecordListFree), + "DuplicateHandle": reflect.ValueOf(q.DuplicateHandle), + "Environ": reflect.ValueOf(q.Environ), + "EscapeArg": reflect.ValueOf(q.EscapeArg), + "Exec": reflect.ValueOf(q.Exec), + "Exit": reflect.ValueOf(q.Exit), + "ExitProcess": reflect.ValueOf(q.ExitProcess), + "Fchdir": reflect.ValueOf(q.Fchdir), + "Fchmod": reflect.ValueOf(q.Fchmod), + "Fchown": reflect.ValueOf(q.Fchown), + "FindClose": reflect.ValueOf(q.FindClose), + "FindFirstFile": reflect.ValueOf(q.FindFirstFile), + "FindNextFile": reflect.ValueOf(q.FindNextFile), + "FlushFileBuffers": reflect.ValueOf(q.FlushFileBuffers), + "FlushViewOfFile": reflect.ValueOf(q.FlushViewOfFile), + "FormatMessage": reflect.ValueOf(q.FormatMessage), + "FreeAddrInfoW": reflect.ValueOf(q.FreeAddrInfoW), + "FreeEnvironmentStrings": reflect.ValueOf(q.FreeEnvironmentStrings), + "FreeLibrary": reflect.ValueOf(q.FreeLibrary), + "Fsync": reflect.ValueOf(q.Fsync), + "Ftruncate": reflect.ValueOf(q.Ftruncate), + "FullPath": reflect.ValueOf(q.FullPath), + "GetAcceptExSockaddrs": reflect.ValueOf(q.GetAcceptExSockaddrs), + "GetAdaptersInfo": reflect.ValueOf(q.GetAdaptersInfo), + "GetAddrInfoW": reflect.ValueOf(q.GetAddrInfoW), + "GetCommandLine": reflect.ValueOf(q.GetCommandLine), + "GetComputerName": reflect.ValueOf(q.GetComputerName), + "GetConsoleMode": reflect.ValueOf(q.GetConsoleMode), + "GetCurrentDirectory": reflect.ValueOf(q.GetCurrentDirectory), + "GetCurrentProcess": reflect.ValueOf(q.GetCurrentProcess), + "GetEnvironmentStrings": reflect.ValueOf(q.GetEnvironmentStrings), + "GetEnvironmentVariable": reflect.ValueOf(q.GetEnvironmentVariable), + "GetExitCodeProcess": reflect.ValueOf(q.GetExitCodeProcess), + "GetFileAttributes": reflect.ValueOf(q.GetFileAttributes), + "GetFileAttributesEx": reflect.ValueOf(q.GetFileAttributesEx), + "GetFileInformationByHandle": reflect.ValueOf(q.GetFileInformationByHandle), + "GetFileType": reflect.ValueOf(q.GetFileType), + "GetFullPathName": reflect.ValueOf(q.GetFullPathName), + "GetHostByName": reflect.ValueOf(q.GetHostByName), + "GetIfEntry": reflect.ValueOf(q.GetIfEntry), + "GetLastError": reflect.ValueOf(q.GetLastError), + "GetLengthSid": reflect.ValueOf(q.GetLengthSid), + "GetLongPathName": reflect.ValueOf(q.GetLongPathName), + "GetProcAddress": reflect.ValueOf(q.GetProcAddress), + "GetProcessTimes": reflect.ValueOf(q.GetProcessTimes), + "GetProtoByName": reflect.ValueOf(q.GetProtoByName), + "GetQueuedCompletionStatus": reflect.ValueOf(q.GetQueuedCompletionStatus), + "GetServByName": reflect.ValueOf(q.GetServByName), + "GetShortPathName": reflect.ValueOf(q.GetShortPathName), + "GetStartupInfo": reflect.ValueOf(q.GetStartupInfo), + "GetStdHandle": reflect.ValueOf(q.GetStdHandle), + "GetSystemTimeAsFileTime": reflect.ValueOf(q.GetSystemTimeAsFileTime), + "GetTempPath": reflect.ValueOf(q.GetTempPath), + "GetTimeZoneInformation": reflect.ValueOf(q.GetTimeZoneInformation), + "GetTokenInformation": reflect.ValueOf(q.GetTokenInformation), + "GetUserNameEx": reflect.ValueOf(q.GetUserNameEx), + "GetUserProfileDirectory": reflect.ValueOf(q.GetUserProfileDirectory), + "GetVersion": reflect.ValueOf(q.GetVersion), + "Getegid": reflect.ValueOf(q.Getegid), + "Getenv": reflect.ValueOf(q.Getenv), + "Geteuid": reflect.ValueOf(q.Geteuid), + "Getgid": reflect.ValueOf(q.Getgid), + "Getgroups": reflect.ValueOf(q.Getgroups), + "Getpagesize": reflect.ValueOf(q.Getpagesize), + "Getpeername": reflect.ValueOf(q.Getpeername), + "Getpid": reflect.ValueOf(q.Getpid), + "Getppid": reflect.ValueOf(q.Getppid), + "Getsockname": reflect.ValueOf(q.Getsockname), + "Getsockopt": reflect.ValueOf(q.Getsockopt), + "GetsockoptInt": reflect.ValueOf(q.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(q.Gettimeofday), + "Getuid": reflect.ValueOf(q.Getuid), + "Getwd": reflect.ValueOf(q.Getwd), + "Lchown": reflect.ValueOf(q.Lchown), + "Link": reflect.ValueOf(q.Link), + "Listen": reflect.ValueOf(q.Listen), + "LoadCancelIoEx": reflect.ValueOf(q.LoadCancelIoEx), + "LoadConnectEx": reflect.ValueOf(q.LoadConnectEx), + "LoadCreateSymbolicLink": reflect.ValueOf(q.LoadCreateSymbolicLink), + "LoadDLL": reflect.ValueOf(q.LoadDLL), + "LoadGetAddrInfo": reflect.ValueOf(q.LoadGetAddrInfo), + "LoadLibrary": reflect.ValueOf(q.LoadLibrary), + "LoadSetFileCompletionNotificationModes": reflect.ValueOf(q.LoadSetFileCompletionNotificationModes), + "LocalFree": reflect.ValueOf(q.LocalFree), + "LookupAccountName": reflect.ValueOf(q.LookupAccountName), + "LookupAccountSid": reflect.ValueOf(q.LookupAccountSid), + "LookupSID": reflect.ValueOf(q.LookupSID), + "MapViewOfFile": reflect.ValueOf(q.MapViewOfFile), + "Mkdir": reflect.ValueOf(q.Mkdir), + "MoveFile": reflect.ValueOf(q.MoveFile), + "MustLoadDLL": reflect.ValueOf(q.MustLoadDLL), + "NetApiBufferFree": reflect.ValueOf(q.NetApiBufferFree), + "NetGetJoinInformation": reflect.ValueOf(q.NetGetJoinInformation), + "NetUserGetInfo": reflect.ValueOf(q.NetUserGetInfo), + "NewCallback": reflect.ValueOf(q.NewCallback), + "NewCallbackCDecl": reflect.ValueOf(q.NewCallbackCDecl), + "NewLazyDLL": reflect.ValueOf(q.NewLazyDLL), + "NsecToFiletime": reflect.ValueOf(q.NsecToFiletime), + "NsecToTimespec": reflect.ValueOf(q.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(q.NsecToTimeval), + "Ntohs": reflect.ValueOf(q.Ntohs), + "Open": reflect.ValueOf(q.Open), + "OpenCurrentProcessToken": reflect.ValueOf(q.OpenCurrentProcessToken), + "OpenProcess": reflect.ValueOf(q.OpenProcess), + "OpenProcessToken": reflect.ValueOf(q.OpenProcessToken), + "Pipe": reflect.ValueOf(q.Pipe), + "PostQueuedCompletionStatus": reflect.ValueOf(q.PostQueuedCompletionStatus), + "Process32First": reflect.ValueOf(q.Process32First), + "Process32Next": reflect.ValueOf(q.Process32Next), + "Read": reflect.ValueOf(q.Read), + "ReadConsole": reflect.ValueOf(q.ReadConsole), + "ReadDirectoryChanges": reflect.ValueOf(q.ReadDirectoryChanges), + "ReadFile": reflect.ValueOf(q.ReadFile), + "Readlink": reflect.ValueOf(q.Readlink), + "Recvfrom": reflect.ValueOf(q.Recvfrom), + "RegCloseKey": reflect.ValueOf(q.RegCloseKey), + "RegEnumKeyEx": reflect.ValueOf(q.RegEnumKeyEx), + "RegOpenKeyEx": reflect.ValueOf(q.RegOpenKeyEx), + "RegQueryInfoKey": reflect.ValueOf(q.RegQueryInfoKey), + "RegQueryValueEx": reflect.ValueOf(q.RegQueryValueEx), + "RemoveDirectory": reflect.ValueOf(q.RemoveDirectory), + "Rename": reflect.ValueOf(q.Rename), + "Rmdir": reflect.ValueOf(q.Rmdir), + "Seek": reflect.ValueOf(q.Seek), + "Sendto": reflect.ValueOf(q.Sendto), + "SetCurrentDirectory": reflect.ValueOf(q.SetCurrentDirectory), + "SetEndOfFile": reflect.ValueOf(q.SetEndOfFile), + "SetEnvironmentVariable": reflect.ValueOf(q.SetEnvironmentVariable), + "SetFileAttributes": reflect.ValueOf(q.SetFileAttributes), + "SetFileCompletionNotificationModes": reflect.ValueOf(q.SetFileCompletionNotificationModes), + "SetFilePointer": reflect.ValueOf(q.SetFilePointer), + "SetFileTime": reflect.ValueOf(q.SetFileTime), + "SetHandleInformation": reflect.ValueOf(q.SetHandleInformation), + "SetNonblock": reflect.ValueOf(q.SetNonblock), + "Setenv": reflect.ValueOf(q.Setenv), + "Setsockopt": reflect.ValueOf(q.Setsockopt), + "SetsockoptIPMreq": reflect.ValueOf(q.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(q.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(q.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(q.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(q.SetsockoptLinger), + "SetsockoptTimeval": reflect.ValueOf(q.SetsockoptTimeval), + "Shutdown": reflect.ValueOf(q.Shutdown), + "Socket": reflect.ValueOf(q.Socket), + "StartProcess": reflect.ValueOf(q.StartProcess), + "StringBytePtr": reflect.ValueOf(q.StringBytePtr), + "StringByteSlice": reflect.ValueOf(q.StringByteSlice), + "StringToSid": reflect.ValueOf(q.StringToSid), + "StringToUTF16": reflect.ValueOf(q.StringToUTF16), + "StringToUTF16Ptr": reflect.ValueOf(q.StringToUTF16Ptr), + "Symlink": reflect.ValueOf(q.Symlink), + "Syscall": reflect.ValueOf(q.Syscall), + "Syscall12": reflect.ValueOf(q.Syscall12), + "Syscall15": reflect.ValueOf(q.Syscall15), + "Syscall18": reflect.ValueOf(q.Syscall18), + "Syscall6": reflect.ValueOf(q.Syscall6), + "Syscall9": reflect.ValueOf(q.Syscall9), + "SyscallN": reflect.ValueOf(q.SyscallN), + "TerminateProcess": reflect.ValueOf(q.TerminateProcess), + "TimespecToNsec": reflect.ValueOf(q.TimespecToNsec), + "TranslateAccountName": reflect.ValueOf(q.TranslateAccountName), + "TranslateName": reflect.ValueOf(q.TranslateName), + "TransmitFile": reflect.ValueOf(q.TransmitFile), + "UTF16FromString": reflect.ValueOf(q.UTF16FromString), + "UTF16PtrFromString": reflect.ValueOf(q.UTF16PtrFromString), + "UTF16ToString": reflect.ValueOf(q.UTF16ToString), + "Unlink": reflect.ValueOf(q.Unlink), + "UnmapViewOfFile": reflect.ValueOf(q.UnmapViewOfFile), + "Unsetenv": reflect.ValueOf(q.Unsetenv), + "Utimes": reflect.ValueOf(q.Utimes), + "UtimesNano": reflect.ValueOf(q.UtimesNano), + "VirtualLock": reflect.ValueOf(q.VirtualLock), + "VirtualUnlock": reflect.ValueOf(q.VirtualUnlock), + "WSACleanup": reflect.ValueOf(q.WSACleanup), + "WSAEnumProtocols": reflect.ValueOf(q.WSAEnumProtocols), + "WSAIoctl": reflect.ValueOf(q.WSAIoctl), + "WSARecv": reflect.ValueOf(q.WSARecv), + "WSARecvFrom": reflect.ValueOf(q.WSARecvFrom), + "WSASend": reflect.ValueOf(q.WSASend), + "WSASendTo": reflect.ValueOf(q.WSASendTo), + "WSASendto": reflect.ValueOf(q.WSASendto), + "WSAStartup": reflect.ValueOf(q.WSAStartup), + "WaitForSingleObject": reflect.ValueOf(q.WaitForSingleObject), + "Write": reflect.ValueOf(q.Write), + "WriteConsole": reflect.ValueOf(q.WriteConsole), + "WriteFile": reflect.ValueOf(q.WriteFile), + }, + TypedConsts: map[string]igop.TypedConst{ + "E2BIG": {reflect.TypeOf(q.E2BIG), constant.MakeInt64(int64(q.E2BIG))}, + "EACCES": {reflect.TypeOf(q.EACCES), constant.MakeInt64(int64(q.EACCES))}, + "EADDRINUSE": {reflect.TypeOf(q.EADDRINUSE), constant.MakeInt64(int64(q.EADDRINUSE))}, + "EADDRNOTAVAIL": {reflect.TypeOf(q.EADDRNOTAVAIL), constant.MakeInt64(int64(q.EADDRNOTAVAIL))}, + "EADV": {reflect.TypeOf(q.EADV), constant.MakeInt64(int64(q.EADV))}, + "EAFNOSUPPORT": {reflect.TypeOf(q.EAFNOSUPPORT), constant.MakeInt64(int64(q.EAFNOSUPPORT))}, + "EAGAIN": {reflect.TypeOf(q.EAGAIN), constant.MakeInt64(int64(q.EAGAIN))}, + "EALREADY": {reflect.TypeOf(q.EALREADY), constant.MakeInt64(int64(q.EALREADY))}, + "EBADE": {reflect.TypeOf(q.EBADE), constant.MakeInt64(int64(q.EBADE))}, + "EBADF": {reflect.TypeOf(q.EBADF), constant.MakeInt64(int64(q.EBADF))}, + "EBADFD": {reflect.TypeOf(q.EBADFD), constant.MakeInt64(int64(q.EBADFD))}, + "EBADMSG": {reflect.TypeOf(q.EBADMSG), constant.MakeInt64(int64(q.EBADMSG))}, + "EBADR": {reflect.TypeOf(q.EBADR), constant.MakeInt64(int64(q.EBADR))}, + "EBADRQC": {reflect.TypeOf(q.EBADRQC), constant.MakeInt64(int64(q.EBADRQC))}, + "EBADSLT": {reflect.TypeOf(q.EBADSLT), constant.MakeInt64(int64(q.EBADSLT))}, + "EBFONT": {reflect.TypeOf(q.EBFONT), constant.MakeInt64(int64(q.EBFONT))}, + "EBUSY": {reflect.TypeOf(q.EBUSY), constant.MakeInt64(int64(q.EBUSY))}, + "ECANCELED": {reflect.TypeOf(q.ECANCELED), constant.MakeInt64(int64(q.ECANCELED))}, + "ECHILD": {reflect.TypeOf(q.ECHILD), constant.MakeInt64(int64(q.ECHILD))}, + "ECHRNG": {reflect.TypeOf(q.ECHRNG), constant.MakeInt64(int64(q.ECHRNG))}, + "ECOMM": {reflect.TypeOf(q.ECOMM), constant.MakeInt64(int64(q.ECOMM))}, + "ECONNABORTED": {reflect.TypeOf(q.ECONNABORTED), constant.MakeInt64(int64(q.ECONNABORTED))}, + "ECONNREFUSED": {reflect.TypeOf(q.ECONNREFUSED), constant.MakeInt64(int64(q.ECONNREFUSED))}, + "ECONNRESET": {reflect.TypeOf(q.ECONNRESET), constant.MakeInt64(int64(q.ECONNRESET))}, + "EDEADLK": {reflect.TypeOf(q.EDEADLK), constant.MakeInt64(int64(q.EDEADLK))}, + "EDEADLOCK": {reflect.TypeOf(q.EDEADLOCK), constant.MakeInt64(int64(q.EDEADLOCK))}, + "EDESTADDRREQ": {reflect.TypeOf(q.EDESTADDRREQ), constant.MakeInt64(int64(q.EDESTADDRREQ))}, + "EDOM": {reflect.TypeOf(q.EDOM), constant.MakeInt64(int64(q.EDOM))}, + "EDOTDOT": {reflect.TypeOf(q.EDOTDOT), constant.MakeInt64(int64(q.EDOTDOT))}, + "EDQUOT": {reflect.TypeOf(q.EDQUOT), constant.MakeInt64(int64(q.EDQUOT))}, + "EEXIST": {reflect.TypeOf(q.EEXIST), constant.MakeInt64(int64(q.EEXIST))}, + "EFAULT": {reflect.TypeOf(q.EFAULT), constant.MakeInt64(int64(q.EFAULT))}, + "EFBIG": {reflect.TypeOf(q.EFBIG), constant.MakeInt64(int64(q.EFBIG))}, + "EHOSTDOWN": {reflect.TypeOf(q.EHOSTDOWN), constant.MakeInt64(int64(q.EHOSTDOWN))}, + "EHOSTUNREACH": {reflect.TypeOf(q.EHOSTUNREACH), constant.MakeInt64(int64(q.EHOSTUNREACH))}, + "EIDRM": {reflect.TypeOf(q.EIDRM), constant.MakeInt64(int64(q.EIDRM))}, + "EILSEQ": {reflect.TypeOf(q.EILSEQ), constant.MakeInt64(int64(q.EILSEQ))}, + "EINPROGRESS": {reflect.TypeOf(q.EINPROGRESS), constant.MakeInt64(int64(q.EINPROGRESS))}, + "EINTR": {reflect.TypeOf(q.EINTR), constant.MakeInt64(int64(q.EINTR))}, + "EINVAL": {reflect.TypeOf(q.EINVAL), constant.MakeInt64(int64(q.EINVAL))}, + "EIO": {reflect.TypeOf(q.EIO), constant.MakeInt64(int64(q.EIO))}, + "EISCONN": {reflect.TypeOf(q.EISCONN), constant.MakeInt64(int64(q.EISCONN))}, + "EISDIR": {reflect.TypeOf(q.EISDIR), constant.MakeInt64(int64(q.EISDIR))}, + "EISNAM": {reflect.TypeOf(q.EISNAM), constant.MakeInt64(int64(q.EISNAM))}, + "EKEYEXPIRED": {reflect.TypeOf(q.EKEYEXPIRED), constant.MakeInt64(int64(q.EKEYEXPIRED))}, + "EKEYREJECTED": {reflect.TypeOf(q.EKEYREJECTED), constant.MakeInt64(int64(q.EKEYREJECTED))}, + "EKEYREVOKED": {reflect.TypeOf(q.EKEYREVOKED), constant.MakeInt64(int64(q.EKEYREVOKED))}, + "EL2HLT": {reflect.TypeOf(q.EL2HLT), constant.MakeInt64(int64(q.EL2HLT))}, + "EL2NSYNC": {reflect.TypeOf(q.EL2NSYNC), constant.MakeInt64(int64(q.EL2NSYNC))}, + "EL3HLT": {reflect.TypeOf(q.EL3HLT), constant.MakeInt64(int64(q.EL3HLT))}, + "EL3RST": {reflect.TypeOf(q.EL3RST), constant.MakeInt64(int64(q.EL3RST))}, + "ELIBACC": {reflect.TypeOf(q.ELIBACC), constant.MakeInt64(int64(q.ELIBACC))}, + "ELIBBAD": {reflect.TypeOf(q.ELIBBAD), constant.MakeInt64(int64(q.ELIBBAD))}, + "ELIBEXEC": {reflect.TypeOf(q.ELIBEXEC), constant.MakeInt64(int64(q.ELIBEXEC))}, + "ELIBMAX": {reflect.TypeOf(q.ELIBMAX), constant.MakeInt64(int64(q.ELIBMAX))}, + "ELIBSCN": {reflect.TypeOf(q.ELIBSCN), constant.MakeInt64(int64(q.ELIBSCN))}, + "ELNRNG": {reflect.TypeOf(q.ELNRNG), constant.MakeInt64(int64(q.ELNRNG))}, + "ELOOP": {reflect.TypeOf(q.ELOOP), constant.MakeInt64(int64(q.ELOOP))}, + "EMEDIUMTYPE": {reflect.TypeOf(q.EMEDIUMTYPE), constant.MakeInt64(int64(q.EMEDIUMTYPE))}, + "EMFILE": {reflect.TypeOf(q.EMFILE), constant.MakeInt64(int64(q.EMFILE))}, + "EMLINK": {reflect.TypeOf(q.EMLINK), constant.MakeInt64(int64(q.EMLINK))}, + "EMSGSIZE": {reflect.TypeOf(q.EMSGSIZE), constant.MakeInt64(int64(q.EMSGSIZE))}, + "EMULTIHOP": {reflect.TypeOf(q.EMULTIHOP), constant.MakeInt64(int64(q.EMULTIHOP))}, + "ENAMETOOLONG": {reflect.TypeOf(q.ENAMETOOLONG), constant.MakeInt64(int64(q.ENAMETOOLONG))}, + "ENAVAIL": {reflect.TypeOf(q.ENAVAIL), constant.MakeInt64(int64(q.ENAVAIL))}, + "ENETDOWN": {reflect.TypeOf(q.ENETDOWN), constant.MakeInt64(int64(q.ENETDOWN))}, + "ENETRESET": {reflect.TypeOf(q.ENETRESET), constant.MakeInt64(int64(q.ENETRESET))}, + "ENETUNREACH": {reflect.TypeOf(q.ENETUNREACH), constant.MakeInt64(int64(q.ENETUNREACH))}, + "ENFILE": {reflect.TypeOf(q.ENFILE), constant.MakeInt64(int64(q.ENFILE))}, + "ENOANO": {reflect.TypeOf(q.ENOANO), constant.MakeInt64(int64(q.ENOANO))}, + "ENOBUFS": {reflect.TypeOf(q.ENOBUFS), constant.MakeInt64(int64(q.ENOBUFS))}, + "ENOCSI": {reflect.TypeOf(q.ENOCSI), constant.MakeInt64(int64(q.ENOCSI))}, + "ENODATA": {reflect.TypeOf(q.ENODATA), constant.MakeInt64(int64(q.ENODATA))}, + "ENODEV": {reflect.TypeOf(q.ENODEV), constant.MakeInt64(int64(q.ENODEV))}, + "ENOENT": {reflect.TypeOf(q.ENOENT), constant.MakeInt64(int64(q.ENOENT))}, + "ENOEXEC": {reflect.TypeOf(q.ENOEXEC), constant.MakeInt64(int64(q.ENOEXEC))}, + "ENOKEY": {reflect.TypeOf(q.ENOKEY), constant.MakeInt64(int64(q.ENOKEY))}, + "ENOLCK": {reflect.TypeOf(q.ENOLCK), constant.MakeInt64(int64(q.ENOLCK))}, + "ENOLINK": {reflect.TypeOf(q.ENOLINK), constant.MakeInt64(int64(q.ENOLINK))}, + "ENOMEDIUM": {reflect.TypeOf(q.ENOMEDIUM), constant.MakeInt64(int64(q.ENOMEDIUM))}, + "ENOMEM": {reflect.TypeOf(q.ENOMEM), constant.MakeInt64(int64(q.ENOMEM))}, + "ENOMSG": {reflect.TypeOf(q.ENOMSG), constant.MakeInt64(int64(q.ENOMSG))}, + "ENONET": {reflect.TypeOf(q.ENONET), constant.MakeInt64(int64(q.ENONET))}, + "ENOPKG": {reflect.TypeOf(q.ENOPKG), constant.MakeInt64(int64(q.ENOPKG))}, + "ENOPROTOOPT": {reflect.TypeOf(q.ENOPROTOOPT), constant.MakeInt64(int64(q.ENOPROTOOPT))}, + "ENOSPC": {reflect.TypeOf(q.ENOSPC), constant.MakeInt64(int64(q.ENOSPC))}, + "ENOSR": {reflect.TypeOf(q.ENOSR), constant.MakeInt64(int64(q.ENOSR))}, + "ENOSTR": {reflect.TypeOf(q.ENOSTR), constant.MakeInt64(int64(q.ENOSTR))}, + "ENOSYS": {reflect.TypeOf(q.ENOSYS), constant.MakeInt64(int64(q.ENOSYS))}, + "ENOTBLK": {reflect.TypeOf(q.ENOTBLK), constant.MakeInt64(int64(q.ENOTBLK))}, + "ENOTCONN": {reflect.TypeOf(q.ENOTCONN), constant.MakeInt64(int64(q.ENOTCONN))}, + "ENOTDIR": {reflect.TypeOf(q.ENOTDIR), constant.MakeInt64(int64(q.ENOTDIR))}, + "ENOTEMPTY": {reflect.TypeOf(q.ENOTEMPTY), constant.MakeInt64(int64(q.ENOTEMPTY))}, + "ENOTNAM": {reflect.TypeOf(q.ENOTNAM), constant.MakeInt64(int64(q.ENOTNAM))}, + "ENOTRECOVERABLE": {reflect.TypeOf(q.ENOTRECOVERABLE), constant.MakeInt64(int64(q.ENOTRECOVERABLE))}, + "ENOTSOCK": {reflect.TypeOf(q.ENOTSOCK), constant.MakeInt64(int64(q.ENOTSOCK))}, + "ENOTSUP": {reflect.TypeOf(q.ENOTSUP), constant.MakeInt64(int64(q.ENOTSUP))}, + "ENOTTY": {reflect.TypeOf(q.ENOTTY), constant.MakeInt64(int64(q.ENOTTY))}, + "ENOTUNIQ": {reflect.TypeOf(q.ENOTUNIQ), constant.MakeInt64(int64(q.ENOTUNIQ))}, + "ENXIO": {reflect.TypeOf(q.ENXIO), constant.MakeInt64(int64(q.ENXIO))}, + "EOPNOTSUPP": {reflect.TypeOf(q.EOPNOTSUPP), constant.MakeInt64(int64(q.EOPNOTSUPP))}, + "EOVERFLOW": {reflect.TypeOf(q.EOVERFLOW), constant.MakeInt64(int64(q.EOVERFLOW))}, + "EOWNERDEAD": {reflect.TypeOf(q.EOWNERDEAD), constant.MakeInt64(int64(q.EOWNERDEAD))}, + "EPERM": {reflect.TypeOf(q.EPERM), constant.MakeInt64(int64(q.EPERM))}, + "EPFNOSUPPORT": {reflect.TypeOf(q.EPFNOSUPPORT), constant.MakeInt64(int64(q.EPFNOSUPPORT))}, + "EPIPE": {reflect.TypeOf(q.EPIPE), constant.MakeInt64(int64(q.EPIPE))}, + "EPROTO": {reflect.TypeOf(q.EPROTO), constant.MakeInt64(int64(q.EPROTO))}, + "EPROTONOSUPPORT": {reflect.TypeOf(q.EPROTONOSUPPORT), constant.MakeInt64(int64(q.EPROTONOSUPPORT))}, + "EPROTOTYPE": {reflect.TypeOf(q.EPROTOTYPE), constant.MakeInt64(int64(q.EPROTOTYPE))}, + "ERANGE": {reflect.TypeOf(q.ERANGE), constant.MakeInt64(int64(q.ERANGE))}, + "EREMCHG": {reflect.TypeOf(q.EREMCHG), constant.MakeInt64(int64(q.EREMCHG))}, + "EREMOTE": {reflect.TypeOf(q.EREMOTE), constant.MakeInt64(int64(q.EREMOTE))}, + "EREMOTEIO": {reflect.TypeOf(q.EREMOTEIO), constant.MakeInt64(int64(q.EREMOTEIO))}, + "ERESTART": {reflect.TypeOf(q.ERESTART), constant.MakeInt64(int64(q.ERESTART))}, + "EROFS": {reflect.TypeOf(q.EROFS), constant.MakeInt64(int64(q.EROFS))}, + "ERROR_ACCESS_DENIED": {reflect.TypeOf(q.ERROR_ACCESS_DENIED), constant.MakeInt64(int64(q.ERROR_ACCESS_DENIED))}, + "ERROR_ALREADY_EXISTS": {reflect.TypeOf(q.ERROR_ALREADY_EXISTS), constant.MakeInt64(int64(q.ERROR_ALREADY_EXISTS))}, + "ERROR_BROKEN_PIPE": {reflect.TypeOf(q.ERROR_BROKEN_PIPE), constant.MakeInt64(int64(q.ERROR_BROKEN_PIPE))}, + "ERROR_BUFFER_OVERFLOW": {reflect.TypeOf(q.ERROR_BUFFER_OVERFLOW), constant.MakeInt64(int64(q.ERROR_BUFFER_OVERFLOW))}, + "ERROR_DIR_NOT_EMPTY": {reflect.TypeOf(q.ERROR_DIR_NOT_EMPTY), constant.MakeInt64(int64(q.ERROR_DIR_NOT_EMPTY))}, + "ERROR_ENVVAR_NOT_FOUND": {reflect.TypeOf(q.ERROR_ENVVAR_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_ENVVAR_NOT_FOUND))}, + "ERROR_FILE_EXISTS": {reflect.TypeOf(q.ERROR_FILE_EXISTS), constant.MakeInt64(int64(q.ERROR_FILE_EXISTS))}, + "ERROR_FILE_NOT_FOUND": {reflect.TypeOf(q.ERROR_FILE_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_FILE_NOT_FOUND))}, + "ERROR_HANDLE_EOF": {reflect.TypeOf(q.ERROR_HANDLE_EOF), constant.MakeInt64(int64(q.ERROR_HANDLE_EOF))}, + "ERROR_INSUFFICIENT_BUFFER": {reflect.TypeOf(q.ERROR_INSUFFICIENT_BUFFER), constant.MakeInt64(int64(q.ERROR_INSUFFICIENT_BUFFER))}, + "ERROR_IO_PENDING": {reflect.TypeOf(q.ERROR_IO_PENDING), constant.MakeInt64(int64(q.ERROR_IO_PENDING))}, + "ERROR_MOD_NOT_FOUND": {reflect.TypeOf(q.ERROR_MOD_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_MOD_NOT_FOUND))}, + "ERROR_MORE_DATA": {reflect.TypeOf(q.ERROR_MORE_DATA), constant.MakeInt64(int64(q.ERROR_MORE_DATA))}, + "ERROR_NETNAME_DELETED": {reflect.TypeOf(q.ERROR_NETNAME_DELETED), constant.MakeInt64(int64(q.ERROR_NETNAME_DELETED))}, + "ERROR_NOT_FOUND": {reflect.TypeOf(q.ERROR_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_NOT_FOUND))}, + "ERROR_NO_MORE_FILES": {reflect.TypeOf(q.ERROR_NO_MORE_FILES), constant.MakeInt64(int64(q.ERROR_NO_MORE_FILES))}, + "ERROR_OPERATION_ABORTED": {reflect.TypeOf(q.ERROR_OPERATION_ABORTED), constant.MakeInt64(int64(q.ERROR_OPERATION_ABORTED))}, + "ERROR_PATH_NOT_FOUND": {reflect.TypeOf(q.ERROR_PATH_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_PATH_NOT_FOUND))}, + "ERROR_PRIVILEGE_NOT_HELD": {reflect.TypeOf(q.ERROR_PRIVILEGE_NOT_HELD), constant.MakeInt64(int64(q.ERROR_PRIVILEGE_NOT_HELD))}, + "ERROR_PROC_NOT_FOUND": {reflect.TypeOf(q.ERROR_PROC_NOT_FOUND), constant.MakeInt64(int64(q.ERROR_PROC_NOT_FOUND))}, + "ESHUTDOWN": {reflect.TypeOf(q.ESHUTDOWN), constant.MakeInt64(int64(q.ESHUTDOWN))}, + "ESOCKTNOSUPPORT": {reflect.TypeOf(q.ESOCKTNOSUPPORT), constant.MakeInt64(int64(q.ESOCKTNOSUPPORT))}, + "ESPIPE": {reflect.TypeOf(q.ESPIPE), constant.MakeInt64(int64(q.ESPIPE))}, + "ESRCH": {reflect.TypeOf(q.ESRCH), constant.MakeInt64(int64(q.ESRCH))}, + "ESRMNT": {reflect.TypeOf(q.ESRMNT), constant.MakeInt64(int64(q.ESRMNT))}, + "ESTALE": {reflect.TypeOf(q.ESTALE), constant.MakeInt64(int64(q.ESTALE))}, + "ESTRPIPE": {reflect.TypeOf(q.ESTRPIPE), constant.MakeInt64(int64(q.ESTRPIPE))}, + "ETIME": {reflect.TypeOf(q.ETIME), constant.MakeInt64(int64(q.ETIME))}, + "ETIMEDOUT": {reflect.TypeOf(q.ETIMEDOUT), constant.MakeInt64(int64(q.ETIMEDOUT))}, + "ETOOMANYREFS": {reflect.TypeOf(q.ETOOMANYREFS), constant.MakeInt64(int64(q.ETOOMANYREFS))}, + "ETXTBSY": {reflect.TypeOf(q.ETXTBSY), constant.MakeInt64(int64(q.ETXTBSY))}, + "EUCLEAN": {reflect.TypeOf(q.EUCLEAN), constant.MakeInt64(int64(q.EUCLEAN))}, + "EUNATCH": {reflect.TypeOf(q.EUNATCH), constant.MakeInt64(int64(q.EUNATCH))}, + "EUSERS": {reflect.TypeOf(q.EUSERS), constant.MakeInt64(int64(q.EUSERS))}, + "EWINDOWS": {reflect.TypeOf(q.EWINDOWS), constant.MakeInt64(int64(q.EWINDOWS))}, + "EWOULDBLOCK": {reflect.TypeOf(q.EWOULDBLOCK), constant.MakeInt64(int64(q.EWOULDBLOCK))}, + "EXDEV": {reflect.TypeOf(q.EXDEV), constant.MakeInt64(int64(q.EXDEV))}, + "EXFULL": {reflect.TypeOf(q.EXFULL), constant.MakeInt64(int64(q.EXFULL))}, + "InvalidHandle": {reflect.TypeOf(q.InvalidHandle), constant.MakeUint64(uint64(q.InvalidHandle))}, + "SIGABRT": {reflect.TypeOf(q.SIGABRT), constant.MakeInt64(int64(q.SIGABRT))}, + "SIGALRM": {reflect.TypeOf(q.SIGALRM), constant.MakeInt64(int64(q.SIGALRM))}, + "SIGBUS": {reflect.TypeOf(q.SIGBUS), constant.MakeInt64(int64(q.SIGBUS))}, + "SIGFPE": {reflect.TypeOf(q.SIGFPE), constant.MakeInt64(int64(q.SIGFPE))}, + "SIGHUP": {reflect.TypeOf(q.SIGHUP), constant.MakeInt64(int64(q.SIGHUP))}, + "SIGILL": {reflect.TypeOf(q.SIGILL), constant.MakeInt64(int64(q.SIGILL))}, + "SIGINT": {reflect.TypeOf(q.SIGINT), constant.MakeInt64(int64(q.SIGINT))}, + "SIGKILL": {reflect.TypeOf(q.SIGKILL), constant.MakeInt64(int64(q.SIGKILL))}, + "SIGPIPE": {reflect.TypeOf(q.SIGPIPE), constant.MakeInt64(int64(q.SIGPIPE))}, + "SIGQUIT": {reflect.TypeOf(q.SIGQUIT), constant.MakeInt64(int64(q.SIGQUIT))}, + "SIGSEGV": {reflect.TypeOf(q.SIGSEGV), constant.MakeInt64(int64(q.SIGSEGV))}, + "SIGTERM": {reflect.TypeOf(q.SIGTERM), constant.MakeInt64(int64(q.SIGTERM))}, + "SIGTRAP": {reflect.TypeOf(q.SIGTRAP), constant.MakeInt64(int64(q.SIGTRAP))}, + "WSAEACCES": {reflect.TypeOf(q.WSAEACCES), constant.MakeInt64(int64(q.WSAEACCES))}, + "WSAECONNABORTED": {reflect.TypeOf(q.WSAECONNABORTED), constant.MakeInt64(int64(q.WSAECONNABORTED))}, + "WSAECONNRESET": {reflect.TypeOf(q.WSAECONNRESET), constant.MakeInt64(int64(q.WSAECONNRESET))}, + "WSAENOPROTOOPT": {reflect.TypeOf(q.WSAENOPROTOOPT), constant.MakeInt64(int64(q.WSAENOPROTOOPT))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "AF_INET": {"untyped int", constant.MakeInt64(int64(q.AF_INET))}, + "AF_INET6": {"untyped int", constant.MakeInt64(int64(q.AF_INET6))}, + "AF_NETBIOS": {"untyped int", constant.MakeInt64(int64(q.AF_NETBIOS))}, + "AF_UNIX": {"untyped int", constant.MakeInt64(int64(q.AF_UNIX))}, + "AF_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.AF_UNSPEC))}, + "AI_CANONNAME": {"untyped int", constant.MakeInt64(int64(q.AI_CANONNAME))}, + "AI_NUMERICHOST": {"untyped int", constant.MakeInt64(int64(q.AI_NUMERICHOST))}, + "AI_PASSIVE": {"untyped int", constant.MakeInt64(int64(q.AI_PASSIVE))}, + "APPLICATION_ERROR": {"untyped int", constant.MakeInt64(int64(q.APPLICATION_ERROR))}, + "AUTHTYPE_CLIENT": {"untyped int", constant.MakeInt64(int64(q.AUTHTYPE_CLIENT))}, + "AUTHTYPE_SERVER": {"untyped int", constant.MakeInt64(int64(q.AUTHTYPE_SERVER))}, + "BASE_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.BASE_PROTOCOL))}, + "CERT_CHAIN_POLICY_AUTHENTICODE": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_AUTHENTICODE))}, + "CERT_CHAIN_POLICY_AUTHENTICODE_TS": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_AUTHENTICODE_TS))}, + "CERT_CHAIN_POLICY_BASE": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_BASE))}, + "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_BASIC_CONSTRAINTS))}, + "CERT_CHAIN_POLICY_EV": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_EV))}, + "CERT_CHAIN_POLICY_MICROSOFT_ROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_MICROSOFT_ROOT))}, + "CERT_CHAIN_POLICY_NT_AUTH": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_NT_AUTH))}, + "CERT_CHAIN_POLICY_SSL": {"untyped int", constant.MakeInt64(int64(q.CERT_CHAIN_POLICY_SSL))}, + "CERT_E_CN_NO_MATCH": {"untyped int", constant.MakeInt64(int64(q.CERT_E_CN_NO_MATCH))}, + "CERT_E_EXPIRED": {"untyped int", constant.MakeInt64(int64(q.CERT_E_EXPIRED))}, + "CERT_E_PURPOSE": {"untyped int", constant.MakeInt64(int64(q.CERT_E_PURPOSE))}, + "CERT_E_ROLE": {"untyped int", constant.MakeInt64(int64(q.CERT_E_ROLE))}, + "CERT_E_UNTRUSTEDROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_E_UNTRUSTEDROOT))}, + "CERT_STORE_ADD_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_ADD_ALWAYS))}, + "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG))}, + "CERT_STORE_PROV_MEMORY": {"untyped int", constant.MakeInt64(int64(q.CERT_STORE_PROV_MEMORY))}, + "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT))}, + "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT))}, + "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT))}, + "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_BASIC_CONSTRAINTS))}, + "CERT_TRUST_INVALID_EXTENSION": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_EXTENSION))}, + "CERT_TRUST_INVALID_NAME_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_NAME_CONSTRAINTS))}, + "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_INVALID_POLICY_CONSTRAINTS))}, + "CERT_TRUST_IS_CYCLIC": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_CYCLIC))}, + "CERT_TRUST_IS_EXPLICIT_DISTRUST": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_EXPLICIT_DISTRUST))}, + "CERT_TRUST_IS_NOT_SIGNATURE_VALID": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_SIGNATURE_VALID))}, + "CERT_TRUST_IS_NOT_TIME_VALID": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_TIME_VALID))}, + "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_NOT_VALID_FOR_USAGE))}, + "CERT_TRUST_IS_OFFLINE_REVOCATION": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_OFFLINE_REVOCATION))}, + "CERT_TRUST_IS_REVOKED": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_REVOKED))}, + "CERT_TRUST_IS_UNTRUSTED_ROOT": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_IS_UNTRUSTED_ROOT))}, + "CERT_TRUST_NO_ERROR": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_NO_ERROR))}, + "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY))}, + "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.CERT_TRUST_REVOCATION_STATUS_UNKNOWN))}, + "CREATE_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.CREATE_ALWAYS))}, + "CREATE_NEW": {"untyped int", constant.MakeInt64(int64(q.CREATE_NEW))}, + "CREATE_NEW_PROCESS_GROUP": {"untyped int", constant.MakeInt64(int64(q.CREATE_NEW_PROCESS_GROUP))}, + "CREATE_UNICODE_ENVIRONMENT": {"untyped int", constant.MakeInt64(int64(q.CREATE_UNICODE_ENVIRONMENT))}, + "CRYPT_DEFAULT_CONTAINER_OPTIONAL": {"untyped int", constant.MakeInt64(int64(q.CRYPT_DEFAULT_CONTAINER_OPTIONAL))}, + "CRYPT_DELETEKEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_DELETEKEYSET))}, + "CRYPT_MACHINE_KEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_MACHINE_KEYSET))}, + "CRYPT_NEWKEYSET": {"untyped int", constant.MakeInt64(int64(q.CRYPT_NEWKEYSET))}, + "CRYPT_SILENT": {"untyped int", constant.MakeInt64(int64(q.CRYPT_SILENT))}, + "CRYPT_VERIFYCONTEXT": {"untyped int", constant.MakeInt64(int64(q.CRYPT_VERIFYCONTEXT))}, + "CTRL_BREAK_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_BREAK_EVENT))}, + "CTRL_CLOSE_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_CLOSE_EVENT))}, + "CTRL_C_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_C_EVENT))}, + "CTRL_LOGOFF_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_LOGOFF_EVENT))}, + "CTRL_SHUTDOWN_EVENT": {"untyped int", constant.MakeInt64(int64(q.CTRL_SHUTDOWN_EVENT))}, + "DNS_INFO_NO_RECORDS": {"untyped int", constant.MakeInt64(int64(q.DNS_INFO_NO_RECORDS))}, + "DNS_TYPE_A": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_A))}, + "DNS_TYPE_A6": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_A6))}, + "DNS_TYPE_AAAA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AAAA))}, + "DNS_TYPE_ADDRS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ADDRS))}, + "DNS_TYPE_AFSDB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AFSDB))}, + "DNS_TYPE_ALL": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ALL))}, + "DNS_TYPE_ANY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ANY))}, + "DNS_TYPE_ATMA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ATMA))}, + "DNS_TYPE_AXFR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_AXFR))}, + "DNS_TYPE_CERT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_CERT))}, + "DNS_TYPE_CNAME": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_CNAME))}, + "DNS_TYPE_DHCID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DHCID))}, + "DNS_TYPE_DNAME": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DNAME))}, + "DNS_TYPE_DNSKEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DNSKEY))}, + "DNS_TYPE_DS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_DS))}, + "DNS_TYPE_EID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_EID))}, + "DNS_TYPE_GID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_GID))}, + "DNS_TYPE_GPOS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_GPOS))}, + "DNS_TYPE_HINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_HINFO))}, + "DNS_TYPE_ISDN": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_ISDN))}, + "DNS_TYPE_IXFR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_IXFR))}, + "DNS_TYPE_KEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_KEY))}, + "DNS_TYPE_KX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_KX))}, + "DNS_TYPE_LOC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_LOC))}, + "DNS_TYPE_MAILA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MAILA))}, + "DNS_TYPE_MAILB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MAILB))}, + "DNS_TYPE_MB": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MB))}, + "DNS_TYPE_MD": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MD))}, + "DNS_TYPE_MF": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MF))}, + "DNS_TYPE_MG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MG))}, + "DNS_TYPE_MINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MINFO))}, + "DNS_TYPE_MR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MR))}, + "DNS_TYPE_MX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_MX))}, + "DNS_TYPE_NAPTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NAPTR))}, + "DNS_TYPE_NBSTAT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NBSTAT))}, + "DNS_TYPE_NIMLOC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NIMLOC))}, + "DNS_TYPE_NS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NS))}, + "DNS_TYPE_NSAP": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSAP))}, + "DNS_TYPE_NSAPPTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSAPPTR))}, + "DNS_TYPE_NSEC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NSEC))}, + "DNS_TYPE_NULL": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NULL))}, + "DNS_TYPE_NXT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_NXT))}, + "DNS_TYPE_OPT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_OPT))}, + "DNS_TYPE_PTR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_PTR))}, + "DNS_TYPE_PX": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_PX))}, + "DNS_TYPE_RP": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RP))}, + "DNS_TYPE_RRSIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RRSIG))}, + "DNS_TYPE_RT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_RT))}, + "DNS_TYPE_SIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SIG))}, + "DNS_TYPE_SINK": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SINK))}, + "DNS_TYPE_SOA": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SOA))}, + "DNS_TYPE_SRV": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_SRV))}, + "DNS_TYPE_TEXT": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TEXT))}, + "DNS_TYPE_TKEY": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TKEY))}, + "DNS_TYPE_TSIG": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_TSIG))}, + "DNS_TYPE_UID": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UID))}, + "DNS_TYPE_UINFO": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UINFO))}, + "DNS_TYPE_UNSPEC": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_UNSPEC))}, + "DNS_TYPE_WINS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WINS))}, + "DNS_TYPE_WINSR": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WINSR))}, + "DNS_TYPE_WKS": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_WKS))}, + "DNS_TYPE_X25": {"untyped int", constant.MakeInt64(int64(q.DNS_TYPE_X25))}, + "DUPLICATE_CLOSE_SOURCE": {"untyped int", constant.MakeInt64(int64(q.DUPLICATE_CLOSE_SOURCE))}, + "DUPLICATE_SAME_ACCESS": {"untyped int", constant.MakeInt64(int64(q.DUPLICATE_SAME_ACCESS))}, + "DnsSectionAdditional": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAdditional))}, + "DnsSectionAnswer": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAnswer))}, + "DnsSectionAuthority": {"untyped int", constant.MakeInt64(int64(q.DnsSectionAuthority))}, + "DnsSectionQuestion": {"untyped int", constant.MakeInt64(int64(q.DnsSectionQuestion))}, + "FILE_ACTION_ADDED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_ADDED))}, + "FILE_ACTION_MODIFIED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_MODIFIED))}, + "FILE_ACTION_REMOVED": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_REMOVED))}, + "FILE_ACTION_RENAMED_NEW_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_RENAMED_NEW_NAME))}, + "FILE_ACTION_RENAMED_OLD_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_ACTION_RENAMED_OLD_NAME))}, + "FILE_APPEND_DATA": {"untyped int", constant.MakeInt64(int64(q.FILE_APPEND_DATA))}, + "FILE_ATTRIBUTE_ARCHIVE": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_ARCHIVE))}, + "FILE_ATTRIBUTE_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_DIRECTORY))}, + "FILE_ATTRIBUTE_HIDDEN": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_HIDDEN))}, + "FILE_ATTRIBUTE_NORMAL": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_NORMAL))}, + "FILE_ATTRIBUTE_READONLY": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_READONLY))}, + "FILE_ATTRIBUTE_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_REPARSE_POINT))}, + "FILE_ATTRIBUTE_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.FILE_ATTRIBUTE_SYSTEM))}, + "FILE_BEGIN": {"untyped int", constant.MakeInt64(int64(q.FILE_BEGIN))}, + "FILE_CURRENT": {"untyped int", constant.MakeInt64(int64(q.FILE_CURRENT))}, + "FILE_END": {"untyped int", constant.MakeInt64(int64(q.FILE_END))}, + "FILE_FLAG_BACKUP_SEMANTICS": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_BACKUP_SEMANTICS))}, + "FILE_FLAG_OPEN_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_OPEN_REPARSE_POINT))}, + "FILE_FLAG_OVERLAPPED": {"untyped int", constant.MakeInt64(int64(q.FILE_FLAG_OVERLAPPED))}, + "FILE_LIST_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.FILE_LIST_DIRECTORY))}, + "FILE_MAP_COPY": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_COPY))}, + "FILE_MAP_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_EXECUTE))}, + "FILE_MAP_READ": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_READ))}, + "FILE_MAP_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_MAP_WRITE))}, + "FILE_NOTIFY_CHANGE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_ATTRIBUTES))}, + "FILE_NOTIFY_CHANGE_CREATION": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_CREATION))}, + "FILE_NOTIFY_CHANGE_DIR_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_DIR_NAME))}, + "FILE_NOTIFY_CHANGE_FILE_NAME": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_FILE_NAME))}, + "FILE_NOTIFY_CHANGE_LAST_ACCESS": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_LAST_ACCESS))}, + "FILE_NOTIFY_CHANGE_LAST_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_LAST_WRITE))}, + "FILE_NOTIFY_CHANGE_SIZE": {"untyped int", constant.MakeInt64(int64(q.FILE_NOTIFY_CHANGE_SIZE))}, + "FILE_SHARE_DELETE": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_DELETE))}, + "FILE_SHARE_READ": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_READ))}, + "FILE_SHARE_WRITE": {"untyped int", constant.MakeInt64(int64(q.FILE_SHARE_WRITE))}, + "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": {"untyped int", constant.MakeInt64(int64(q.FILE_SKIP_COMPLETION_PORT_ON_SUCCESS))}, + "FILE_SKIP_SET_EVENT_ON_HANDLE": {"untyped int", constant.MakeInt64(int64(q.FILE_SKIP_SET_EVENT_ON_HANDLE))}, + "FILE_TYPE_CHAR": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_CHAR))}, + "FILE_TYPE_DISK": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_DISK))}, + "FILE_TYPE_PIPE": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_PIPE))}, + "FILE_TYPE_REMOTE": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_REMOTE))}, + "FILE_TYPE_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.FILE_TYPE_UNKNOWN))}, + "FILE_WRITE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.FILE_WRITE_ATTRIBUTES))}, + "FORMAT_MESSAGE_ALLOCATE_BUFFER": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_ALLOCATE_BUFFER))}, + "FORMAT_MESSAGE_ARGUMENT_ARRAY": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_ARGUMENT_ARRAY))}, + "FORMAT_MESSAGE_FROM_HMODULE": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_HMODULE))}, + "FORMAT_MESSAGE_FROM_STRING": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_STRING))}, + "FORMAT_MESSAGE_FROM_SYSTEM": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_FROM_SYSTEM))}, + "FORMAT_MESSAGE_IGNORE_INSERTS": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_IGNORE_INSERTS))}, + "FORMAT_MESSAGE_MAX_WIDTH_MASK": {"untyped int", constant.MakeInt64(int64(q.FORMAT_MESSAGE_MAX_WIDTH_MASK))}, + "FSCTL_GET_REPARSE_POINT": {"untyped int", constant.MakeInt64(int64(q.FSCTL_GET_REPARSE_POINT))}, + "GENERIC_ALL": {"untyped int", constant.MakeInt64(int64(q.GENERIC_ALL))}, + "GENERIC_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.GENERIC_EXECUTE))}, + "GENERIC_READ": {"untyped int", constant.MakeInt64(int64(q.GENERIC_READ))}, + "GENERIC_WRITE": {"untyped int", constant.MakeInt64(int64(q.GENERIC_WRITE))}, + "GetFileExInfoStandard": {"untyped int", constant.MakeInt64(int64(q.GetFileExInfoStandard))}, + "GetFileExMaxInfoLevel": {"untyped int", constant.MakeInt64(int64(q.GetFileExMaxInfoLevel))}, + "HANDLE_FLAG_INHERIT": {"untyped int", constant.MakeInt64(int64(q.HANDLE_FLAG_INHERIT))}, + "HKEY_CLASSES_ROOT": {"untyped int", constant.MakeInt64(int64(q.HKEY_CLASSES_ROOT))}, + "HKEY_CURRENT_CONFIG": {"untyped int", constant.MakeInt64(int64(q.HKEY_CURRENT_CONFIG))}, + "HKEY_CURRENT_USER": {"untyped int", constant.MakeInt64(int64(q.HKEY_CURRENT_USER))}, + "HKEY_DYN_DATA": {"untyped int", constant.MakeInt64(int64(q.HKEY_DYN_DATA))}, + "HKEY_LOCAL_MACHINE": {"untyped int", constant.MakeInt64(int64(q.HKEY_LOCAL_MACHINE))}, + "HKEY_PERFORMANCE_DATA": {"untyped int", constant.MakeInt64(int64(q.HKEY_PERFORMANCE_DATA))}, + "HKEY_USERS": {"untyped int", constant.MakeInt64(int64(q.HKEY_USERS))}, + "IFF_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.IFF_BROADCAST))}, + "IFF_LOOPBACK": {"untyped int", constant.MakeInt64(int64(q.IFF_LOOPBACK))}, + "IFF_MULTICAST": {"untyped int", constant.MakeInt64(int64(q.IFF_MULTICAST))}, + "IFF_POINTTOPOINT": {"untyped int", constant.MakeInt64(int64(q.IFF_POINTTOPOINT))}, + "IFF_UP": {"untyped int", constant.MakeInt64(int64(q.IFF_UP))}, + "IGNORE": {"untyped int", constant.MakeInt64(int64(q.IGNORE))}, + "INFINITE": {"untyped int", constant.MakeInt64(int64(q.INFINITE))}, + "INVALID_FILE_ATTRIBUTES": {"untyped int", constant.MakeInt64(int64(q.INVALID_FILE_ATTRIBUTES))}, + "IOC_IN": {"untyped int", constant.MakeInt64(int64(q.IOC_IN))}, + "IOC_INOUT": {"untyped int", constant.MakeInt64(int64(q.IOC_INOUT))}, + "IOC_OUT": {"untyped int", constant.MakeInt64(int64(q.IOC_OUT))}, + "IOC_VENDOR": {"untyped int", constant.MakeInt64(int64(q.IOC_VENDOR))}, + "IOC_WS2": {"untyped int", constant.MakeInt64(int64(q.IOC_WS2))}, + "IO_REPARSE_TAG_SYMLINK": {"untyped int", constant.MakeInt64(int64(q.IO_REPARSE_TAG_SYMLINK))}, + "IPPROTO_IP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IP))}, + "IPPROTO_IPV6": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_IPV6))}, + "IPPROTO_TCP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_TCP))}, + "IPPROTO_UDP": {"untyped int", constant.MakeInt64(int64(q.IPPROTO_UDP))}, + "IPV6_JOIN_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_JOIN_GROUP))}, + "IPV6_LEAVE_GROUP": {"untyped int", constant.MakeInt64(int64(q.IPV6_LEAVE_GROUP))}, + "IPV6_MULTICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_HOPS))}, + "IPV6_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_IF))}, + "IPV6_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IPV6_MULTICAST_LOOP))}, + "IPV6_UNICAST_HOPS": {"untyped int", constant.MakeInt64(int64(q.IPV6_UNICAST_HOPS))}, + "IPV6_V6ONLY": {"untyped int", constant.MakeInt64(int64(q.IPV6_V6ONLY))}, + "IP_ADD_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_ADD_MEMBERSHIP))}, + "IP_DROP_MEMBERSHIP": {"untyped int", constant.MakeInt64(int64(q.IP_DROP_MEMBERSHIP))}, + "IP_MULTICAST_IF": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_IF))}, + "IP_MULTICAST_LOOP": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_LOOP))}, + "IP_MULTICAST_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_MULTICAST_TTL))}, + "IP_TOS": {"untyped int", constant.MakeInt64(int64(q.IP_TOS))}, + "IP_TTL": {"untyped int", constant.MakeInt64(int64(q.IP_TTL))}, + "ImplementsGetwd": {"untyped bool", constant.MakeBool(bool(q.ImplementsGetwd))}, + "KEY_ALL_ACCESS": {"untyped int", constant.MakeInt64(int64(q.KEY_ALL_ACCESS))}, + "KEY_CREATE_LINK": {"untyped int", constant.MakeInt64(int64(q.KEY_CREATE_LINK))}, + "KEY_CREATE_SUB_KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_CREATE_SUB_KEY))}, + "KEY_ENUMERATE_SUB_KEYS": {"untyped int", constant.MakeInt64(int64(q.KEY_ENUMERATE_SUB_KEYS))}, + "KEY_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.KEY_EXECUTE))}, + "KEY_NOTIFY": {"untyped int", constant.MakeInt64(int64(q.KEY_NOTIFY))}, + "KEY_QUERY_VALUE": {"untyped int", constant.MakeInt64(int64(q.KEY_QUERY_VALUE))}, + "KEY_READ": {"untyped int", constant.MakeInt64(int64(q.KEY_READ))}, + "KEY_SET_VALUE": {"untyped int", constant.MakeInt64(int64(q.KEY_SET_VALUE))}, + "KEY_WOW64_32KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_WOW64_32KEY))}, + "KEY_WOW64_64KEY": {"untyped int", constant.MakeInt64(int64(q.KEY_WOW64_64KEY))}, + "KEY_WRITE": {"untyped int", constant.MakeInt64(int64(q.KEY_WRITE))}, + "LANG_ENGLISH": {"untyped int", constant.MakeInt64(int64(q.LANG_ENGLISH))}, + "LAYERED_PROTOCOL": {"untyped int", constant.MakeInt64(int64(q.LAYERED_PROTOCOL))}, + "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": {"untyped int", constant.MakeInt64(int64(q.MAXIMUM_REPARSE_DATA_BUFFER_SIZE))}, + "MAXLEN_IFDESCR": {"untyped int", constant.MakeInt64(int64(q.MAXLEN_IFDESCR))}, + "MAXLEN_PHYSADDR": {"untyped int", constant.MakeInt64(int64(q.MAXLEN_PHYSADDR))}, + "MAX_ADAPTER_ADDRESS_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_ADDRESS_LENGTH))}, + "MAX_ADAPTER_DESCRIPTION_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_DESCRIPTION_LENGTH))}, + "MAX_ADAPTER_NAME_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_ADAPTER_NAME_LENGTH))}, + "MAX_COMPUTERNAME_LENGTH": {"untyped int", constant.MakeInt64(int64(q.MAX_COMPUTERNAME_LENGTH))}, + "MAX_INTERFACE_NAME_LEN": {"untyped int", constant.MakeInt64(int64(q.MAX_INTERFACE_NAME_LEN))}, + "MAX_LONG_PATH": {"untyped int", constant.MakeInt64(int64(q.MAX_LONG_PATH))}, + "MAX_PATH": {"untyped int", constant.MakeInt64(int64(q.MAX_PATH))}, + "MAX_PROTOCOL_CHAIN": {"untyped int", constant.MakeInt64(int64(q.MAX_PROTOCOL_CHAIN))}, + "MaxTokenInfoClass": {"untyped int", constant.MakeInt64(int64(q.MaxTokenInfoClass))}, + "NameCanonical": {"untyped int", constant.MakeInt64(int64(q.NameCanonical))}, + "NameCanonicalEx": {"untyped int", constant.MakeInt64(int64(q.NameCanonicalEx))}, + "NameDisplay": {"untyped int", constant.MakeInt64(int64(q.NameDisplay))}, + "NameDnsDomain": {"untyped int", constant.MakeInt64(int64(q.NameDnsDomain))}, + "NameFullyQualifiedDN": {"untyped int", constant.MakeInt64(int64(q.NameFullyQualifiedDN))}, + "NameSamCompatible": {"untyped int", constant.MakeInt64(int64(q.NameSamCompatible))}, + "NameServicePrincipal": {"untyped int", constant.MakeInt64(int64(q.NameServicePrincipal))}, + "NameUniqueId": {"untyped int", constant.MakeInt64(int64(q.NameUniqueId))}, + "NameUnknown": {"untyped int", constant.MakeInt64(int64(q.NameUnknown))}, + "NameUserPrincipal": {"untyped int", constant.MakeInt64(int64(q.NameUserPrincipal))}, + "NetSetupDomainName": {"untyped int", constant.MakeInt64(int64(q.NetSetupDomainName))}, + "NetSetupUnjoined": {"untyped int", constant.MakeInt64(int64(q.NetSetupUnjoined))}, + "NetSetupUnknownStatus": {"untyped int", constant.MakeInt64(int64(q.NetSetupUnknownStatus))}, + "NetSetupWorkgroupName": {"untyped int", constant.MakeInt64(int64(q.NetSetupWorkgroupName))}, + "OPEN_ALWAYS": {"untyped int", constant.MakeInt64(int64(q.OPEN_ALWAYS))}, + "OPEN_EXISTING": {"untyped int", constant.MakeInt64(int64(q.OPEN_EXISTING))}, + "O_APPEND": {"untyped int", constant.MakeInt64(int64(q.O_APPEND))}, + "O_ASYNC": {"untyped int", constant.MakeInt64(int64(q.O_ASYNC))}, + "O_CLOEXEC": {"untyped int", constant.MakeInt64(int64(q.O_CLOEXEC))}, + "O_CREAT": {"untyped int", constant.MakeInt64(int64(q.O_CREAT))}, + "O_EXCL": {"untyped int", constant.MakeInt64(int64(q.O_EXCL))}, + "O_NOCTTY": {"untyped int", constant.MakeInt64(int64(q.O_NOCTTY))}, + "O_NONBLOCK": {"untyped int", constant.MakeInt64(int64(q.O_NONBLOCK))}, + "O_RDONLY": {"untyped int", constant.MakeInt64(int64(q.O_RDONLY))}, + "O_RDWR": {"untyped int", constant.MakeInt64(int64(q.O_RDWR))}, + "O_SYNC": {"untyped int", constant.MakeInt64(int64(q.O_SYNC))}, + "O_TRUNC": {"untyped int", constant.MakeInt64(int64(q.O_TRUNC))}, + "O_WRONLY": {"untyped int", constant.MakeInt64(int64(q.O_WRONLY))}, + "PAGE_EXECUTE_READ": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_READ))}, + "PAGE_EXECUTE_READWRITE": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_READWRITE))}, + "PAGE_EXECUTE_WRITECOPY": {"untyped int", constant.MakeInt64(int64(q.PAGE_EXECUTE_WRITECOPY))}, + "PAGE_READONLY": {"untyped int", constant.MakeInt64(int64(q.PAGE_READONLY))}, + "PAGE_READWRITE": {"untyped int", constant.MakeInt64(int64(q.PAGE_READWRITE))}, + "PAGE_WRITECOPY": {"untyped int", constant.MakeInt64(int64(q.PAGE_WRITECOPY))}, + "PFL_HIDDEN": {"untyped int", constant.MakeInt64(int64(q.PFL_HIDDEN))}, + "PFL_MATCHES_PROTOCOL_ZERO": {"untyped int", constant.MakeInt64(int64(q.PFL_MATCHES_PROTOCOL_ZERO))}, + "PFL_MULTIPLE_PROTO_ENTRIES": {"untyped int", constant.MakeInt64(int64(q.PFL_MULTIPLE_PROTO_ENTRIES))}, + "PFL_NETWORKDIRECT_PROVIDER": {"untyped int", constant.MakeInt64(int64(q.PFL_NETWORKDIRECT_PROVIDER))}, + "PFL_RECOMMENDED_PROTO_ENTRY": {"untyped int", constant.MakeInt64(int64(q.PFL_RECOMMENDED_PROTO_ENTRY))}, + "PKCS_7_ASN_ENCODING": {"untyped int", constant.MakeInt64(int64(q.PKCS_7_ASN_ENCODING))}, + "PROCESS_QUERY_INFORMATION": {"untyped int", constant.MakeInt64(int64(q.PROCESS_QUERY_INFORMATION))}, + "PROCESS_TERMINATE": {"untyped int", constant.MakeInt64(int64(q.PROCESS_TERMINATE))}, + "PROV_DH_SCHANNEL": {"untyped int", constant.MakeInt64(int64(q.PROV_DH_SCHANNEL))}, + "PROV_DSS": {"untyped int", constant.MakeInt64(int64(q.PROV_DSS))}, + "PROV_DSS_DH": {"untyped int", constant.MakeInt64(int64(q.PROV_DSS_DH))}, + "PROV_EC_ECDSA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECDSA_FULL))}, + "PROV_EC_ECDSA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECDSA_SIG))}, + "PROV_EC_ECNRA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECNRA_FULL))}, + "PROV_EC_ECNRA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_EC_ECNRA_SIG))}, + "PROV_FORTEZZA": {"untyped int", constant.MakeInt64(int64(q.PROV_FORTEZZA))}, + "PROV_INTEL_SEC": {"untyped int", constant.MakeInt64(int64(q.PROV_INTEL_SEC))}, + "PROV_MS_EXCHANGE": {"untyped int", constant.MakeInt64(int64(q.PROV_MS_EXCHANGE))}, + "PROV_REPLACE_OWF": {"untyped int", constant.MakeInt64(int64(q.PROV_REPLACE_OWF))}, + "PROV_RNG": {"untyped int", constant.MakeInt64(int64(q.PROV_RNG))}, + "PROV_RSA_AES": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_AES))}, + "PROV_RSA_FULL": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_FULL))}, + "PROV_RSA_SCHANNEL": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_SCHANNEL))}, + "PROV_RSA_SIG": {"untyped int", constant.MakeInt64(int64(q.PROV_RSA_SIG))}, + "PROV_SPYRUS_LYNKS": {"untyped int", constant.MakeInt64(int64(q.PROV_SPYRUS_LYNKS))}, + "PROV_SSL": {"untyped int", constant.MakeInt64(int64(q.PROV_SSL))}, + "REG_BINARY": {"untyped int", constant.MakeInt64(int64(q.REG_BINARY))}, + "REG_DWORD": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD))}, + "REG_DWORD_BIG_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD_BIG_ENDIAN))}, + "REG_DWORD_LITTLE_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_DWORD_LITTLE_ENDIAN))}, + "REG_EXPAND_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_EXPAND_SZ))}, + "REG_FULL_RESOURCE_DESCRIPTOR": {"untyped int", constant.MakeInt64(int64(q.REG_FULL_RESOURCE_DESCRIPTOR))}, + "REG_LINK": {"untyped int", constant.MakeInt64(int64(q.REG_LINK))}, + "REG_MULTI_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_MULTI_SZ))}, + "REG_NONE": {"untyped int", constant.MakeInt64(int64(q.REG_NONE))}, + "REG_QWORD": {"untyped int", constant.MakeInt64(int64(q.REG_QWORD))}, + "REG_QWORD_LITTLE_ENDIAN": {"untyped int", constant.MakeInt64(int64(q.REG_QWORD_LITTLE_ENDIAN))}, + "REG_RESOURCE_LIST": {"untyped int", constant.MakeInt64(int64(q.REG_RESOURCE_LIST))}, + "REG_RESOURCE_REQUIREMENTS_LIST": {"untyped int", constant.MakeInt64(int64(q.REG_RESOURCE_REQUIREMENTS_LIST))}, + "REG_SZ": {"untyped int", constant.MakeInt64(int64(q.REG_SZ))}, + "SHUT_RD": {"untyped int", constant.MakeInt64(int64(q.SHUT_RD))}, + "SHUT_RDWR": {"untyped int", constant.MakeInt64(int64(q.SHUT_RDWR))}, + "SHUT_WR": {"untyped int", constant.MakeInt64(int64(q.SHUT_WR))}, + "SIO_GET_EXTENSION_FUNCTION_POINTER": {"untyped int", constant.MakeInt64(int64(q.SIO_GET_EXTENSION_FUNCTION_POINTER))}, + "SIO_GET_INTERFACE_LIST": {"untyped int", constant.MakeInt64(int64(q.SIO_GET_INTERFACE_LIST))}, + "SIO_KEEPALIVE_VALS": {"untyped int", constant.MakeInt64(int64(q.SIO_KEEPALIVE_VALS))}, + "SIO_UDP_CONNRESET": {"untyped int", constant.MakeInt64(int64(q.SIO_UDP_CONNRESET))}, + "SOCK_DGRAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_DGRAM))}, + "SOCK_RAW": {"untyped int", constant.MakeInt64(int64(q.SOCK_RAW))}, + "SOCK_SEQPACKET": {"untyped int", constant.MakeInt64(int64(q.SOCK_SEQPACKET))}, + "SOCK_STREAM": {"untyped int", constant.MakeInt64(int64(q.SOCK_STREAM))}, + "SOL_SOCKET": {"untyped int", constant.MakeInt64(int64(q.SOL_SOCKET))}, + "SOMAXCONN": {"untyped int", constant.MakeInt64(int64(q.SOMAXCONN))}, + "SO_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.SO_BROADCAST))}, + "SO_DONTROUTE": {"untyped int", constant.MakeInt64(int64(q.SO_DONTROUTE))}, + "SO_KEEPALIVE": {"untyped int", constant.MakeInt64(int64(q.SO_KEEPALIVE))}, + "SO_LINGER": {"untyped int", constant.MakeInt64(int64(q.SO_LINGER))}, + "SO_RCVBUF": {"untyped int", constant.MakeInt64(int64(q.SO_RCVBUF))}, + "SO_REUSEADDR": {"untyped int", constant.MakeInt64(int64(q.SO_REUSEADDR))}, + "SO_SNDBUF": {"untyped int", constant.MakeInt64(int64(q.SO_SNDBUF))}, + "SO_UPDATE_ACCEPT_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.SO_UPDATE_ACCEPT_CONTEXT))}, + "SO_UPDATE_CONNECT_CONTEXT": {"untyped int", constant.MakeInt64(int64(q.SO_UPDATE_CONNECT_CONTEXT))}, + "STANDARD_RIGHTS_ALL": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_ALL))}, + "STANDARD_RIGHTS_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_EXECUTE))}, + "STANDARD_RIGHTS_READ": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_READ))}, + "STANDARD_RIGHTS_REQUIRED": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_REQUIRED))}, + "STANDARD_RIGHTS_WRITE": {"untyped int", constant.MakeInt64(int64(q.STANDARD_RIGHTS_WRITE))}, + "STARTF_USESHOWWINDOW": {"untyped int", constant.MakeInt64(int64(q.STARTF_USESHOWWINDOW))}, + "STARTF_USESTDHANDLES": {"untyped int", constant.MakeInt64(int64(q.STARTF_USESTDHANDLES))}, + "STD_ERROR_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_ERROR_HANDLE))}, + "STD_INPUT_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_INPUT_HANDLE))}, + "STD_OUTPUT_HANDLE": {"untyped int", constant.MakeInt64(int64(q.STD_OUTPUT_HANDLE))}, + "SUBLANG_ENGLISH_US": {"untyped int", constant.MakeInt64(int64(q.SUBLANG_ENGLISH_US))}, + "SW_FORCEMINIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_FORCEMINIMIZE))}, + "SW_HIDE": {"untyped int", constant.MakeInt64(int64(q.SW_HIDE))}, + "SW_MAXIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_MAXIMIZE))}, + "SW_MINIMIZE": {"untyped int", constant.MakeInt64(int64(q.SW_MINIMIZE))}, + "SW_NORMAL": {"untyped int", constant.MakeInt64(int64(q.SW_NORMAL))}, + "SW_RESTORE": {"untyped int", constant.MakeInt64(int64(q.SW_RESTORE))}, + "SW_SHOW": {"untyped int", constant.MakeInt64(int64(q.SW_SHOW))}, + "SW_SHOWDEFAULT": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWDEFAULT))}, + "SW_SHOWMAXIMIZED": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMAXIMIZED))}, + "SW_SHOWMINIMIZED": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMINIMIZED))}, + "SW_SHOWMINNOACTIVE": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWMINNOACTIVE))}, + "SW_SHOWNA": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNA))}, + "SW_SHOWNOACTIVATE": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNOACTIVATE))}, + "SW_SHOWNORMAL": {"untyped int", constant.MakeInt64(int64(q.SW_SHOWNORMAL))}, + "SYMBOLIC_LINK_FLAG_DIRECTORY": {"untyped int", constant.MakeInt64(int64(q.SYMBOLIC_LINK_FLAG_DIRECTORY))}, + "SYNCHRONIZE": {"untyped int", constant.MakeInt64(int64(q.SYNCHRONIZE))}, + "S_IFBLK": {"untyped int", constant.MakeInt64(int64(q.S_IFBLK))}, + "S_IFCHR": {"untyped int", constant.MakeInt64(int64(q.S_IFCHR))}, + "S_IFDIR": {"untyped int", constant.MakeInt64(int64(q.S_IFDIR))}, + "S_IFIFO": {"untyped int", constant.MakeInt64(int64(q.S_IFIFO))}, + "S_IFLNK": {"untyped int", constant.MakeInt64(int64(q.S_IFLNK))}, + "S_IFMT": {"untyped int", constant.MakeInt64(int64(q.S_IFMT))}, + "S_IFREG": {"untyped int", constant.MakeInt64(int64(q.S_IFREG))}, + "S_IFSOCK": {"untyped int", constant.MakeInt64(int64(q.S_IFSOCK))}, + "S_IRUSR": {"untyped int", constant.MakeInt64(int64(q.S_IRUSR))}, + "S_ISGID": {"untyped int", constant.MakeInt64(int64(q.S_ISGID))}, + "S_ISUID": {"untyped int", constant.MakeInt64(int64(q.S_ISUID))}, + "S_ISVTX": {"untyped int", constant.MakeInt64(int64(q.S_ISVTX))}, + "S_IWRITE": {"untyped int", constant.MakeInt64(int64(q.S_IWRITE))}, + "S_IWUSR": {"untyped int", constant.MakeInt64(int64(q.S_IWUSR))}, + "S_IXUSR": {"untyped int", constant.MakeInt64(int64(q.S_IXUSR))}, + "SidTypeAlias": {"untyped int", constant.MakeInt64(int64(q.SidTypeAlias))}, + "SidTypeComputer": {"untyped int", constant.MakeInt64(int64(q.SidTypeComputer))}, + "SidTypeDeletedAccount": {"untyped int", constant.MakeInt64(int64(q.SidTypeDeletedAccount))}, + "SidTypeDomain": {"untyped int", constant.MakeInt64(int64(q.SidTypeDomain))}, + "SidTypeGroup": {"untyped int", constant.MakeInt64(int64(q.SidTypeGroup))}, + "SidTypeInvalid": {"untyped int", constant.MakeInt64(int64(q.SidTypeInvalid))}, + "SidTypeLabel": {"untyped int", constant.MakeInt64(int64(q.SidTypeLabel))}, + "SidTypeUnknown": {"untyped int", constant.MakeInt64(int64(q.SidTypeUnknown))}, + "SidTypeUser": {"untyped int", constant.MakeInt64(int64(q.SidTypeUser))}, + "SidTypeWellKnownGroup": {"untyped int", constant.MakeInt64(int64(q.SidTypeWellKnownGroup))}, + "TCP_NODELAY": {"untyped int", constant.MakeInt64(int64(q.TCP_NODELAY))}, + "TF_DISCONNECT": {"untyped int", constant.MakeInt64(int64(q.TF_DISCONNECT))}, + "TF_REUSE_SOCKET": {"untyped int", constant.MakeInt64(int64(q.TF_REUSE_SOCKET))}, + "TF_USE_DEFAULT_WORKER": {"untyped int", constant.MakeInt64(int64(q.TF_USE_DEFAULT_WORKER))}, + "TF_USE_KERNEL_APC": {"untyped int", constant.MakeInt64(int64(q.TF_USE_KERNEL_APC))}, + "TF_USE_SYSTEM_THREAD": {"untyped int", constant.MakeInt64(int64(q.TF_USE_SYSTEM_THREAD))}, + "TF_WRITE_BEHIND": {"untyped int", constant.MakeInt64(int64(q.TF_WRITE_BEHIND))}, + "TH32CS_INHERIT": {"untyped int", constant.MakeInt64(int64(q.TH32CS_INHERIT))}, + "TH32CS_SNAPALL": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPALL))}, + "TH32CS_SNAPHEAPLIST": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPHEAPLIST))}, + "TH32CS_SNAPMODULE": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPMODULE))}, + "TH32CS_SNAPMODULE32": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPMODULE32))}, + "TH32CS_SNAPPROCESS": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPPROCESS))}, + "TH32CS_SNAPTHREAD": {"untyped int", constant.MakeInt64(int64(q.TH32CS_SNAPTHREAD))}, + "TIME_ZONE_ID_DAYLIGHT": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_DAYLIGHT))}, + "TIME_ZONE_ID_STANDARD": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_STANDARD))}, + "TIME_ZONE_ID_UNKNOWN": {"untyped int", constant.MakeInt64(int64(q.TIME_ZONE_ID_UNKNOWN))}, + "TOKEN_ADJUST_DEFAULT": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_DEFAULT))}, + "TOKEN_ADJUST_GROUPS": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_GROUPS))}, + "TOKEN_ADJUST_PRIVILEGES": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_PRIVILEGES))}, + "TOKEN_ADJUST_SESSIONID": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ADJUST_SESSIONID))}, + "TOKEN_ALL_ACCESS": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ALL_ACCESS))}, + "TOKEN_ASSIGN_PRIMARY": {"untyped int", constant.MakeInt64(int64(q.TOKEN_ASSIGN_PRIMARY))}, + "TOKEN_DUPLICATE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_DUPLICATE))}, + "TOKEN_EXECUTE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_EXECUTE))}, + "TOKEN_IMPERSONATE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_IMPERSONATE))}, + "TOKEN_QUERY": {"untyped int", constant.MakeInt64(int64(q.TOKEN_QUERY))}, + "TOKEN_QUERY_SOURCE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_QUERY_SOURCE))}, + "TOKEN_READ": {"untyped int", constant.MakeInt64(int64(q.TOKEN_READ))}, + "TOKEN_WRITE": {"untyped int", constant.MakeInt64(int64(q.TOKEN_WRITE))}, + "TRUNCATE_EXISTING": {"untyped int", constant.MakeInt64(int64(q.TRUNCATE_EXISTING))}, + "TokenAccessInformation": {"untyped int", constant.MakeInt64(int64(q.TokenAccessInformation))}, + "TokenAuditPolicy": {"untyped int", constant.MakeInt64(int64(q.TokenAuditPolicy))}, + "TokenDefaultDacl": {"untyped int", constant.MakeInt64(int64(q.TokenDefaultDacl))}, + "TokenElevation": {"untyped int", constant.MakeInt64(int64(q.TokenElevation))}, + "TokenElevationType": {"untyped int", constant.MakeInt64(int64(q.TokenElevationType))}, + "TokenGroups": {"untyped int", constant.MakeInt64(int64(q.TokenGroups))}, + "TokenGroupsAndPrivileges": {"untyped int", constant.MakeInt64(int64(q.TokenGroupsAndPrivileges))}, + "TokenHasRestrictions": {"untyped int", constant.MakeInt64(int64(q.TokenHasRestrictions))}, + "TokenImpersonationLevel": {"untyped int", constant.MakeInt64(int64(q.TokenImpersonationLevel))}, + "TokenIntegrityLevel": {"untyped int", constant.MakeInt64(int64(q.TokenIntegrityLevel))}, + "TokenLinkedToken": {"untyped int", constant.MakeInt64(int64(q.TokenLinkedToken))}, + "TokenLogonSid": {"untyped int", constant.MakeInt64(int64(q.TokenLogonSid))}, + "TokenMandatoryPolicy": {"untyped int", constant.MakeInt64(int64(q.TokenMandatoryPolicy))}, + "TokenOrigin": {"untyped int", constant.MakeInt64(int64(q.TokenOrigin))}, + "TokenOwner": {"untyped int", constant.MakeInt64(int64(q.TokenOwner))}, + "TokenPrimaryGroup": {"untyped int", constant.MakeInt64(int64(q.TokenPrimaryGroup))}, + "TokenPrivileges": {"untyped int", constant.MakeInt64(int64(q.TokenPrivileges))}, + "TokenRestrictedSids": {"untyped int", constant.MakeInt64(int64(q.TokenRestrictedSids))}, + "TokenSandBoxInert": {"untyped int", constant.MakeInt64(int64(q.TokenSandBoxInert))}, + "TokenSessionId": {"untyped int", constant.MakeInt64(int64(q.TokenSessionId))}, + "TokenSessionReference": {"untyped int", constant.MakeInt64(int64(q.TokenSessionReference))}, + "TokenSource": {"untyped int", constant.MakeInt64(int64(q.TokenSource))}, + "TokenStatistics": {"untyped int", constant.MakeInt64(int64(q.TokenStatistics))}, + "TokenType": {"untyped int", constant.MakeInt64(int64(q.TokenType))}, + "TokenUIAccess": {"untyped int", constant.MakeInt64(int64(q.TokenUIAccess))}, + "TokenUser": {"untyped int", constant.MakeInt64(int64(q.TokenUser))}, + "TokenVirtualizationAllowed": {"untyped int", constant.MakeInt64(int64(q.TokenVirtualizationAllowed))}, + "TokenVirtualizationEnabled": {"untyped int", constant.MakeInt64(int64(q.TokenVirtualizationEnabled))}, + "UNIX_PATH_MAX": {"untyped int", constant.MakeInt64(int64(q.UNIX_PATH_MAX))}, + "USAGE_MATCH_TYPE_AND": {"untyped int", constant.MakeInt64(int64(q.USAGE_MATCH_TYPE_AND))}, + "USAGE_MATCH_TYPE_OR": {"untyped int", constant.MakeInt64(int64(q.USAGE_MATCH_TYPE_OR))}, + "WAIT_ABANDONED": {"untyped int", constant.MakeInt64(int64(q.WAIT_ABANDONED))}, + "WAIT_FAILED": {"untyped int", constant.MakeInt64(int64(q.WAIT_FAILED))}, + "WAIT_OBJECT_0": {"untyped int", constant.MakeInt64(int64(q.WAIT_OBJECT_0))}, + "WAIT_TIMEOUT": {"untyped int", constant.MakeInt64(int64(q.WAIT_TIMEOUT))}, + "WSADESCRIPTION_LEN": {"untyped int", constant.MakeInt64(int64(q.WSADESCRIPTION_LEN))}, + "WSAPROTOCOL_LEN": {"untyped int", constant.MakeInt64(int64(q.WSAPROTOCOL_LEN))}, + "WSASYS_STATUS_LEN": {"untyped int", constant.MakeInt64(int64(q.WSASYS_STATUS_LEN))}, + "X509_ASN_ENCODING": {"untyped int", constant.MakeInt64(int64(q.X509_ASN_ENCODING))}, + "XP1_CONNECTIONLESS": {"untyped int", constant.MakeInt64(int64(q.XP1_CONNECTIONLESS))}, + "XP1_CONNECT_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_CONNECT_DATA))}, + "XP1_DISCONNECT_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_DISCONNECT_DATA))}, + "XP1_EXPEDITED_DATA": {"untyped int", constant.MakeInt64(int64(q.XP1_EXPEDITED_DATA))}, + "XP1_GRACEFUL_CLOSE": {"untyped int", constant.MakeInt64(int64(q.XP1_GRACEFUL_CLOSE))}, + "XP1_GUARANTEED_DELIVERY": {"untyped int", constant.MakeInt64(int64(q.XP1_GUARANTEED_DELIVERY))}, + "XP1_GUARANTEED_ORDER": {"untyped int", constant.MakeInt64(int64(q.XP1_GUARANTEED_ORDER))}, + "XP1_IFS_HANDLES": {"untyped int", constant.MakeInt64(int64(q.XP1_IFS_HANDLES))}, + "XP1_MESSAGE_ORIENTED": {"untyped int", constant.MakeInt64(int64(q.XP1_MESSAGE_ORIENTED))}, + "XP1_MULTIPOINT_CONTROL_PLANE": {"untyped int", constant.MakeInt64(int64(q.XP1_MULTIPOINT_CONTROL_PLANE))}, + "XP1_MULTIPOINT_DATA_PLANE": {"untyped int", constant.MakeInt64(int64(q.XP1_MULTIPOINT_DATA_PLANE))}, + "XP1_PARTIAL_MESSAGE": {"untyped int", constant.MakeInt64(int64(q.XP1_PARTIAL_MESSAGE))}, + "XP1_PSEUDO_STREAM": {"untyped int", constant.MakeInt64(int64(q.XP1_PSEUDO_STREAM))}, + "XP1_QOS_SUPPORTED": {"untyped int", constant.MakeInt64(int64(q.XP1_QOS_SUPPORTED))}, + "XP1_SAN_SUPPORT_SDP": {"untyped int", constant.MakeInt64(int64(q.XP1_SAN_SUPPORT_SDP))}, + "XP1_SUPPORT_BROADCAST": {"untyped int", constant.MakeInt64(int64(q.XP1_SUPPORT_BROADCAST))}, + "XP1_SUPPORT_MULTIPOINT": {"untyped int", constant.MakeInt64(int64(q.XP1_SUPPORT_MULTIPOINT))}, + "XP1_UNI_RECV": {"untyped int", constant.MakeInt64(int64(q.XP1_UNI_RECV))}, + "XP1_UNI_SEND": {"untyped int", constant.MakeInt64(int64(q.XP1_UNI_SEND))}, + }, + }) +} diff --git a/pkg/testing/fstest/go121_export.go b/pkg/testing/fstest/go121_export.go index 7d2a8a83..6ba22b29 100755 --- a/pkg/testing/fstest/go121_export.go +++ b/pkg/testing/fstest/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package fstest diff --git a/pkg/testing/fstest/go122_export.go b/pkg/testing/fstest/go122_export.go new file mode 100755 index 00000000..75813b4e --- /dev/null +++ b/pkg/testing/fstest/go122_export.go @@ -0,0 +1,45 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package fstest + +import ( + q "testing/fstest" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "fstest", + Path: "testing/fstest", + Deps: map[string]string{ + "errors": "errors", + "fmt": "fmt", + "io": "io", + "io/fs": "fs", + "path": "path", + "reflect": "reflect", + "sort": "sort", + "strings": "strings", + "testing/iotest": "iotest", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "MapFS": reflect.TypeOf((*q.MapFS)(nil)).Elem(), + "MapFile": reflect.TypeOf((*q.MapFile)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "TestFS": reflect.ValueOf(q.TestFS), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/testing/fstest/go123_export.go b/pkg/testing/fstest/go123_export.go new file mode 100755 index 00000000..e4757390 --- /dev/null +++ b/pkg/testing/fstest/go123_export.go @@ -0,0 +1,45 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package fstest + +import ( + q "testing/fstest" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "fstest", + Path: "testing/fstest", + Deps: map[string]string{ + "errors": "errors", + "fmt": "fmt", + "io": "io", + "io/fs": "fs", + "path": "path", + "reflect": "reflect", + "slices": "slices", + "strings": "strings", + "testing/iotest": "iotest", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "MapFS": reflect.TypeOf((*q.MapFS)(nil)).Elem(), + "MapFile": reflect.TypeOf((*q.MapFile)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "TestFS": reflect.ValueOf(q.TestFS), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/testing/go121_export.go b/pkg/testing/go121_export.go index f89625cc..5b102273 100755 --- a/pkg/testing/go121_export.go +++ b/pkg/testing/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package testing diff --git a/pkg/testing/go122_export.go b/pkg/testing/go122_export.go new file mode 100755 index 00000000..a70bf242 --- /dev/null +++ b/pkg/testing/go122_export.go @@ -0,0 +1,84 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package testing + +import ( + q "testing" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "testing", + Path: "testing", + Deps: map[string]string{ + "bytes": "bytes", + "errors": "errors", + "flag": "flag", + "fmt": "fmt", + "internal/goexperiment": "goexperiment", + "internal/race": "race", + "internal/sysinfo": "sysinfo", + "io": "io", + "math": "math", + "math/rand": "rand", + "os": "os", + "path/filepath": "filepath", + "reflect": "reflect", + "runtime": "runtime", + "runtime/debug": "debug", + "runtime/trace": "trace", + "sort": "sort", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "sync/atomic": "atomic", + "time": "time", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "TB": reflect.TypeOf((*q.TB)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "B": reflect.TypeOf((*q.B)(nil)).Elem(), + "BenchmarkResult": reflect.TypeOf((*q.BenchmarkResult)(nil)).Elem(), + "Cover": reflect.TypeOf((*q.Cover)(nil)).Elem(), + "CoverBlock": reflect.TypeOf((*q.CoverBlock)(nil)).Elem(), + "F": reflect.TypeOf((*q.F)(nil)).Elem(), + "InternalBenchmark": reflect.TypeOf((*q.InternalBenchmark)(nil)).Elem(), + "InternalExample": reflect.TypeOf((*q.InternalExample)(nil)).Elem(), + "InternalFuzzTarget": reflect.TypeOf((*q.InternalFuzzTarget)(nil)).Elem(), + "InternalTest": reflect.TypeOf((*q.InternalTest)(nil)).Elem(), + "M": reflect.TypeOf((*q.M)(nil)).Elem(), + "PB": reflect.TypeOf((*q.PB)(nil)).Elem(), + "T": reflect.TypeOf((*q.T)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "AllocsPerRun": reflect.ValueOf(q.AllocsPerRun), + "Benchmark": reflect.ValueOf(q.Benchmark), + "CoverMode": reflect.ValueOf(q.CoverMode), + "Coverage": reflect.ValueOf(q.Coverage), + "Init": reflect.ValueOf(q.Init), + "Main": reflect.ValueOf(q.Main), + "MainStart": reflect.ValueOf(q.MainStart), + "RegisterCover": reflect.ValueOf(q.RegisterCover), + "RunBenchmarks": reflect.ValueOf(q.RunBenchmarks), + "RunExamples": reflect.ValueOf(q.RunExamples), + "RunTests": reflect.ValueOf(q.RunTests), + "Short": reflect.ValueOf(q.Short), + "Testing": reflect.ValueOf(q.Testing), + "Verbose": reflect.ValueOf(q.Verbose), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/testing/go123_export.go b/pkg/testing/go123_export.go new file mode 100755 index 00000000..498de973 --- /dev/null +++ b/pkg/testing/go123_export.go @@ -0,0 +1,85 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package testing + +import ( + q "testing" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "testing", + Path: "testing", + Deps: map[string]string{ + "bytes": "bytes", + "errors": "errors", + "flag": "flag", + "fmt": "fmt", + "internal/goexperiment": "goexperiment", + "internal/race": "race", + "internal/sysinfo": "sysinfo", + "io": "io", + "math": "math", + "math/rand": "rand", + "os": "os", + "path/filepath": "filepath", + "reflect": "reflect", + "runtime": "runtime", + "runtime/debug": "debug", + "runtime/trace": "trace", + "slices": "slices", + "strconv": "strconv", + "strings": "strings", + "sync": "sync", + "sync/atomic": "atomic", + "time": "time", + "unicode": "unicode", + "unicode/utf8": "utf8", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{ + "TB": reflect.TypeOf((*q.TB)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "B": reflect.TypeOf((*q.B)(nil)).Elem(), + "BenchmarkResult": reflect.TypeOf((*q.BenchmarkResult)(nil)).Elem(), + "Cover": reflect.TypeOf((*q.Cover)(nil)).Elem(), + "CoverBlock": reflect.TypeOf((*q.CoverBlock)(nil)).Elem(), + "F": reflect.TypeOf((*q.F)(nil)).Elem(), + "InternalBenchmark": reflect.TypeOf((*q.InternalBenchmark)(nil)).Elem(), + "InternalExample": reflect.TypeOf((*q.InternalExample)(nil)).Elem(), + "InternalFuzzTarget": reflect.TypeOf((*q.InternalFuzzTarget)(nil)).Elem(), + "InternalTest": reflect.TypeOf((*q.InternalTest)(nil)).Elem(), + "M": reflect.TypeOf((*q.M)(nil)).Elem(), + "PB": reflect.TypeOf((*q.PB)(nil)).Elem(), + "T": reflect.TypeOf((*q.T)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "AllocsPerRun": reflect.ValueOf(q.AllocsPerRun), + "Benchmark": reflect.ValueOf(q.Benchmark), + "CoverMode": reflect.ValueOf(q.CoverMode), + "Coverage": reflect.ValueOf(q.Coverage), + "Init": reflect.ValueOf(q.Init), + "Main": reflect.ValueOf(q.Main), + "MainStart": reflect.ValueOf(q.MainStart), + "RegisterCover": reflect.ValueOf(q.RegisterCover), + "RunBenchmarks": reflect.ValueOf(q.RunBenchmarks), + "RunExamples": reflect.ValueOf(q.RunExamples), + "RunTests": reflect.ValueOf(q.RunTests), + "Short": reflect.ValueOf(q.Short), + "Testing": reflect.ValueOf(q.Testing), + "Verbose": reflect.ValueOf(q.Verbose), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/testing/iotest/go121_export.go b/pkg/testing/iotest/go121_export.go index e64203e4..212611aa 100755 --- a/pkg/testing/iotest/go121_export.go +++ b/pkg/testing/iotest/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package iotest diff --git a/pkg/testing/iotest/go122_export.go b/pkg/testing/iotest/go122_export.go new file mode 100755 index 00000000..d730cfa2 --- /dev/null +++ b/pkg/testing/iotest/go122_export.go @@ -0,0 +1,47 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package iotest + +import ( + q "testing/iotest" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "iotest", + Path: "testing/iotest", + Deps: map[string]string{ + "bytes": "bytes", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "log": "log", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrTimeout": reflect.ValueOf(&q.ErrTimeout), + }, + Funcs: map[string]reflect.Value{ + "DataErrReader": reflect.ValueOf(q.DataErrReader), + "ErrReader": reflect.ValueOf(q.ErrReader), + "HalfReader": reflect.ValueOf(q.HalfReader), + "NewReadLogger": reflect.ValueOf(q.NewReadLogger), + "NewWriteLogger": reflect.ValueOf(q.NewWriteLogger), + "OneByteReader": reflect.ValueOf(q.OneByteReader), + "TestReader": reflect.ValueOf(q.TestReader), + "TimeoutReader": reflect.ValueOf(q.TimeoutReader), + "TruncateWriter": reflect.ValueOf(q.TruncateWriter), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/testing/iotest/go123_export.go b/pkg/testing/iotest/go123_export.go new file mode 100755 index 00000000..a724bd6e --- /dev/null +++ b/pkg/testing/iotest/go123_export.go @@ -0,0 +1,47 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package iotest + +import ( + q "testing/iotest" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "iotest", + Path: "testing/iotest", + Deps: map[string]string{ + "bytes": "bytes", + "errors": "errors", + "fmt": "fmt", + "io": "io", + "log": "log", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ErrTimeout": reflect.ValueOf(&q.ErrTimeout), + }, + Funcs: map[string]reflect.Value{ + "DataErrReader": reflect.ValueOf(q.DataErrReader), + "ErrReader": reflect.ValueOf(q.ErrReader), + "HalfReader": reflect.ValueOf(q.HalfReader), + "NewReadLogger": reflect.ValueOf(q.NewReadLogger), + "NewWriteLogger": reflect.ValueOf(q.NewWriteLogger), + "OneByteReader": reflect.ValueOf(q.OneByteReader), + "TestReader": reflect.ValueOf(q.TestReader), + "TimeoutReader": reflect.ValueOf(q.TimeoutReader), + "TruncateWriter": reflect.ValueOf(q.TruncateWriter), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/testing/quick/go121_export.go b/pkg/testing/quick/go121_export.go index 46b05316..592e343e 100755 --- a/pkg/testing/quick/go121_export.go +++ b/pkg/testing/quick/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package quick diff --git a/pkg/testing/quick/go122_export.go b/pkg/testing/quick/go122_export.go new file mode 100755 index 00000000..fe630cb3 --- /dev/null +++ b/pkg/testing/quick/go122_export.go @@ -0,0 +1,48 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package quick + +import ( + q "testing/quick" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "quick", + Path: "testing/quick", + Deps: map[string]string{ + "flag": "flag", + "fmt": "fmt", + "math": "math", + "math/rand": "rand", + "reflect": "reflect", + "strings": "strings", + "time": "time", + }, + Interfaces: map[string]reflect.Type{ + "Generator": reflect.TypeOf((*q.Generator)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "CheckEqualError": reflect.TypeOf((*q.CheckEqualError)(nil)).Elem(), + "CheckError": reflect.TypeOf((*q.CheckError)(nil)).Elem(), + "Config": reflect.TypeOf((*q.Config)(nil)).Elem(), + "SetupError": reflect.TypeOf((*q.SetupError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Check": reflect.ValueOf(q.Check), + "CheckEqual": reflect.ValueOf(q.CheckEqual), + "Value": reflect.ValueOf(q.Value), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/testing/quick/go123_export.go b/pkg/testing/quick/go123_export.go new file mode 100755 index 00000000..86b7b5c3 --- /dev/null +++ b/pkg/testing/quick/go123_export.go @@ -0,0 +1,48 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package quick + +import ( + q "testing/quick" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "quick", + Path: "testing/quick", + Deps: map[string]string{ + "flag": "flag", + "fmt": "fmt", + "math": "math", + "math/rand": "rand", + "reflect": "reflect", + "strings": "strings", + "time": "time", + }, + Interfaces: map[string]reflect.Type{ + "Generator": reflect.TypeOf((*q.Generator)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "CheckEqualError": reflect.TypeOf((*q.CheckEqualError)(nil)).Elem(), + "CheckError": reflect.TypeOf((*q.CheckError)(nil)).Elem(), + "Config": reflect.TypeOf((*q.Config)(nil)).Elem(), + "SetupError": reflect.TypeOf((*q.SetupError)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Check": reflect.ValueOf(q.Check), + "CheckEqual": reflect.ValueOf(q.CheckEqual), + "Value": reflect.ValueOf(q.Value), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/testing/slogtest/go121_export.go b/pkg/testing/slogtest/go121_export.go index 755d7e41..0ec8b018 100755 --- a/pkg/testing/slogtest/go121_export.go +++ b/pkg/testing/slogtest/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package slogtest diff --git a/pkg/testing/slogtest/go122_export.go b/pkg/testing/slogtest/go122_export.go new file mode 100755 index 00000000..6330faf5 --- /dev/null +++ b/pkg/testing/slogtest/go122_export.go @@ -0,0 +1,41 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package slogtest + +import ( + q "testing/slogtest" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "slogtest", + Path: "testing/slogtest", + Deps: map[string]string{ + "context": "context", + "errors": "errors", + "fmt": "fmt", + "log/slog": "slog", + "reflect": "reflect", + "runtime": "runtime", + "testing": "testing", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Run": reflect.ValueOf(q.Run), + "TestHandler": reflect.ValueOf(q.TestHandler), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/testing/slogtest/go123_export.go b/pkg/testing/slogtest/go123_export.go new file mode 100755 index 00000000..54506973 --- /dev/null +++ b/pkg/testing/slogtest/go123_export.go @@ -0,0 +1,41 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package slogtest + +import ( + q "testing/slogtest" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "slogtest", + Path: "testing/slogtest", + Deps: map[string]string{ + "context": "context", + "errors": "errors", + "fmt": "fmt", + "log/slog": "slog", + "reflect": "reflect", + "runtime": "runtime", + "testing": "testing", + "time": "time", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "Run": reflect.ValueOf(q.Run), + "TestHandler": reflect.ValueOf(q.TestHandler), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/text/scanner/go121_export.go b/pkg/text/scanner/go121_export.go index a735164f..e6df6ffb 100755 --- a/pkg/text/scanner/go121_export.go +++ b/pkg/text/scanner/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package scanner diff --git a/pkg/text/scanner/go122_export.go b/pkg/text/scanner/go122_export.go new file mode 100755 index 00000000..f6285e5a --- /dev/null +++ b/pkg/text/scanner/go122_export.go @@ -0,0 +1,61 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package scanner + +import ( + q "text/scanner" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "scanner", + Path: "text/scanner", + Deps: map[string]string{ + "bytes": "bytes", + "fmt": "fmt", + "io": "io", + "os": "os", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Position": reflect.TypeOf((*q.Position)(nil)).Elem(), + "Scanner": reflect.TypeOf((*q.Scanner)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "TokenString": reflect.ValueOf(q.TokenString), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "Char": {"untyped int", constant.MakeInt64(int64(q.Char))}, + "Comment": {"untyped int", constant.MakeInt64(int64(q.Comment))}, + "EOF": {"untyped int", constant.MakeInt64(int64(q.EOF))}, + "Float": {"untyped int", constant.MakeInt64(int64(q.Float))}, + "GoTokens": {"untyped int", constant.MakeInt64(int64(q.GoTokens))}, + "GoWhitespace": {"untyped int", constant.MakeInt64(int64(q.GoWhitespace))}, + "Ident": {"untyped int", constant.MakeInt64(int64(q.Ident))}, + "Int": {"untyped int", constant.MakeInt64(int64(q.Int))}, + "RawString": {"untyped int", constant.MakeInt64(int64(q.RawString))}, + "ScanChars": {"untyped int", constant.MakeInt64(int64(q.ScanChars))}, + "ScanComments": {"untyped int", constant.MakeInt64(int64(q.ScanComments))}, + "ScanFloats": {"untyped int", constant.MakeInt64(int64(q.ScanFloats))}, + "ScanIdents": {"untyped int", constant.MakeInt64(int64(q.ScanIdents))}, + "ScanInts": {"untyped int", constant.MakeInt64(int64(q.ScanInts))}, + "ScanRawStrings": {"untyped int", constant.MakeInt64(int64(q.ScanRawStrings))}, + "ScanStrings": {"untyped int", constant.MakeInt64(int64(q.ScanStrings))}, + "SkipComments": {"untyped int", constant.MakeInt64(int64(q.SkipComments))}, + "String": {"untyped int", constant.MakeInt64(int64(q.String))}, + }, + }) +} diff --git a/pkg/text/scanner/go123_export.go b/pkg/text/scanner/go123_export.go new file mode 100755 index 00000000..e70ad6c3 --- /dev/null +++ b/pkg/text/scanner/go123_export.go @@ -0,0 +1,61 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package scanner + +import ( + q "text/scanner" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "scanner", + Path: "text/scanner", + Deps: map[string]string{ + "bytes": "bytes", + "fmt": "fmt", + "io": "io", + "os": "os", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Position": reflect.TypeOf((*q.Position)(nil)).Elem(), + "Scanner": reflect.TypeOf((*q.Scanner)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "TokenString": reflect.ValueOf(q.TokenString), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "Char": {"untyped int", constant.MakeInt64(int64(q.Char))}, + "Comment": {"untyped int", constant.MakeInt64(int64(q.Comment))}, + "EOF": {"untyped int", constant.MakeInt64(int64(q.EOF))}, + "Float": {"untyped int", constant.MakeInt64(int64(q.Float))}, + "GoTokens": {"untyped int", constant.MakeInt64(int64(q.GoTokens))}, + "GoWhitespace": {"untyped int", constant.MakeInt64(int64(q.GoWhitespace))}, + "Ident": {"untyped int", constant.MakeInt64(int64(q.Ident))}, + "Int": {"untyped int", constant.MakeInt64(int64(q.Int))}, + "RawString": {"untyped int", constant.MakeInt64(int64(q.RawString))}, + "ScanChars": {"untyped int", constant.MakeInt64(int64(q.ScanChars))}, + "ScanComments": {"untyped int", constant.MakeInt64(int64(q.ScanComments))}, + "ScanFloats": {"untyped int", constant.MakeInt64(int64(q.ScanFloats))}, + "ScanIdents": {"untyped int", constant.MakeInt64(int64(q.ScanIdents))}, + "ScanInts": {"untyped int", constant.MakeInt64(int64(q.ScanInts))}, + "ScanRawStrings": {"untyped int", constant.MakeInt64(int64(q.ScanRawStrings))}, + "ScanStrings": {"untyped int", constant.MakeInt64(int64(q.ScanStrings))}, + "SkipComments": {"untyped int", constant.MakeInt64(int64(q.SkipComments))}, + "String": {"untyped int", constant.MakeInt64(int64(q.String))}, + }, + }) +} diff --git a/pkg/text/tabwriter/go121_export.go b/pkg/text/tabwriter/go121_export.go index d35d0647..ec48b558 100755 --- a/pkg/text/tabwriter/go121_export.go +++ b/pkg/text/tabwriter/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package tabwriter diff --git a/pkg/text/tabwriter/go122_export.go b/pkg/text/tabwriter/go122_export.go new file mode 100755 index 00000000..d0807b3f --- /dev/null +++ b/pkg/text/tabwriter/go122_export.go @@ -0,0 +1,46 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package tabwriter + +import ( + q "text/tabwriter" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "tabwriter", + Path: "text/tabwriter", + Deps: map[string]string{ + "io": "io", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewWriter": reflect.ValueOf(q.NewWriter), + }, + TypedConsts: map[string]igop.TypedConst{ + "AlignRight": {reflect.TypeOf(q.AlignRight), constant.MakeInt64(int64(q.AlignRight))}, + "Debug": {reflect.TypeOf(q.Debug), constant.MakeInt64(int64(q.Debug))}, + "DiscardEmptyColumns": {reflect.TypeOf(q.DiscardEmptyColumns), constant.MakeInt64(int64(q.DiscardEmptyColumns))}, + "FilterHTML": {reflect.TypeOf(q.FilterHTML), constant.MakeInt64(int64(q.FilterHTML))}, + "StripEscape": {reflect.TypeOf(q.StripEscape), constant.MakeInt64(int64(q.StripEscape))}, + "TabIndent": {reflect.TypeOf(q.TabIndent), constant.MakeInt64(int64(q.TabIndent))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "Escape": {"untyped rune", constant.MakeInt64(int64(q.Escape))}, + }, + }) +} diff --git a/pkg/text/tabwriter/go123_export.go b/pkg/text/tabwriter/go123_export.go new file mode 100755 index 00000000..abc0c5e0 --- /dev/null +++ b/pkg/text/tabwriter/go123_export.go @@ -0,0 +1,47 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package tabwriter + +import ( + q "text/tabwriter" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "tabwriter", + Path: "text/tabwriter", + Deps: map[string]string{ + "fmt": "fmt", + "io": "io", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "NewWriter": reflect.ValueOf(q.NewWriter), + }, + TypedConsts: map[string]igop.TypedConst{ + "AlignRight": {reflect.TypeOf(q.AlignRight), constant.MakeInt64(int64(q.AlignRight))}, + "Debug": {reflect.TypeOf(q.Debug), constant.MakeInt64(int64(q.Debug))}, + "DiscardEmptyColumns": {reflect.TypeOf(q.DiscardEmptyColumns), constant.MakeInt64(int64(q.DiscardEmptyColumns))}, + "FilterHTML": {reflect.TypeOf(q.FilterHTML), constant.MakeInt64(int64(q.FilterHTML))}, + "StripEscape": {reflect.TypeOf(q.StripEscape), constant.MakeInt64(int64(q.StripEscape))}, + "TabIndent": {reflect.TypeOf(q.TabIndent), constant.MakeInt64(int64(q.TabIndent))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "Escape": {"untyped rune", constant.MakeInt64(int64(q.Escape))}, + }, + }) +} diff --git a/pkg/text/template/go121_export.go b/pkg/text/template/go121_export.go index 9a3ff709..65cab90d 100755 --- a/pkg/text/template/go121_export.go +++ b/pkg/text/template/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package template diff --git a/pkg/text/template/go122_export.go b/pkg/text/template/go122_export.go new file mode 100755 index 00000000..80a7802d --- /dev/null +++ b/pkg/text/template/go122_export.go @@ -0,0 +1,64 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package template + +import ( + q "text/template" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "template", + Path: "text/template", + Deps: map[string]string{ + "errors": "errors", + "fmt": "fmt", + "internal/fmtsort": "fmtsort", + "io": "io", + "io/fs": "fs", + "net/url": "url", + "os": "os", + "path": "path", + "path/filepath": "filepath", + "reflect": "reflect", + "runtime": "runtime", + "strings": "strings", + "sync": "sync", + "text/template/parse": "parse", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "ExecError": reflect.TypeOf((*q.ExecError)(nil)).Elem(), + "FuncMap": reflect.TypeOf((*q.FuncMap)(nil)).Elem(), + "Template": reflect.TypeOf((*q.Template)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "HTMLEscape": reflect.ValueOf(q.HTMLEscape), + "HTMLEscapeString": reflect.ValueOf(q.HTMLEscapeString), + "HTMLEscaper": reflect.ValueOf(q.HTMLEscaper), + "IsTrue": reflect.ValueOf(q.IsTrue), + "JSEscape": reflect.ValueOf(q.JSEscape), + "JSEscapeString": reflect.ValueOf(q.JSEscapeString), + "JSEscaper": reflect.ValueOf(q.JSEscaper), + "Must": reflect.ValueOf(q.Must), + "New": reflect.ValueOf(q.New), + "ParseFS": reflect.ValueOf(q.ParseFS), + "ParseFiles": reflect.ValueOf(q.ParseFiles), + "ParseGlob": reflect.ValueOf(q.ParseGlob), + "URLQueryEscaper": reflect.ValueOf(q.URLQueryEscaper), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/text/template/go123_export.go b/pkg/text/template/go123_export.go new file mode 100755 index 00000000..1069fb68 --- /dev/null +++ b/pkg/text/template/go123_export.go @@ -0,0 +1,64 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package template + +import ( + q "text/template" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "template", + Path: "text/template", + Deps: map[string]string{ + "errors": "errors", + "fmt": "fmt", + "internal/fmtsort": "fmtsort", + "io": "io", + "io/fs": "fs", + "net/url": "url", + "os": "os", + "path": "path", + "path/filepath": "filepath", + "reflect": "reflect", + "runtime": "runtime", + "strings": "strings", + "sync": "sync", + "text/template/parse": "parse", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "ExecError": reflect.TypeOf((*q.ExecError)(nil)).Elem(), + "FuncMap": reflect.TypeOf((*q.FuncMap)(nil)).Elem(), + "Template": reflect.TypeOf((*q.Template)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "HTMLEscape": reflect.ValueOf(q.HTMLEscape), + "HTMLEscapeString": reflect.ValueOf(q.HTMLEscapeString), + "HTMLEscaper": reflect.ValueOf(q.HTMLEscaper), + "IsTrue": reflect.ValueOf(q.IsTrue), + "JSEscape": reflect.ValueOf(q.JSEscape), + "JSEscapeString": reflect.ValueOf(q.JSEscapeString), + "JSEscaper": reflect.ValueOf(q.JSEscaper), + "Must": reflect.ValueOf(q.Must), + "New": reflect.ValueOf(q.New), + "ParseFS": reflect.ValueOf(q.ParseFS), + "ParseFiles": reflect.ValueOf(q.ParseFiles), + "ParseGlob": reflect.ValueOf(q.ParseGlob), + "URLQueryEscaper": reflect.ValueOf(q.URLQueryEscaper), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/text/template/parse/go121_export.go b/pkg/text/template/parse/go121_export.go index 0e1f7bbd..bf201048 100755 --- a/pkg/text/template/parse/go121_export.go +++ b/pkg/text/template/parse/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package parse diff --git a/pkg/text/template/parse/go122_export.go b/pkg/text/template/parse/go122_export.go new file mode 100755 index 00000000..f33f418c --- /dev/null +++ b/pkg/text/template/parse/go122_export.go @@ -0,0 +1,96 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package parse + +import ( + q "text/template/parse" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "parse", + Path: "text/template/parse", + Deps: map[string]string{ + "bytes": "bytes", + "fmt": "fmt", + "runtime": "runtime", + "strconv": "strconv", + "strings": "strings", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "Node": reflect.TypeOf((*q.Node)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "ActionNode": reflect.TypeOf((*q.ActionNode)(nil)).Elem(), + "BoolNode": reflect.TypeOf((*q.BoolNode)(nil)).Elem(), + "BranchNode": reflect.TypeOf((*q.BranchNode)(nil)).Elem(), + "BreakNode": reflect.TypeOf((*q.BreakNode)(nil)).Elem(), + "ChainNode": reflect.TypeOf((*q.ChainNode)(nil)).Elem(), + "CommandNode": reflect.TypeOf((*q.CommandNode)(nil)).Elem(), + "CommentNode": reflect.TypeOf((*q.CommentNode)(nil)).Elem(), + "ContinueNode": reflect.TypeOf((*q.ContinueNode)(nil)).Elem(), + "DotNode": reflect.TypeOf((*q.DotNode)(nil)).Elem(), + "FieldNode": reflect.TypeOf((*q.FieldNode)(nil)).Elem(), + "IdentifierNode": reflect.TypeOf((*q.IdentifierNode)(nil)).Elem(), + "IfNode": reflect.TypeOf((*q.IfNode)(nil)).Elem(), + "ListNode": reflect.TypeOf((*q.ListNode)(nil)).Elem(), + "Mode": reflect.TypeOf((*q.Mode)(nil)).Elem(), + "NilNode": reflect.TypeOf((*q.NilNode)(nil)).Elem(), + "NodeType": reflect.TypeOf((*q.NodeType)(nil)).Elem(), + "NumberNode": reflect.TypeOf((*q.NumberNode)(nil)).Elem(), + "PipeNode": reflect.TypeOf((*q.PipeNode)(nil)).Elem(), + "Pos": reflect.TypeOf((*q.Pos)(nil)).Elem(), + "RangeNode": reflect.TypeOf((*q.RangeNode)(nil)).Elem(), + "StringNode": reflect.TypeOf((*q.StringNode)(nil)).Elem(), + "TemplateNode": reflect.TypeOf((*q.TemplateNode)(nil)).Elem(), + "TextNode": reflect.TypeOf((*q.TextNode)(nil)).Elem(), + "Tree": reflect.TypeOf((*q.Tree)(nil)).Elem(), + "VariableNode": reflect.TypeOf((*q.VariableNode)(nil)).Elem(), + "WithNode": reflect.TypeOf((*q.WithNode)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "IsEmptyTree": reflect.ValueOf(q.IsEmptyTree), + "New": reflect.ValueOf(q.New), + "NewIdentifier": reflect.ValueOf(q.NewIdentifier), + "Parse": reflect.ValueOf(q.Parse), + }, + TypedConsts: map[string]igop.TypedConst{ + "NodeAction": {reflect.TypeOf(q.NodeAction), constant.MakeInt64(int64(q.NodeAction))}, + "NodeBool": {reflect.TypeOf(q.NodeBool), constant.MakeInt64(int64(q.NodeBool))}, + "NodeBreak": {reflect.TypeOf(q.NodeBreak), constant.MakeInt64(int64(q.NodeBreak))}, + "NodeChain": {reflect.TypeOf(q.NodeChain), constant.MakeInt64(int64(q.NodeChain))}, + "NodeCommand": {reflect.TypeOf(q.NodeCommand), constant.MakeInt64(int64(q.NodeCommand))}, + "NodeComment": {reflect.TypeOf(q.NodeComment), constant.MakeInt64(int64(q.NodeComment))}, + "NodeContinue": {reflect.TypeOf(q.NodeContinue), constant.MakeInt64(int64(q.NodeContinue))}, + "NodeDot": {reflect.TypeOf(q.NodeDot), constant.MakeInt64(int64(q.NodeDot))}, + "NodeField": {reflect.TypeOf(q.NodeField), constant.MakeInt64(int64(q.NodeField))}, + "NodeIdentifier": {reflect.TypeOf(q.NodeIdentifier), constant.MakeInt64(int64(q.NodeIdentifier))}, + "NodeIf": {reflect.TypeOf(q.NodeIf), constant.MakeInt64(int64(q.NodeIf))}, + "NodeList": {reflect.TypeOf(q.NodeList), constant.MakeInt64(int64(q.NodeList))}, + "NodeNil": {reflect.TypeOf(q.NodeNil), constant.MakeInt64(int64(q.NodeNil))}, + "NodeNumber": {reflect.TypeOf(q.NodeNumber), constant.MakeInt64(int64(q.NodeNumber))}, + "NodePipe": {reflect.TypeOf(q.NodePipe), constant.MakeInt64(int64(q.NodePipe))}, + "NodeRange": {reflect.TypeOf(q.NodeRange), constant.MakeInt64(int64(q.NodeRange))}, + "NodeString": {reflect.TypeOf(q.NodeString), constant.MakeInt64(int64(q.NodeString))}, + "NodeTemplate": {reflect.TypeOf(q.NodeTemplate), constant.MakeInt64(int64(q.NodeTemplate))}, + "NodeText": {reflect.TypeOf(q.NodeText), constant.MakeInt64(int64(q.NodeText))}, + "NodeVariable": {reflect.TypeOf(q.NodeVariable), constant.MakeInt64(int64(q.NodeVariable))}, + "NodeWith": {reflect.TypeOf(q.NodeWith), constant.MakeInt64(int64(q.NodeWith))}, + "ParseComments": {reflect.TypeOf(q.ParseComments), constant.MakeInt64(int64(q.ParseComments))}, + "SkipFuncCheck": {reflect.TypeOf(q.SkipFuncCheck), constant.MakeInt64(int64(q.SkipFuncCheck))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/text/template/parse/go123_export.go b/pkg/text/template/parse/go123_export.go new file mode 100755 index 00000000..5f7af669 --- /dev/null +++ b/pkg/text/template/parse/go123_export.go @@ -0,0 +1,96 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package parse + +import ( + q "text/template/parse" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "parse", + Path: "text/template/parse", + Deps: map[string]string{ + "bytes": "bytes", + "fmt": "fmt", + "runtime": "runtime", + "strconv": "strconv", + "strings": "strings", + "unicode": "unicode", + "unicode/utf8": "utf8", + }, + Interfaces: map[string]reflect.Type{ + "Node": reflect.TypeOf((*q.Node)(nil)).Elem(), + }, + NamedTypes: map[string]reflect.Type{ + "ActionNode": reflect.TypeOf((*q.ActionNode)(nil)).Elem(), + "BoolNode": reflect.TypeOf((*q.BoolNode)(nil)).Elem(), + "BranchNode": reflect.TypeOf((*q.BranchNode)(nil)).Elem(), + "BreakNode": reflect.TypeOf((*q.BreakNode)(nil)).Elem(), + "ChainNode": reflect.TypeOf((*q.ChainNode)(nil)).Elem(), + "CommandNode": reflect.TypeOf((*q.CommandNode)(nil)).Elem(), + "CommentNode": reflect.TypeOf((*q.CommentNode)(nil)).Elem(), + "ContinueNode": reflect.TypeOf((*q.ContinueNode)(nil)).Elem(), + "DotNode": reflect.TypeOf((*q.DotNode)(nil)).Elem(), + "FieldNode": reflect.TypeOf((*q.FieldNode)(nil)).Elem(), + "IdentifierNode": reflect.TypeOf((*q.IdentifierNode)(nil)).Elem(), + "IfNode": reflect.TypeOf((*q.IfNode)(nil)).Elem(), + "ListNode": reflect.TypeOf((*q.ListNode)(nil)).Elem(), + "Mode": reflect.TypeOf((*q.Mode)(nil)).Elem(), + "NilNode": reflect.TypeOf((*q.NilNode)(nil)).Elem(), + "NodeType": reflect.TypeOf((*q.NodeType)(nil)).Elem(), + "NumberNode": reflect.TypeOf((*q.NumberNode)(nil)).Elem(), + "PipeNode": reflect.TypeOf((*q.PipeNode)(nil)).Elem(), + "Pos": reflect.TypeOf((*q.Pos)(nil)).Elem(), + "RangeNode": reflect.TypeOf((*q.RangeNode)(nil)).Elem(), + "StringNode": reflect.TypeOf((*q.StringNode)(nil)).Elem(), + "TemplateNode": reflect.TypeOf((*q.TemplateNode)(nil)).Elem(), + "TextNode": reflect.TypeOf((*q.TextNode)(nil)).Elem(), + "Tree": reflect.TypeOf((*q.Tree)(nil)).Elem(), + "VariableNode": reflect.TypeOf((*q.VariableNode)(nil)).Elem(), + "WithNode": reflect.TypeOf((*q.WithNode)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "IsEmptyTree": reflect.ValueOf(q.IsEmptyTree), + "New": reflect.ValueOf(q.New), + "NewIdentifier": reflect.ValueOf(q.NewIdentifier), + "Parse": reflect.ValueOf(q.Parse), + }, + TypedConsts: map[string]igop.TypedConst{ + "NodeAction": {reflect.TypeOf(q.NodeAction), constant.MakeInt64(int64(q.NodeAction))}, + "NodeBool": {reflect.TypeOf(q.NodeBool), constant.MakeInt64(int64(q.NodeBool))}, + "NodeBreak": {reflect.TypeOf(q.NodeBreak), constant.MakeInt64(int64(q.NodeBreak))}, + "NodeChain": {reflect.TypeOf(q.NodeChain), constant.MakeInt64(int64(q.NodeChain))}, + "NodeCommand": {reflect.TypeOf(q.NodeCommand), constant.MakeInt64(int64(q.NodeCommand))}, + "NodeComment": {reflect.TypeOf(q.NodeComment), constant.MakeInt64(int64(q.NodeComment))}, + "NodeContinue": {reflect.TypeOf(q.NodeContinue), constant.MakeInt64(int64(q.NodeContinue))}, + "NodeDot": {reflect.TypeOf(q.NodeDot), constant.MakeInt64(int64(q.NodeDot))}, + "NodeField": {reflect.TypeOf(q.NodeField), constant.MakeInt64(int64(q.NodeField))}, + "NodeIdentifier": {reflect.TypeOf(q.NodeIdentifier), constant.MakeInt64(int64(q.NodeIdentifier))}, + "NodeIf": {reflect.TypeOf(q.NodeIf), constant.MakeInt64(int64(q.NodeIf))}, + "NodeList": {reflect.TypeOf(q.NodeList), constant.MakeInt64(int64(q.NodeList))}, + "NodeNil": {reflect.TypeOf(q.NodeNil), constant.MakeInt64(int64(q.NodeNil))}, + "NodeNumber": {reflect.TypeOf(q.NodeNumber), constant.MakeInt64(int64(q.NodeNumber))}, + "NodePipe": {reflect.TypeOf(q.NodePipe), constant.MakeInt64(int64(q.NodePipe))}, + "NodeRange": {reflect.TypeOf(q.NodeRange), constant.MakeInt64(int64(q.NodeRange))}, + "NodeString": {reflect.TypeOf(q.NodeString), constant.MakeInt64(int64(q.NodeString))}, + "NodeTemplate": {reflect.TypeOf(q.NodeTemplate), constant.MakeInt64(int64(q.NodeTemplate))}, + "NodeText": {reflect.TypeOf(q.NodeText), constant.MakeInt64(int64(q.NodeText))}, + "NodeVariable": {reflect.TypeOf(q.NodeVariable), constant.MakeInt64(int64(q.NodeVariable))}, + "NodeWith": {reflect.TypeOf(q.NodeWith), constant.MakeInt64(int64(q.NodeWith))}, + "ParseComments": {reflect.TypeOf(q.ParseComments), constant.MakeInt64(int64(q.ParseComments))}, + "SkipFuncCheck": {reflect.TypeOf(q.SkipFuncCheck), constant.MakeInt64(int64(q.SkipFuncCheck))}, + }, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/time/go121_export.go b/pkg/time/go121_export.go index 2112cced..6fd4c49a 100755 --- a/pkg/time/go121_export.go +++ b/pkg/time/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package time diff --git a/pkg/time/go122_export.go b/pkg/time/go122_export.go new file mode 100755 index 00000000..f1c6651b --- /dev/null +++ b/pkg/time/go122_export.go @@ -0,0 +1,114 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package time + +import ( + q "time" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "time", + Path: "time", + Deps: map[string]string{ + "errors": "errors", + "runtime": "runtime", + "sync": "sync", + "syscall": "syscall", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Duration": reflect.TypeOf((*q.Duration)(nil)).Elem(), + "Location": reflect.TypeOf((*q.Location)(nil)).Elem(), + "Month": reflect.TypeOf((*q.Month)(nil)).Elem(), + "ParseError": reflect.TypeOf((*q.ParseError)(nil)).Elem(), + "Ticker": reflect.TypeOf((*q.Ticker)(nil)).Elem(), + "Time": reflect.TypeOf((*q.Time)(nil)).Elem(), + "Timer": reflect.TypeOf((*q.Timer)(nil)).Elem(), + "Weekday": reflect.TypeOf((*q.Weekday)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Local": reflect.ValueOf(&q.Local), + "UTC": reflect.ValueOf(&q.UTC), + }, + Funcs: map[string]reflect.Value{ + "After": reflect.ValueOf(q.After), + "AfterFunc": reflect.ValueOf(q.AfterFunc), + "Date": reflect.ValueOf(q.Date), + "FixedZone": reflect.ValueOf(q.FixedZone), + "LoadLocation": reflect.ValueOf(q.LoadLocation), + "LoadLocationFromTZData": reflect.ValueOf(q.LoadLocationFromTZData), + "NewTicker": reflect.ValueOf(q.NewTicker), + "NewTimer": reflect.ValueOf(q.NewTimer), + "Now": reflect.ValueOf(q.Now), + "Parse": reflect.ValueOf(q.Parse), + "ParseDuration": reflect.ValueOf(q.ParseDuration), + "ParseInLocation": reflect.ValueOf(q.ParseInLocation), + "Since": reflect.ValueOf(q.Since), + "Sleep": reflect.ValueOf(q.Sleep), + "Tick": reflect.ValueOf(q.Tick), + "Unix": reflect.ValueOf(q.Unix), + "UnixMicro": reflect.ValueOf(q.UnixMicro), + "UnixMilli": reflect.ValueOf(q.UnixMilli), + "Until": reflect.ValueOf(q.Until), + }, + TypedConsts: map[string]igop.TypedConst{ + "April": {reflect.TypeOf(q.April), constant.MakeInt64(int64(q.April))}, + "August": {reflect.TypeOf(q.August), constant.MakeInt64(int64(q.August))}, + "December": {reflect.TypeOf(q.December), constant.MakeInt64(int64(q.December))}, + "February": {reflect.TypeOf(q.February), constant.MakeInt64(int64(q.February))}, + "Friday": {reflect.TypeOf(q.Friday), constant.MakeInt64(int64(q.Friday))}, + "Hour": {reflect.TypeOf(q.Hour), constant.MakeInt64(int64(q.Hour))}, + "January": {reflect.TypeOf(q.January), constant.MakeInt64(int64(q.January))}, + "July": {reflect.TypeOf(q.July), constant.MakeInt64(int64(q.July))}, + "June": {reflect.TypeOf(q.June), constant.MakeInt64(int64(q.June))}, + "March": {reflect.TypeOf(q.March), constant.MakeInt64(int64(q.March))}, + "May": {reflect.TypeOf(q.May), constant.MakeInt64(int64(q.May))}, + "Microsecond": {reflect.TypeOf(q.Microsecond), constant.MakeInt64(int64(q.Microsecond))}, + "Millisecond": {reflect.TypeOf(q.Millisecond), constant.MakeInt64(int64(q.Millisecond))}, + "Minute": {reflect.TypeOf(q.Minute), constant.MakeInt64(int64(q.Minute))}, + "Monday": {reflect.TypeOf(q.Monday), constant.MakeInt64(int64(q.Monday))}, + "Nanosecond": {reflect.TypeOf(q.Nanosecond), constant.MakeInt64(int64(q.Nanosecond))}, + "November": {reflect.TypeOf(q.November), constant.MakeInt64(int64(q.November))}, + "October": {reflect.TypeOf(q.October), constant.MakeInt64(int64(q.October))}, + "Saturday": {reflect.TypeOf(q.Saturday), constant.MakeInt64(int64(q.Saturday))}, + "Second": {reflect.TypeOf(q.Second), constant.MakeInt64(int64(q.Second))}, + "September": {reflect.TypeOf(q.September), constant.MakeInt64(int64(q.September))}, + "Sunday": {reflect.TypeOf(q.Sunday), constant.MakeInt64(int64(q.Sunday))}, + "Thursday": {reflect.TypeOf(q.Thursday), constant.MakeInt64(int64(q.Thursday))}, + "Tuesday": {reflect.TypeOf(q.Tuesday), constant.MakeInt64(int64(q.Tuesday))}, + "Wednesday": {reflect.TypeOf(q.Wednesday), constant.MakeInt64(int64(q.Wednesday))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "ANSIC": {"untyped string", constant.MakeString(string(q.ANSIC))}, + "DateOnly": {"untyped string", constant.MakeString(string(q.DateOnly))}, + "DateTime": {"untyped string", constant.MakeString(string(q.DateTime))}, + "Kitchen": {"untyped string", constant.MakeString(string(q.Kitchen))}, + "Layout": {"untyped string", constant.MakeString(string(q.Layout))}, + "RFC1123": {"untyped string", constant.MakeString(string(q.RFC1123))}, + "RFC1123Z": {"untyped string", constant.MakeString(string(q.RFC1123Z))}, + "RFC3339": {"untyped string", constant.MakeString(string(q.RFC3339))}, + "RFC3339Nano": {"untyped string", constant.MakeString(string(q.RFC3339Nano))}, + "RFC822": {"untyped string", constant.MakeString(string(q.RFC822))}, + "RFC822Z": {"untyped string", constant.MakeString(string(q.RFC822Z))}, + "RFC850": {"untyped string", constant.MakeString(string(q.RFC850))}, + "RubyDate": {"untyped string", constant.MakeString(string(q.RubyDate))}, + "Stamp": {"untyped string", constant.MakeString(string(q.Stamp))}, + "StampMicro": {"untyped string", constant.MakeString(string(q.StampMicro))}, + "StampMilli": {"untyped string", constant.MakeString(string(q.StampMilli))}, + "StampNano": {"untyped string", constant.MakeString(string(q.StampNano))}, + "TimeOnly": {"untyped string", constant.MakeString(string(q.TimeOnly))}, + "UnixDate": {"untyped string", constant.MakeString(string(q.UnixDate))}, + }, + }) +} diff --git a/pkg/time/go123_export.go b/pkg/time/go123_export.go new file mode 100755 index 00000000..f785ddfc --- /dev/null +++ b/pkg/time/go123_export.go @@ -0,0 +1,117 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package time + +import ( + q "time" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "time", + Path: "time", + Deps: map[string]string{ + "errors": "errors", + "internal/bytealg": "bytealg", + "internal/godebug": "godebug", + "internal/stringslite": "stringslite", + "runtime": "runtime", + "sync": "sync", + "syscall": "syscall", + "unsafe": "unsafe", + }, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "Duration": reflect.TypeOf((*q.Duration)(nil)).Elem(), + "Location": reflect.TypeOf((*q.Location)(nil)).Elem(), + "Month": reflect.TypeOf((*q.Month)(nil)).Elem(), + "ParseError": reflect.TypeOf((*q.ParseError)(nil)).Elem(), + "Ticker": reflect.TypeOf((*q.Ticker)(nil)).Elem(), + "Time": reflect.TypeOf((*q.Time)(nil)).Elem(), + "Timer": reflect.TypeOf((*q.Timer)(nil)).Elem(), + "Weekday": reflect.TypeOf((*q.Weekday)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "Local": reflect.ValueOf(&q.Local), + "UTC": reflect.ValueOf(&q.UTC), + }, + Funcs: map[string]reflect.Value{ + "After": reflect.ValueOf(q.After), + "AfterFunc": reflect.ValueOf(q.AfterFunc), + "Date": reflect.ValueOf(q.Date), + "FixedZone": reflect.ValueOf(q.FixedZone), + "LoadLocation": reflect.ValueOf(q.LoadLocation), + "LoadLocationFromTZData": reflect.ValueOf(q.LoadLocationFromTZData), + "NewTicker": reflect.ValueOf(q.NewTicker), + "NewTimer": reflect.ValueOf(q.NewTimer), + "Now": reflect.ValueOf(q.Now), + "Parse": reflect.ValueOf(q.Parse), + "ParseDuration": reflect.ValueOf(q.ParseDuration), + "ParseInLocation": reflect.ValueOf(q.ParseInLocation), + "Since": reflect.ValueOf(q.Since), + "Sleep": reflect.ValueOf(q.Sleep), + "Tick": reflect.ValueOf(q.Tick), + "Unix": reflect.ValueOf(q.Unix), + "UnixMicro": reflect.ValueOf(q.UnixMicro), + "UnixMilli": reflect.ValueOf(q.UnixMilli), + "Until": reflect.ValueOf(q.Until), + }, + TypedConsts: map[string]igop.TypedConst{ + "April": {reflect.TypeOf(q.April), constant.MakeInt64(int64(q.April))}, + "August": {reflect.TypeOf(q.August), constant.MakeInt64(int64(q.August))}, + "December": {reflect.TypeOf(q.December), constant.MakeInt64(int64(q.December))}, + "February": {reflect.TypeOf(q.February), constant.MakeInt64(int64(q.February))}, + "Friday": {reflect.TypeOf(q.Friday), constant.MakeInt64(int64(q.Friday))}, + "Hour": {reflect.TypeOf(q.Hour), constant.MakeInt64(int64(q.Hour))}, + "January": {reflect.TypeOf(q.January), constant.MakeInt64(int64(q.January))}, + "July": {reflect.TypeOf(q.July), constant.MakeInt64(int64(q.July))}, + "June": {reflect.TypeOf(q.June), constant.MakeInt64(int64(q.June))}, + "March": {reflect.TypeOf(q.March), constant.MakeInt64(int64(q.March))}, + "May": {reflect.TypeOf(q.May), constant.MakeInt64(int64(q.May))}, + "Microsecond": {reflect.TypeOf(q.Microsecond), constant.MakeInt64(int64(q.Microsecond))}, + "Millisecond": {reflect.TypeOf(q.Millisecond), constant.MakeInt64(int64(q.Millisecond))}, + "Minute": {reflect.TypeOf(q.Minute), constant.MakeInt64(int64(q.Minute))}, + "Monday": {reflect.TypeOf(q.Monday), constant.MakeInt64(int64(q.Monday))}, + "Nanosecond": {reflect.TypeOf(q.Nanosecond), constant.MakeInt64(int64(q.Nanosecond))}, + "November": {reflect.TypeOf(q.November), constant.MakeInt64(int64(q.November))}, + "October": {reflect.TypeOf(q.October), constant.MakeInt64(int64(q.October))}, + "Saturday": {reflect.TypeOf(q.Saturday), constant.MakeInt64(int64(q.Saturday))}, + "Second": {reflect.TypeOf(q.Second), constant.MakeInt64(int64(q.Second))}, + "September": {reflect.TypeOf(q.September), constant.MakeInt64(int64(q.September))}, + "Sunday": {reflect.TypeOf(q.Sunday), constant.MakeInt64(int64(q.Sunday))}, + "Thursday": {reflect.TypeOf(q.Thursday), constant.MakeInt64(int64(q.Thursday))}, + "Tuesday": {reflect.TypeOf(q.Tuesday), constant.MakeInt64(int64(q.Tuesday))}, + "Wednesday": {reflect.TypeOf(q.Wednesday), constant.MakeInt64(int64(q.Wednesday))}, + }, + UntypedConsts: map[string]igop.UntypedConst{ + "ANSIC": {"untyped string", constant.MakeString(string(q.ANSIC))}, + "DateOnly": {"untyped string", constant.MakeString(string(q.DateOnly))}, + "DateTime": {"untyped string", constant.MakeString(string(q.DateTime))}, + "Kitchen": {"untyped string", constant.MakeString(string(q.Kitchen))}, + "Layout": {"untyped string", constant.MakeString(string(q.Layout))}, + "RFC1123": {"untyped string", constant.MakeString(string(q.RFC1123))}, + "RFC1123Z": {"untyped string", constant.MakeString(string(q.RFC1123Z))}, + "RFC3339": {"untyped string", constant.MakeString(string(q.RFC3339))}, + "RFC3339Nano": {"untyped string", constant.MakeString(string(q.RFC3339Nano))}, + "RFC822": {"untyped string", constant.MakeString(string(q.RFC822))}, + "RFC822Z": {"untyped string", constant.MakeString(string(q.RFC822Z))}, + "RFC850": {"untyped string", constant.MakeString(string(q.RFC850))}, + "RubyDate": {"untyped string", constant.MakeString(string(q.RubyDate))}, + "Stamp": {"untyped string", constant.MakeString(string(q.Stamp))}, + "StampMicro": {"untyped string", constant.MakeString(string(q.StampMicro))}, + "StampMilli": {"untyped string", constant.MakeString(string(q.StampMilli))}, + "StampNano": {"untyped string", constant.MakeString(string(q.StampNano))}, + "TimeOnly": {"untyped string", constant.MakeString(string(q.TimeOnly))}, + "UnixDate": {"untyped string", constant.MakeString(string(q.UnixDate))}, + }, + }) +} diff --git a/pkg/time/tzdata/go121_export.go b/pkg/time/tzdata/go121_export.go index 47fbb41d..ddcbc216 100755 --- a/pkg/time/tzdata/go121_export.go +++ b/pkg/time/tzdata/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package tzdata diff --git a/pkg/time/tzdata/go122_export.go b/pkg/time/tzdata/go122_export.go new file mode 100755 index 00000000..d4e5d02e --- /dev/null +++ b/pkg/time/tzdata/go122_export.go @@ -0,0 +1,24 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package tzdata + +import ( + _ "time/tzdata" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "tzdata", + Path: "time/tzdata", + Deps: map[string]string{ + "errors": "errors", + "syscall": "syscall", + "unsafe": "unsafe", + }, + }) +} diff --git a/pkg/time/tzdata/go123_export.go b/pkg/time/tzdata/go123_export.go new file mode 100755 index 00000000..fdd12e6a --- /dev/null +++ b/pkg/time/tzdata/go123_export.go @@ -0,0 +1,24 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package tzdata + +import ( + _ "time/tzdata" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "tzdata", + Path: "time/tzdata", + Deps: map[string]string{ + "errors": "errors", + "syscall": "syscall", + "unsafe": "unsafe", + }, + }) +} diff --git a/pkg/unicode/go121_export.go b/pkg/unicode/go121_export.go index 7e7d5067..218fe3de 100755 --- a/pkg/unicode/go121_export.go +++ b/pkg/unicode/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package unicode diff --git a/pkg/unicode/go122_export.go b/pkg/unicode/go122_export.go new file mode 100755 index 00000000..7c5e80b2 --- /dev/null +++ b/pkg/unicode/go122_export.go @@ -0,0 +1,325 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package unicode + +import ( + q "unicode" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "unicode", + Path: "unicode", + Deps: map[string]string{}, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "CaseRange": reflect.TypeOf((*q.CaseRange)(nil)).Elem(), + "Range16": reflect.TypeOf((*q.Range16)(nil)).Elem(), + "Range32": reflect.TypeOf((*q.Range32)(nil)).Elem(), + "RangeTable": reflect.TypeOf((*q.RangeTable)(nil)).Elem(), + "SpecialCase": reflect.TypeOf((*q.SpecialCase)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ASCII_Hex_Digit": reflect.ValueOf(&q.ASCII_Hex_Digit), + "Adlam": reflect.ValueOf(&q.Adlam), + "Ahom": reflect.ValueOf(&q.Ahom), + "Anatolian_Hieroglyphs": reflect.ValueOf(&q.Anatolian_Hieroglyphs), + "Arabic": reflect.ValueOf(&q.Arabic), + "Armenian": reflect.ValueOf(&q.Armenian), + "Avestan": reflect.ValueOf(&q.Avestan), + "AzeriCase": reflect.ValueOf(&q.AzeriCase), + "Balinese": reflect.ValueOf(&q.Balinese), + "Bamum": reflect.ValueOf(&q.Bamum), + "Bassa_Vah": reflect.ValueOf(&q.Bassa_Vah), + "Batak": reflect.ValueOf(&q.Batak), + "Bengali": reflect.ValueOf(&q.Bengali), + "Bhaiksuki": reflect.ValueOf(&q.Bhaiksuki), + "Bidi_Control": reflect.ValueOf(&q.Bidi_Control), + "Bopomofo": reflect.ValueOf(&q.Bopomofo), + "Brahmi": reflect.ValueOf(&q.Brahmi), + "Braille": reflect.ValueOf(&q.Braille), + "Buginese": reflect.ValueOf(&q.Buginese), + "Buhid": reflect.ValueOf(&q.Buhid), + "C": reflect.ValueOf(&q.C), + "Canadian_Aboriginal": reflect.ValueOf(&q.Canadian_Aboriginal), + "Carian": reflect.ValueOf(&q.Carian), + "CaseRanges": reflect.ValueOf(&q.CaseRanges), + "Categories": reflect.ValueOf(&q.Categories), + "Caucasian_Albanian": reflect.ValueOf(&q.Caucasian_Albanian), + "Cc": reflect.ValueOf(&q.Cc), + "Cf": reflect.ValueOf(&q.Cf), + "Chakma": reflect.ValueOf(&q.Chakma), + "Cham": reflect.ValueOf(&q.Cham), + "Cherokee": reflect.ValueOf(&q.Cherokee), + "Chorasmian": reflect.ValueOf(&q.Chorasmian), + "Co": reflect.ValueOf(&q.Co), + "Common": reflect.ValueOf(&q.Common), + "Coptic": reflect.ValueOf(&q.Coptic), + "Cs": reflect.ValueOf(&q.Cs), + "Cuneiform": reflect.ValueOf(&q.Cuneiform), + "Cypriot": reflect.ValueOf(&q.Cypriot), + "Cypro_Minoan": reflect.ValueOf(&q.Cypro_Minoan), + "Cyrillic": reflect.ValueOf(&q.Cyrillic), + "Dash": reflect.ValueOf(&q.Dash), + "Deprecated": reflect.ValueOf(&q.Deprecated), + "Deseret": reflect.ValueOf(&q.Deseret), + "Devanagari": reflect.ValueOf(&q.Devanagari), + "Diacritic": reflect.ValueOf(&q.Diacritic), + "Digit": reflect.ValueOf(&q.Digit), + "Dives_Akuru": reflect.ValueOf(&q.Dives_Akuru), + "Dogra": reflect.ValueOf(&q.Dogra), + "Duployan": reflect.ValueOf(&q.Duployan), + "Egyptian_Hieroglyphs": reflect.ValueOf(&q.Egyptian_Hieroglyphs), + "Elbasan": reflect.ValueOf(&q.Elbasan), + "Elymaic": reflect.ValueOf(&q.Elymaic), + "Ethiopic": reflect.ValueOf(&q.Ethiopic), + "Extender": reflect.ValueOf(&q.Extender), + "FoldCategory": reflect.ValueOf(&q.FoldCategory), + "FoldScript": reflect.ValueOf(&q.FoldScript), + "Georgian": reflect.ValueOf(&q.Georgian), + "Glagolitic": reflect.ValueOf(&q.Glagolitic), + "Gothic": reflect.ValueOf(&q.Gothic), + "Grantha": reflect.ValueOf(&q.Grantha), + "GraphicRanges": reflect.ValueOf(&q.GraphicRanges), + "Greek": reflect.ValueOf(&q.Greek), + "Gujarati": reflect.ValueOf(&q.Gujarati), + "Gunjala_Gondi": reflect.ValueOf(&q.Gunjala_Gondi), + "Gurmukhi": reflect.ValueOf(&q.Gurmukhi), + "Han": reflect.ValueOf(&q.Han), + "Hangul": reflect.ValueOf(&q.Hangul), + "Hanifi_Rohingya": reflect.ValueOf(&q.Hanifi_Rohingya), + "Hanunoo": reflect.ValueOf(&q.Hanunoo), + "Hatran": reflect.ValueOf(&q.Hatran), + "Hebrew": reflect.ValueOf(&q.Hebrew), + "Hex_Digit": reflect.ValueOf(&q.Hex_Digit), + "Hiragana": reflect.ValueOf(&q.Hiragana), + "Hyphen": reflect.ValueOf(&q.Hyphen), + "IDS_Binary_Operator": reflect.ValueOf(&q.IDS_Binary_Operator), + "IDS_Trinary_Operator": reflect.ValueOf(&q.IDS_Trinary_Operator), + "Ideographic": reflect.ValueOf(&q.Ideographic), + "Imperial_Aramaic": reflect.ValueOf(&q.Imperial_Aramaic), + "Inherited": reflect.ValueOf(&q.Inherited), + "Inscriptional_Pahlavi": reflect.ValueOf(&q.Inscriptional_Pahlavi), + "Inscriptional_Parthian": reflect.ValueOf(&q.Inscriptional_Parthian), + "Javanese": reflect.ValueOf(&q.Javanese), + "Join_Control": reflect.ValueOf(&q.Join_Control), + "Kaithi": reflect.ValueOf(&q.Kaithi), + "Kannada": reflect.ValueOf(&q.Kannada), + "Katakana": reflect.ValueOf(&q.Katakana), + "Kawi": reflect.ValueOf(&q.Kawi), + "Kayah_Li": reflect.ValueOf(&q.Kayah_Li), + "Kharoshthi": reflect.ValueOf(&q.Kharoshthi), + "Khitan_Small_Script": reflect.ValueOf(&q.Khitan_Small_Script), + "Khmer": reflect.ValueOf(&q.Khmer), + "Khojki": reflect.ValueOf(&q.Khojki), + "Khudawadi": reflect.ValueOf(&q.Khudawadi), + "L": reflect.ValueOf(&q.L), + "Lao": reflect.ValueOf(&q.Lao), + "Latin": reflect.ValueOf(&q.Latin), + "Lepcha": reflect.ValueOf(&q.Lepcha), + "Letter": reflect.ValueOf(&q.Letter), + "Limbu": reflect.ValueOf(&q.Limbu), + "Linear_A": reflect.ValueOf(&q.Linear_A), + "Linear_B": reflect.ValueOf(&q.Linear_B), + "Lisu": reflect.ValueOf(&q.Lisu), + "Ll": reflect.ValueOf(&q.Ll), + "Lm": reflect.ValueOf(&q.Lm), + "Lo": reflect.ValueOf(&q.Lo), + "Logical_Order_Exception": reflect.ValueOf(&q.Logical_Order_Exception), + "Lower": reflect.ValueOf(&q.Lower), + "Lt": reflect.ValueOf(&q.Lt), + "Lu": reflect.ValueOf(&q.Lu), + "Lycian": reflect.ValueOf(&q.Lycian), + "Lydian": reflect.ValueOf(&q.Lydian), + "M": reflect.ValueOf(&q.M), + "Mahajani": reflect.ValueOf(&q.Mahajani), + "Makasar": reflect.ValueOf(&q.Makasar), + "Malayalam": reflect.ValueOf(&q.Malayalam), + "Mandaic": reflect.ValueOf(&q.Mandaic), + "Manichaean": reflect.ValueOf(&q.Manichaean), + "Marchen": reflect.ValueOf(&q.Marchen), + "Mark": reflect.ValueOf(&q.Mark), + "Masaram_Gondi": reflect.ValueOf(&q.Masaram_Gondi), + "Mc": reflect.ValueOf(&q.Mc), + "Me": reflect.ValueOf(&q.Me), + "Medefaidrin": reflect.ValueOf(&q.Medefaidrin), + "Meetei_Mayek": reflect.ValueOf(&q.Meetei_Mayek), + "Mende_Kikakui": reflect.ValueOf(&q.Mende_Kikakui), + "Meroitic_Cursive": reflect.ValueOf(&q.Meroitic_Cursive), + "Meroitic_Hieroglyphs": reflect.ValueOf(&q.Meroitic_Hieroglyphs), + "Miao": reflect.ValueOf(&q.Miao), + "Mn": reflect.ValueOf(&q.Mn), + "Modi": reflect.ValueOf(&q.Modi), + "Mongolian": reflect.ValueOf(&q.Mongolian), + "Mro": reflect.ValueOf(&q.Mro), + "Multani": reflect.ValueOf(&q.Multani), + "Myanmar": reflect.ValueOf(&q.Myanmar), + "N": reflect.ValueOf(&q.N), + "Nabataean": reflect.ValueOf(&q.Nabataean), + "Nag_Mundari": reflect.ValueOf(&q.Nag_Mundari), + "Nandinagari": reflect.ValueOf(&q.Nandinagari), + "Nd": reflect.ValueOf(&q.Nd), + "New_Tai_Lue": reflect.ValueOf(&q.New_Tai_Lue), + "Newa": reflect.ValueOf(&q.Newa), + "Nko": reflect.ValueOf(&q.Nko), + "Nl": reflect.ValueOf(&q.Nl), + "No": reflect.ValueOf(&q.No), + "Noncharacter_Code_Point": reflect.ValueOf(&q.Noncharacter_Code_Point), + "Number": reflect.ValueOf(&q.Number), + "Nushu": reflect.ValueOf(&q.Nushu), + "Nyiakeng_Puachue_Hmong": reflect.ValueOf(&q.Nyiakeng_Puachue_Hmong), + "Ogham": reflect.ValueOf(&q.Ogham), + "Ol_Chiki": reflect.ValueOf(&q.Ol_Chiki), + "Old_Hungarian": reflect.ValueOf(&q.Old_Hungarian), + "Old_Italic": reflect.ValueOf(&q.Old_Italic), + "Old_North_Arabian": reflect.ValueOf(&q.Old_North_Arabian), + "Old_Permic": reflect.ValueOf(&q.Old_Permic), + "Old_Persian": reflect.ValueOf(&q.Old_Persian), + "Old_Sogdian": reflect.ValueOf(&q.Old_Sogdian), + "Old_South_Arabian": reflect.ValueOf(&q.Old_South_Arabian), + "Old_Turkic": reflect.ValueOf(&q.Old_Turkic), + "Old_Uyghur": reflect.ValueOf(&q.Old_Uyghur), + "Oriya": reflect.ValueOf(&q.Oriya), + "Osage": reflect.ValueOf(&q.Osage), + "Osmanya": reflect.ValueOf(&q.Osmanya), + "Other": reflect.ValueOf(&q.Other), + "Other_Alphabetic": reflect.ValueOf(&q.Other_Alphabetic), + "Other_Default_Ignorable_Code_Point": reflect.ValueOf(&q.Other_Default_Ignorable_Code_Point), + "Other_Grapheme_Extend": reflect.ValueOf(&q.Other_Grapheme_Extend), + "Other_ID_Continue": reflect.ValueOf(&q.Other_ID_Continue), + "Other_ID_Start": reflect.ValueOf(&q.Other_ID_Start), + "Other_Lowercase": reflect.ValueOf(&q.Other_Lowercase), + "Other_Math": reflect.ValueOf(&q.Other_Math), + "Other_Uppercase": reflect.ValueOf(&q.Other_Uppercase), + "P": reflect.ValueOf(&q.P), + "Pahawh_Hmong": reflect.ValueOf(&q.Pahawh_Hmong), + "Palmyrene": reflect.ValueOf(&q.Palmyrene), + "Pattern_Syntax": reflect.ValueOf(&q.Pattern_Syntax), + "Pattern_White_Space": reflect.ValueOf(&q.Pattern_White_Space), + "Pau_Cin_Hau": reflect.ValueOf(&q.Pau_Cin_Hau), + "Pc": reflect.ValueOf(&q.Pc), + "Pd": reflect.ValueOf(&q.Pd), + "Pe": reflect.ValueOf(&q.Pe), + "Pf": reflect.ValueOf(&q.Pf), + "Phags_Pa": reflect.ValueOf(&q.Phags_Pa), + "Phoenician": reflect.ValueOf(&q.Phoenician), + "Pi": reflect.ValueOf(&q.Pi), + "Po": reflect.ValueOf(&q.Po), + "Prepended_Concatenation_Mark": reflect.ValueOf(&q.Prepended_Concatenation_Mark), + "PrintRanges": reflect.ValueOf(&q.PrintRanges), + "Properties": reflect.ValueOf(&q.Properties), + "Ps": reflect.ValueOf(&q.Ps), + "Psalter_Pahlavi": reflect.ValueOf(&q.Psalter_Pahlavi), + "Punct": reflect.ValueOf(&q.Punct), + "Quotation_Mark": reflect.ValueOf(&q.Quotation_Mark), + "Radical": reflect.ValueOf(&q.Radical), + "Regional_Indicator": reflect.ValueOf(&q.Regional_Indicator), + "Rejang": reflect.ValueOf(&q.Rejang), + "Runic": reflect.ValueOf(&q.Runic), + "S": reflect.ValueOf(&q.S), + "STerm": reflect.ValueOf(&q.STerm), + "Samaritan": reflect.ValueOf(&q.Samaritan), + "Saurashtra": reflect.ValueOf(&q.Saurashtra), + "Sc": reflect.ValueOf(&q.Sc), + "Scripts": reflect.ValueOf(&q.Scripts), + "Sentence_Terminal": reflect.ValueOf(&q.Sentence_Terminal), + "Sharada": reflect.ValueOf(&q.Sharada), + "Shavian": reflect.ValueOf(&q.Shavian), + "Siddham": reflect.ValueOf(&q.Siddham), + "SignWriting": reflect.ValueOf(&q.SignWriting), + "Sinhala": reflect.ValueOf(&q.Sinhala), + "Sk": reflect.ValueOf(&q.Sk), + "Sm": reflect.ValueOf(&q.Sm), + "So": reflect.ValueOf(&q.So), + "Soft_Dotted": reflect.ValueOf(&q.Soft_Dotted), + "Sogdian": reflect.ValueOf(&q.Sogdian), + "Sora_Sompeng": reflect.ValueOf(&q.Sora_Sompeng), + "Soyombo": reflect.ValueOf(&q.Soyombo), + "Space": reflect.ValueOf(&q.Space), + "Sundanese": reflect.ValueOf(&q.Sundanese), + "Syloti_Nagri": reflect.ValueOf(&q.Syloti_Nagri), + "Symbol": reflect.ValueOf(&q.Symbol), + "Syriac": reflect.ValueOf(&q.Syriac), + "Tagalog": reflect.ValueOf(&q.Tagalog), + "Tagbanwa": reflect.ValueOf(&q.Tagbanwa), + "Tai_Le": reflect.ValueOf(&q.Tai_Le), + "Tai_Tham": reflect.ValueOf(&q.Tai_Tham), + "Tai_Viet": reflect.ValueOf(&q.Tai_Viet), + "Takri": reflect.ValueOf(&q.Takri), + "Tamil": reflect.ValueOf(&q.Tamil), + "Tangsa": reflect.ValueOf(&q.Tangsa), + "Tangut": reflect.ValueOf(&q.Tangut), + "Telugu": reflect.ValueOf(&q.Telugu), + "Terminal_Punctuation": reflect.ValueOf(&q.Terminal_Punctuation), + "Thaana": reflect.ValueOf(&q.Thaana), + "Thai": reflect.ValueOf(&q.Thai), + "Tibetan": reflect.ValueOf(&q.Tibetan), + "Tifinagh": reflect.ValueOf(&q.Tifinagh), + "Tirhuta": reflect.ValueOf(&q.Tirhuta), + "Title": reflect.ValueOf(&q.Title), + "Toto": reflect.ValueOf(&q.Toto), + "TurkishCase": reflect.ValueOf(&q.TurkishCase), + "Ugaritic": reflect.ValueOf(&q.Ugaritic), + "Unified_Ideograph": reflect.ValueOf(&q.Unified_Ideograph), + "Upper": reflect.ValueOf(&q.Upper), + "Vai": reflect.ValueOf(&q.Vai), + "Variation_Selector": reflect.ValueOf(&q.Variation_Selector), + "Vithkuqi": reflect.ValueOf(&q.Vithkuqi), + "Wancho": reflect.ValueOf(&q.Wancho), + "Warang_Citi": reflect.ValueOf(&q.Warang_Citi), + "White_Space": reflect.ValueOf(&q.White_Space), + "Yezidi": reflect.ValueOf(&q.Yezidi), + "Yi": reflect.ValueOf(&q.Yi), + "Z": reflect.ValueOf(&q.Z), + "Zanabazar_Square": reflect.ValueOf(&q.Zanabazar_Square), + "Zl": reflect.ValueOf(&q.Zl), + "Zp": reflect.ValueOf(&q.Zp), + "Zs": reflect.ValueOf(&q.Zs), + }, + Funcs: map[string]reflect.Value{ + "In": reflect.ValueOf(q.In), + "Is": reflect.ValueOf(q.Is), + "IsControl": reflect.ValueOf(q.IsControl), + "IsDigit": reflect.ValueOf(q.IsDigit), + "IsGraphic": reflect.ValueOf(q.IsGraphic), + "IsLetter": reflect.ValueOf(q.IsLetter), + "IsLower": reflect.ValueOf(q.IsLower), + "IsMark": reflect.ValueOf(q.IsMark), + "IsNumber": reflect.ValueOf(q.IsNumber), + "IsOneOf": reflect.ValueOf(q.IsOneOf), + "IsPrint": reflect.ValueOf(q.IsPrint), + "IsPunct": reflect.ValueOf(q.IsPunct), + "IsSpace": reflect.ValueOf(q.IsSpace), + "IsSymbol": reflect.ValueOf(q.IsSymbol), + "IsTitle": reflect.ValueOf(q.IsTitle), + "IsUpper": reflect.ValueOf(q.IsUpper), + "SimpleFold": reflect.ValueOf(q.SimpleFold), + "To": reflect.ValueOf(q.To), + "ToLower": reflect.ValueOf(q.ToLower), + "ToTitle": reflect.ValueOf(q.ToTitle), + "ToUpper": reflect.ValueOf(q.ToUpper), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "LowerCase": {"untyped int", constant.MakeInt64(int64(q.LowerCase))}, + "MaxASCII": {"untyped rune", constant.MakeInt64(int64(q.MaxASCII))}, + "MaxCase": {"untyped int", constant.MakeInt64(int64(q.MaxCase))}, + "MaxLatin1": {"untyped rune", constant.MakeInt64(int64(q.MaxLatin1))}, + "MaxRune": {"untyped rune", constant.MakeInt64(int64(q.MaxRune))}, + "ReplacementChar": {"untyped rune", constant.MakeInt64(int64(q.ReplacementChar))}, + "TitleCase": {"untyped int", constant.MakeInt64(int64(q.TitleCase))}, + "UpperCase": {"untyped int", constant.MakeInt64(int64(q.UpperCase))}, + "UpperLower": {"untyped rune", constant.MakeInt64(int64(q.UpperLower))}, + "Version": {"untyped string", constant.MakeString(string(q.Version))}, + }, + }) +} diff --git a/pkg/unicode/go123_export.go b/pkg/unicode/go123_export.go new file mode 100755 index 00000000..bd27be80 --- /dev/null +++ b/pkg/unicode/go123_export.go @@ -0,0 +1,325 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package unicode + +import ( + q "unicode" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "unicode", + Path: "unicode", + Deps: map[string]string{}, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{ + "CaseRange": reflect.TypeOf((*q.CaseRange)(nil)).Elem(), + "Range16": reflect.TypeOf((*q.Range16)(nil)).Elem(), + "Range32": reflect.TypeOf((*q.Range32)(nil)).Elem(), + "RangeTable": reflect.TypeOf((*q.RangeTable)(nil)).Elem(), + "SpecialCase": reflect.TypeOf((*q.SpecialCase)(nil)).Elem(), + }, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{ + "ASCII_Hex_Digit": reflect.ValueOf(&q.ASCII_Hex_Digit), + "Adlam": reflect.ValueOf(&q.Adlam), + "Ahom": reflect.ValueOf(&q.Ahom), + "Anatolian_Hieroglyphs": reflect.ValueOf(&q.Anatolian_Hieroglyphs), + "Arabic": reflect.ValueOf(&q.Arabic), + "Armenian": reflect.ValueOf(&q.Armenian), + "Avestan": reflect.ValueOf(&q.Avestan), + "AzeriCase": reflect.ValueOf(&q.AzeriCase), + "Balinese": reflect.ValueOf(&q.Balinese), + "Bamum": reflect.ValueOf(&q.Bamum), + "Bassa_Vah": reflect.ValueOf(&q.Bassa_Vah), + "Batak": reflect.ValueOf(&q.Batak), + "Bengali": reflect.ValueOf(&q.Bengali), + "Bhaiksuki": reflect.ValueOf(&q.Bhaiksuki), + "Bidi_Control": reflect.ValueOf(&q.Bidi_Control), + "Bopomofo": reflect.ValueOf(&q.Bopomofo), + "Brahmi": reflect.ValueOf(&q.Brahmi), + "Braille": reflect.ValueOf(&q.Braille), + "Buginese": reflect.ValueOf(&q.Buginese), + "Buhid": reflect.ValueOf(&q.Buhid), + "C": reflect.ValueOf(&q.C), + "Canadian_Aboriginal": reflect.ValueOf(&q.Canadian_Aboriginal), + "Carian": reflect.ValueOf(&q.Carian), + "CaseRanges": reflect.ValueOf(&q.CaseRanges), + "Categories": reflect.ValueOf(&q.Categories), + "Caucasian_Albanian": reflect.ValueOf(&q.Caucasian_Albanian), + "Cc": reflect.ValueOf(&q.Cc), + "Cf": reflect.ValueOf(&q.Cf), + "Chakma": reflect.ValueOf(&q.Chakma), + "Cham": reflect.ValueOf(&q.Cham), + "Cherokee": reflect.ValueOf(&q.Cherokee), + "Chorasmian": reflect.ValueOf(&q.Chorasmian), + "Co": reflect.ValueOf(&q.Co), + "Common": reflect.ValueOf(&q.Common), + "Coptic": reflect.ValueOf(&q.Coptic), + "Cs": reflect.ValueOf(&q.Cs), + "Cuneiform": reflect.ValueOf(&q.Cuneiform), + "Cypriot": reflect.ValueOf(&q.Cypriot), + "Cypro_Minoan": reflect.ValueOf(&q.Cypro_Minoan), + "Cyrillic": reflect.ValueOf(&q.Cyrillic), + "Dash": reflect.ValueOf(&q.Dash), + "Deprecated": reflect.ValueOf(&q.Deprecated), + "Deseret": reflect.ValueOf(&q.Deseret), + "Devanagari": reflect.ValueOf(&q.Devanagari), + "Diacritic": reflect.ValueOf(&q.Diacritic), + "Digit": reflect.ValueOf(&q.Digit), + "Dives_Akuru": reflect.ValueOf(&q.Dives_Akuru), + "Dogra": reflect.ValueOf(&q.Dogra), + "Duployan": reflect.ValueOf(&q.Duployan), + "Egyptian_Hieroglyphs": reflect.ValueOf(&q.Egyptian_Hieroglyphs), + "Elbasan": reflect.ValueOf(&q.Elbasan), + "Elymaic": reflect.ValueOf(&q.Elymaic), + "Ethiopic": reflect.ValueOf(&q.Ethiopic), + "Extender": reflect.ValueOf(&q.Extender), + "FoldCategory": reflect.ValueOf(&q.FoldCategory), + "FoldScript": reflect.ValueOf(&q.FoldScript), + "Georgian": reflect.ValueOf(&q.Georgian), + "Glagolitic": reflect.ValueOf(&q.Glagolitic), + "Gothic": reflect.ValueOf(&q.Gothic), + "Grantha": reflect.ValueOf(&q.Grantha), + "GraphicRanges": reflect.ValueOf(&q.GraphicRanges), + "Greek": reflect.ValueOf(&q.Greek), + "Gujarati": reflect.ValueOf(&q.Gujarati), + "Gunjala_Gondi": reflect.ValueOf(&q.Gunjala_Gondi), + "Gurmukhi": reflect.ValueOf(&q.Gurmukhi), + "Han": reflect.ValueOf(&q.Han), + "Hangul": reflect.ValueOf(&q.Hangul), + "Hanifi_Rohingya": reflect.ValueOf(&q.Hanifi_Rohingya), + "Hanunoo": reflect.ValueOf(&q.Hanunoo), + "Hatran": reflect.ValueOf(&q.Hatran), + "Hebrew": reflect.ValueOf(&q.Hebrew), + "Hex_Digit": reflect.ValueOf(&q.Hex_Digit), + "Hiragana": reflect.ValueOf(&q.Hiragana), + "Hyphen": reflect.ValueOf(&q.Hyphen), + "IDS_Binary_Operator": reflect.ValueOf(&q.IDS_Binary_Operator), + "IDS_Trinary_Operator": reflect.ValueOf(&q.IDS_Trinary_Operator), + "Ideographic": reflect.ValueOf(&q.Ideographic), + "Imperial_Aramaic": reflect.ValueOf(&q.Imperial_Aramaic), + "Inherited": reflect.ValueOf(&q.Inherited), + "Inscriptional_Pahlavi": reflect.ValueOf(&q.Inscriptional_Pahlavi), + "Inscriptional_Parthian": reflect.ValueOf(&q.Inscriptional_Parthian), + "Javanese": reflect.ValueOf(&q.Javanese), + "Join_Control": reflect.ValueOf(&q.Join_Control), + "Kaithi": reflect.ValueOf(&q.Kaithi), + "Kannada": reflect.ValueOf(&q.Kannada), + "Katakana": reflect.ValueOf(&q.Katakana), + "Kawi": reflect.ValueOf(&q.Kawi), + "Kayah_Li": reflect.ValueOf(&q.Kayah_Li), + "Kharoshthi": reflect.ValueOf(&q.Kharoshthi), + "Khitan_Small_Script": reflect.ValueOf(&q.Khitan_Small_Script), + "Khmer": reflect.ValueOf(&q.Khmer), + "Khojki": reflect.ValueOf(&q.Khojki), + "Khudawadi": reflect.ValueOf(&q.Khudawadi), + "L": reflect.ValueOf(&q.L), + "Lao": reflect.ValueOf(&q.Lao), + "Latin": reflect.ValueOf(&q.Latin), + "Lepcha": reflect.ValueOf(&q.Lepcha), + "Letter": reflect.ValueOf(&q.Letter), + "Limbu": reflect.ValueOf(&q.Limbu), + "Linear_A": reflect.ValueOf(&q.Linear_A), + "Linear_B": reflect.ValueOf(&q.Linear_B), + "Lisu": reflect.ValueOf(&q.Lisu), + "Ll": reflect.ValueOf(&q.Ll), + "Lm": reflect.ValueOf(&q.Lm), + "Lo": reflect.ValueOf(&q.Lo), + "Logical_Order_Exception": reflect.ValueOf(&q.Logical_Order_Exception), + "Lower": reflect.ValueOf(&q.Lower), + "Lt": reflect.ValueOf(&q.Lt), + "Lu": reflect.ValueOf(&q.Lu), + "Lycian": reflect.ValueOf(&q.Lycian), + "Lydian": reflect.ValueOf(&q.Lydian), + "M": reflect.ValueOf(&q.M), + "Mahajani": reflect.ValueOf(&q.Mahajani), + "Makasar": reflect.ValueOf(&q.Makasar), + "Malayalam": reflect.ValueOf(&q.Malayalam), + "Mandaic": reflect.ValueOf(&q.Mandaic), + "Manichaean": reflect.ValueOf(&q.Manichaean), + "Marchen": reflect.ValueOf(&q.Marchen), + "Mark": reflect.ValueOf(&q.Mark), + "Masaram_Gondi": reflect.ValueOf(&q.Masaram_Gondi), + "Mc": reflect.ValueOf(&q.Mc), + "Me": reflect.ValueOf(&q.Me), + "Medefaidrin": reflect.ValueOf(&q.Medefaidrin), + "Meetei_Mayek": reflect.ValueOf(&q.Meetei_Mayek), + "Mende_Kikakui": reflect.ValueOf(&q.Mende_Kikakui), + "Meroitic_Cursive": reflect.ValueOf(&q.Meroitic_Cursive), + "Meroitic_Hieroglyphs": reflect.ValueOf(&q.Meroitic_Hieroglyphs), + "Miao": reflect.ValueOf(&q.Miao), + "Mn": reflect.ValueOf(&q.Mn), + "Modi": reflect.ValueOf(&q.Modi), + "Mongolian": reflect.ValueOf(&q.Mongolian), + "Mro": reflect.ValueOf(&q.Mro), + "Multani": reflect.ValueOf(&q.Multani), + "Myanmar": reflect.ValueOf(&q.Myanmar), + "N": reflect.ValueOf(&q.N), + "Nabataean": reflect.ValueOf(&q.Nabataean), + "Nag_Mundari": reflect.ValueOf(&q.Nag_Mundari), + "Nandinagari": reflect.ValueOf(&q.Nandinagari), + "Nd": reflect.ValueOf(&q.Nd), + "New_Tai_Lue": reflect.ValueOf(&q.New_Tai_Lue), + "Newa": reflect.ValueOf(&q.Newa), + "Nko": reflect.ValueOf(&q.Nko), + "Nl": reflect.ValueOf(&q.Nl), + "No": reflect.ValueOf(&q.No), + "Noncharacter_Code_Point": reflect.ValueOf(&q.Noncharacter_Code_Point), + "Number": reflect.ValueOf(&q.Number), + "Nushu": reflect.ValueOf(&q.Nushu), + "Nyiakeng_Puachue_Hmong": reflect.ValueOf(&q.Nyiakeng_Puachue_Hmong), + "Ogham": reflect.ValueOf(&q.Ogham), + "Ol_Chiki": reflect.ValueOf(&q.Ol_Chiki), + "Old_Hungarian": reflect.ValueOf(&q.Old_Hungarian), + "Old_Italic": reflect.ValueOf(&q.Old_Italic), + "Old_North_Arabian": reflect.ValueOf(&q.Old_North_Arabian), + "Old_Permic": reflect.ValueOf(&q.Old_Permic), + "Old_Persian": reflect.ValueOf(&q.Old_Persian), + "Old_Sogdian": reflect.ValueOf(&q.Old_Sogdian), + "Old_South_Arabian": reflect.ValueOf(&q.Old_South_Arabian), + "Old_Turkic": reflect.ValueOf(&q.Old_Turkic), + "Old_Uyghur": reflect.ValueOf(&q.Old_Uyghur), + "Oriya": reflect.ValueOf(&q.Oriya), + "Osage": reflect.ValueOf(&q.Osage), + "Osmanya": reflect.ValueOf(&q.Osmanya), + "Other": reflect.ValueOf(&q.Other), + "Other_Alphabetic": reflect.ValueOf(&q.Other_Alphabetic), + "Other_Default_Ignorable_Code_Point": reflect.ValueOf(&q.Other_Default_Ignorable_Code_Point), + "Other_Grapheme_Extend": reflect.ValueOf(&q.Other_Grapheme_Extend), + "Other_ID_Continue": reflect.ValueOf(&q.Other_ID_Continue), + "Other_ID_Start": reflect.ValueOf(&q.Other_ID_Start), + "Other_Lowercase": reflect.ValueOf(&q.Other_Lowercase), + "Other_Math": reflect.ValueOf(&q.Other_Math), + "Other_Uppercase": reflect.ValueOf(&q.Other_Uppercase), + "P": reflect.ValueOf(&q.P), + "Pahawh_Hmong": reflect.ValueOf(&q.Pahawh_Hmong), + "Palmyrene": reflect.ValueOf(&q.Palmyrene), + "Pattern_Syntax": reflect.ValueOf(&q.Pattern_Syntax), + "Pattern_White_Space": reflect.ValueOf(&q.Pattern_White_Space), + "Pau_Cin_Hau": reflect.ValueOf(&q.Pau_Cin_Hau), + "Pc": reflect.ValueOf(&q.Pc), + "Pd": reflect.ValueOf(&q.Pd), + "Pe": reflect.ValueOf(&q.Pe), + "Pf": reflect.ValueOf(&q.Pf), + "Phags_Pa": reflect.ValueOf(&q.Phags_Pa), + "Phoenician": reflect.ValueOf(&q.Phoenician), + "Pi": reflect.ValueOf(&q.Pi), + "Po": reflect.ValueOf(&q.Po), + "Prepended_Concatenation_Mark": reflect.ValueOf(&q.Prepended_Concatenation_Mark), + "PrintRanges": reflect.ValueOf(&q.PrintRanges), + "Properties": reflect.ValueOf(&q.Properties), + "Ps": reflect.ValueOf(&q.Ps), + "Psalter_Pahlavi": reflect.ValueOf(&q.Psalter_Pahlavi), + "Punct": reflect.ValueOf(&q.Punct), + "Quotation_Mark": reflect.ValueOf(&q.Quotation_Mark), + "Radical": reflect.ValueOf(&q.Radical), + "Regional_Indicator": reflect.ValueOf(&q.Regional_Indicator), + "Rejang": reflect.ValueOf(&q.Rejang), + "Runic": reflect.ValueOf(&q.Runic), + "S": reflect.ValueOf(&q.S), + "STerm": reflect.ValueOf(&q.STerm), + "Samaritan": reflect.ValueOf(&q.Samaritan), + "Saurashtra": reflect.ValueOf(&q.Saurashtra), + "Sc": reflect.ValueOf(&q.Sc), + "Scripts": reflect.ValueOf(&q.Scripts), + "Sentence_Terminal": reflect.ValueOf(&q.Sentence_Terminal), + "Sharada": reflect.ValueOf(&q.Sharada), + "Shavian": reflect.ValueOf(&q.Shavian), + "Siddham": reflect.ValueOf(&q.Siddham), + "SignWriting": reflect.ValueOf(&q.SignWriting), + "Sinhala": reflect.ValueOf(&q.Sinhala), + "Sk": reflect.ValueOf(&q.Sk), + "Sm": reflect.ValueOf(&q.Sm), + "So": reflect.ValueOf(&q.So), + "Soft_Dotted": reflect.ValueOf(&q.Soft_Dotted), + "Sogdian": reflect.ValueOf(&q.Sogdian), + "Sora_Sompeng": reflect.ValueOf(&q.Sora_Sompeng), + "Soyombo": reflect.ValueOf(&q.Soyombo), + "Space": reflect.ValueOf(&q.Space), + "Sundanese": reflect.ValueOf(&q.Sundanese), + "Syloti_Nagri": reflect.ValueOf(&q.Syloti_Nagri), + "Symbol": reflect.ValueOf(&q.Symbol), + "Syriac": reflect.ValueOf(&q.Syriac), + "Tagalog": reflect.ValueOf(&q.Tagalog), + "Tagbanwa": reflect.ValueOf(&q.Tagbanwa), + "Tai_Le": reflect.ValueOf(&q.Tai_Le), + "Tai_Tham": reflect.ValueOf(&q.Tai_Tham), + "Tai_Viet": reflect.ValueOf(&q.Tai_Viet), + "Takri": reflect.ValueOf(&q.Takri), + "Tamil": reflect.ValueOf(&q.Tamil), + "Tangsa": reflect.ValueOf(&q.Tangsa), + "Tangut": reflect.ValueOf(&q.Tangut), + "Telugu": reflect.ValueOf(&q.Telugu), + "Terminal_Punctuation": reflect.ValueOf(&q.Terminal_Punctuation), + "Thaana": reflect.ValueOf(&q.Thaana), + "Thai": reflect.ValueOf(&q.Thai), + "Tibetan": reflect.ValueOf(&q.Tibetan), + "Tifinagh": reflect.ValueOf(&q.Tifinagh), + "Tirhuta": reflect.ValueOf(&q.Tirhuta), + "Title": reflect.ValueOf(&q.Title), + "Toto": reflect.ValueOf(&q.Toto), + "TurkishCase": reflect.ValueOf(&q.TurkishCase), + "Ugaritic": reflect.ValueOf(&q.Ugaritic), + "Unified_Ideograph": reflect.ValueOf(&q.Unified_Ideograph), + "Upper": reflect.ValueOf(&q.Upper), + "Vai": reflect.ValueOf(&q.Vai), + "Variation_Selector": reflect.ValueOf(&q.Variation_Selector), + "Vithkuqi": reflect.ValueOf(&q.Vithkuqi), + "Wancho": reflect.ValueOf(&q.Wancho), + "Warang_Citi": reflect.ValueOf(&q.Warang_Citi), + "White_Space": reflect.ValueOf(&q.White_Space), + "Yezidi": reflect.ValueOf(&q.Yezidi), + "Yi": reflect.ValueOf(&q.Yi), + "Z": reflect.ValueOf(&q.Z), + "Zanabazar_Square": reflect.ValueOf(&q.Zanabazar_Square), + "Zl": reflect.ValueOf(&q.Zl), + "Zp": reflect.ValueOf(&q.Zp), + "Zs": reflect.ValueOf(&q.Zs), + }, + Funcs: map[string]reflect.Value{ + "In": reflect.ValueOf(q.In), + "Is": reflect.ValueOf(q.Is), + "IsControl": reflect.ValueOf(q.IsControl), + "IsDigit": reflect.ValueOf(q.IsDigit), + "IsGraphic": reflect.ValueOf(q.IsGraphic), + "IsLetter": reflect.ValueOf(q.IsLetter), + "IsLower": reflect.ValueOf(q.IsLower), + "IsMark": reflect.ValueOf(q.IsMark), + "IsNumber": reflect.ValueOf(q.IsNumber), + "IsOneOf": reflect.ValueOf(q.IsOneOf), + "IsPrint": reflect.ValueOf(q.IsPrint), + "IsPunct": reflect.ValueOf(q.IsPunct), + "IsSpace": reflect.ValueOf(q.IsSpace), + "IsSymbol": reflect.ValueOf(q.IsSymbol), + "IsTitle": reflect.ValueOf(q.IsTitle), + "IsUpper": reflect.ValueOf(q.IsUpper), + "SimpleFold": reflect.ValueOf(q.SimpleFold), + "To": reflect.ValueOf(q.To), + "ToLower": reflect.ValueOf(q.ToLower), + "ToTitle": reflect.ValueOf(q.ToTitle), + "ToUpper": reflect.ValueOf(q.ToUpper), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "LowerCase": {"untyped int", constant.MakeInt64(int64(q.LowerCase))}, + "MaxASCII": {"untyped rune", constant.MakeInt64(int64(q.MaxASCII))}, + "MaxCase": {"untyped int", constant.MakeInt64(int64(q.MaxCase))}, + "MaxLatin1": {"untyped rune", constant.MakeInt64(int64(q.MaxLatin1))}, + "MaxRune": {"untyped rune", constant.MakeInt64(int64(q.MaxRune))}, + "ReplacementChar": {"untyped rune", constant.MakeInt64(int64(q.ReplacementChar))}, + "TitleCase": {"untyped int", constant.MakeInt64(int64(q.TitleCase))}, + "UpperCase": {"untyped int", constant.MakeInt64(int64(q.UpperCase))}, + "UpperLower": {"untyped rune", constant.MakeInt64(int64(q.UpperLower))}, + "Version": {"untyped string", constant.MakeString(string(q.Version))}, + }, + }) +} diff --git a/pkg/unicode/utf16/go121_export.go b/pkg/unicode/utf16/go121_export.go index 7e5f40df..bcc37863 100755 --- a/pkg/unicode/utf16/go121_export.go +++ b/pkg/unicode/utf16/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package utf16 diff --git a/pkg/unicode/utf16/go122_export.go b/pkg/unicode/utf16/go122_export.go new file mode 100755 index 00000000..2960834a --- /dev/null +++ b/pkg/unicode/utf16/go122_export.go @@ -0,0 +1,36 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package utf16 + +import ( + q "unicode/utf16" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "utf16", + Path: "unicode/utf16", + Deps: map[string]string{}, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "AppendRune": reflect.ValueOf(q.AppendRune), + "Decode": reflect.ValueOf(q.Decode), + "DecodeRune": reflect.ValueOf(q.DecodeRune), + "Encode": reflect.ValueOf(q.Encode), + "EncodeRune": reflect.ValueOf(q.EncodeRune), + "IsSurrogate": reflect.ValueOf(q.IsSurrogate), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/unicode/utf16/go123_export.go b/pkg/unicode/utf16/go123_export.go new file mode 100755 index 00000000..1aec5464 --- /dev/null +++ b/pkg/unicode/utf16/go123_export.go @@ -0,0 +1,37 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package utf16 + +import ( + q "unicode/utf16" + + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "utf16", + Path: "unicode/utf16", + Deps: map[string]string{}, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "AppendRune": reflect.ValueOf(q.AppendRune), + "Decode": reflect.ValueOf(q.Decode), + "DecodeRune": reflect.ValueOf(q.DecodeRune), + "Encode": reflect.ValueOf(q.Encode), + "EncodeRune": reflect.ValueOf(q.EncodeRune), + "IsSurrogate": reflect.ValueOf(q.IsSurrogate), + "RuneLen": reflect.ValueOf(q.RuneLen), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{}, + }) +} diff --git a/pkg/unicode/utf8/go121_export.go b/pkg/unicode/utf8/go121_export.go index f390b87f..fc5d88e9 100755 --- a/pkg/unicode/utf8/go121_export.go +++ b/pkg/unicode/utf8/go121_export.go @@ -1,7 +1,7 @@ // export by github.com/goplus/igop/cmd/qexp -//go:build go1.21 -// +build go1.21 +//go:build go1.21 && !go1.22 +// +build go1.21,!go1.22 package utf8 diff --git a/pkg/unicode/utf8/go122_export.go b/pkg/unicode/utf8/go122_export.go new file mode 100755 index 00000000..7852011d --- /dev/null +++ b/pkg/unicode/utf8/go122_export.go @@ -0,0 +1,51 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.22 && !go1.23 +// +build go1.22,!go1.23 + +package utf8 + +import ( + q "unicode/utf8" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "utf8", + Path: "unicode/utf8", + Deps: map[string]string{}, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "AppendRune": reflect.ValueOf(q.AppendRune), + "DecodeLastRune": reflect.ValueOf(q.DecodeLastRune), + "DecodeLastRuneInString": reflect.ValueOf(q.DecodeLastRuneInString), + "DecodeRune": reflect.ValueOf(q.DecodeRune), + "DecodeRuneInString": reflect.ValueOf(q.DecodeRuneInString), + "EncodeRune": reflect.ValueOf(q.EncodeRune), + "FullRune": reflect.ValueOf(q.FullRune), + "FullRuneInString": reflect.ValueOf(q.FullRuneInString), + "RuneCount": reflect.ValueOf(q.RuneCount), + "RuneCountInString": reflect.ValueOf(q.RuneCountInString), + "RuneLen": reflect.ValueOf(q.RuneLen), + "RuneStart": reflect.ValueOf(q.RuneStart), + "Valid": reflect.ValueOf(q.Valid), + "ValidRune": reflect.ValueOf(q.ValidRune), + "ValidString": reflect.ValueOf(q.ValidString), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "MaxRune": {"untyped rune", constant.MakeInt64(int64(q.MaxRune))}, + "RuneError": {"untyped rune", constant.MakeInt64(int64(q.RuneError))}, + "RuneSelf": {"untyped int", constant.MakeInt64(int64(q.RuneSelf))}, + "UTFMax": {"untyped int", constant.MakeInt64(int64(q.UTFMax))}, + }, + }) +} diff --git a/pkg/unicode/utf8/go123_export.go b/pkg/unicode/utf8/go123_export.go new file mode 100755 index 00000000..f27fb3a1 --- /dev/null +++ b/pkg/unicode/utf8/go123_export.go @@ -0,0 +1,51 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package utf8 + +import ( + q "unicode/utf8" + + "go/constant" + "reflect" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "utf8", + Path: "unicode/utf8", + Deps: map[string]string{}, + Interfaces: map[string]reflect.Type{}, + NamedTypes: map[string]reflect.Type{}, + AliasTypes: map[string]reflect.Type{}, + Vars: map[string]reflect.Value{}, + Funcs: map[string]reflect.Value{ + "AppendRune": reflect.ValueOf(q.AppendRune), + "DecodeLastRune": reflect.ValueOf(q.DecodeLastRune), + "DecodeLastRuneInString": reflect.ValueOf(q.DecodeLastRuneInString), + "DecodeRune": reflect.ValueOf(q.DecodeRune), + "DecodeRuneInString": reflect.ValueOf(q.DecodeRuneInString), + "EncodeRune": reflect.ValueOf(q.EncodeRune), + "FullRune": reflect.ValueOf(q.FullRune), + "FullRuneInString": reflect.ValueOf(q.FullRuneInString), + "RuneCount": reflect.ValueOf(q.RuneCount), + "RuneCountInString": reflect.ValueOf(q.RuneCountInString), + "RuneLen": reflect.ValueOf(q.RuneLen), + "RuneStart": reflect.ValueOf(q.RuneStart), + "Valid": reflect.ValueOf(q.Valid), + "ValidRune": reflect.ValueOf(q.ValidRune), + "ValidString": reflect.ValueOf(q.ValidString), + }, + TypedConsts: map[string]igop.TypedConst{}, + UntypedConsts: map[string]igop.UntypedConst{ + "MaxRune": {"untyped rune", constant.MakeInt64(int64(q.MaxRune))}, + "RuneError": {"untyped rune", constant.MakeInt64(int64(q.RuneError))}, + "RuneSelf": {"untyped int", constant.MakeInt64(int64(q.RuneSelf))}, + "UTFMax": {"untyped int", constant.MakeInt64(int64(q.UTFMax))}, + }, + }) +} diff --git a/pkg/unique/go123_export.go b/pkg/unique/go123_export.go new file mode 100755 index 00000000..72f8e290 --- /dev/null +++ b/pkg/unique/go123_export.go @@ -0,0 +1,28 @@ +// export by github.com/goplus/igop/cmd/qexp + +//go:build go1.23 +// +build go1.23 + +package unique + +import ( + _ "unique" + + "github.com/goplus/igop" +) + +func init() { + igop.RegisterPackage(&igop.Package{ + Name: "unique", + Path: "unique", + Deps: map[string]string{ + "internal/abi": "abi", + "internal/concurrent": "concurrent", + "internal/stringslite": "stringslite", + "internal/weak": "weak", + "runtime": "runtime", + "sync": "sync", + "unsafe": "unsafe", + }, + }) +} diff --git a/race/doc.go b/race/doc.go new file mode 100644 index 00000000..8fa44ce6 --- /dev/null +++ b/race/doc.go @@ -0,0 +1,11 @@ +// Copyright 2015 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +Package race contains helper functions for manually instrumenting code for the race detector. + +The runtime package intentionally exports these functions only in the race build; +this package exports them unconditionally but without the "race" build tag they are no-ops. +*/ +package race diff --git a/race/norace.go b/race/norace.go new file mode 100644 index 00000000..67b13057 --- /dev/null +++ b/race/norace.go @@ -0,0 +1,43 @@ +// Copyright 2015 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +//go:build !race +// +build !race + +package race + +import ( + "unsafe" +) + +const Enabled = false + +func Acquire(addr unsafe.Pointer) { +} + +func Release(addr unsafe.Pointer) { +} + +func ReleaseMerge(addr unsafe.Pointer) { +} + +func Disable() { +} + +func Enable() { +} + +func Read(addr unsafe.Pointer) { +} + +func Write(addr unsafe.Pointer) { +} + +func ReadRange(addr unsafe.Pointer, len int) { +} + +func WriteRange(addr unsafe.Pointer, len int) { +} + +func Errors() int { return 0 } diff --git a/race/race.go b/race/race.go new file mode 100644 index 00000000..40f2c993 --- /dev/null +++ b/race/race.go @@ -0,0 +1,55 @@ +// Copyright 2015 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +//go:build race +// +build race + +package race + +import ( + "runtime" + "unsafe" +) + +const Enabled = true + +func Acquire(addr unsafe.Pointer) { + runtime.RaceAcquire(addr) +} + +func Release(addr unsafe.Pointer) { + runtime.RaceRelease(addr) +} + +func ReleaseMerge(addr unsafe.Pointer) { + runtime.RaceReleaseMerge(addr) +} + +func Disable() { + runtime.RaceDisable() +} + +func Enable() { + runtime.RaceEnable() +} + +func Read(addr unsafe.Pointer) { + runtime.RaceRead(addr) +} + +func Write(addr unsafe.Pointer) { + runtime.RaceWrite(addr) +} + +func ReadRange(addr unsafe.Pointer, len int) { + runtime.RaceReadRange(addr, len) +} + +func WriteRange(addr unsafe.Pointer, len int) { + runtime.RaceWriteRange(addr, len) +} + +func Errors() int { + return runtime.RaceErrors() +} diff --git a/repl.go b/repl.go index 2b08909d..dd13b925 100644 --- a/repl.go +++ b/repl.go @@ -228,8 +228,7 @@ func (r *Repl) eval(tok token.Token, expr string) (err error) { if !ok { return e } - if strings.HasSuffix(e.Msg, errDeclaredNotUsed) { - v := e.Msg[0 : len(e.Msg)-len(errDeclaredNotUsed)-1] + if v, ok := isTypesDeclaredNotUsed(e.Msg); ok { fixed = append(fixed, "__igop_repl_used__(&"+v+")") // fixed = append(fixed, "__igop_repl_eval__("+v+")") } else if strings.HasSuffix(e.Msg, errIsNotUsed) { diff --git a/rtypes.go b/rtypes.go index 9ae27d96..14e259c5 100644 --- a/rtypes.go +++ b/rtypes.go @@ -22,6 +22,7 @@ import ( "go/importer" "go/token" "go/types" + "log" "reflect" "runtime" "strings" @@ -176,6 +177,7 @@ func (r *TypesLoader) Import(path string) (*types.Package, error) { } } if err := tp.Load(); err != nil { + log.Printf("igop warning: load pkg %v source error: %v\n", pkg.Path, err) return nil, err } tp.Register = true diff --git a/runtime.go b/runtime.go index 093b8196..4ceff857 100644 --- a/runtime.go +++ b/runtime.go @@ -205,22 +205,6 @@ func runtimeFunc(pfn *function) *runtime.Func { return (*runtime.Func)(unsafe.Pointer(f)) } -/* - type Frames struct { - // callers is a slice of PCs that have not yet been expanded to frames. - callers []uintptr - - // frames is a slice of Frames that have yet to be returned. - frames []Frame - frameStore [2]Frame - } -*/ -type runtimeFrames struct { - callers []uintptr - frames []runtime.Frame - frameStore [2]runtime.Frame -} - func runtimeFramesNext(fr *frame, frames *runtime.Frames) (frame runtime.Frame, more bool) { ci := (*runtimeFrames)(unsafe.Pointer(frames)) for len(ci.frames) < 2 { diff --git a/runtime_frame.go b/runtime_frame.go new file mode 100644 index 00000000..721fb2a4 --- /dev/null +++ b/runtime_frame.go @@ -0,0 +1,39 @@ +//go:build !go1.23 +// +build !go1.23 + +/* + * Copyright (c) 2025 The GoPlus Authors (goplus.org). All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package igop + +import "runtime" + +/* + type Frames struct { + // callers is a slice of PCs that have not yet been expanded to frames. + callers []uintptr + + // frames is a slice of Frames that have yet to be returned. + frames []Frame + frameStore [2]Frame + } +*/ + +type runtimeFrames struct { + callers []uintptr + frames []runtime.Frame + frameStore [2]runtime.Frame +} diff --git a/runtime_frame_go123.go b/runtime_frame_go123.go new file mode 100644 index 00000000..64ff74ce --- /dev/null +++ b/runtime_frame_go123.go @@ -0,0 +1,43 @@ +//go:build go1.23 +// +build go1.23 + +/* + * Copyright (c) 2025 The GoPlus Authors (goplus.org). All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package igop + +import "runtime" + +/* + type Frames struct { + // callers is a slice of PCs that have not yet been expanded to frames. + callers []uintptr + + // nextPC is a next PC to expand ahead of processing callers. + nextPC uintptr + + // frames is a slice of Frames that have yet to be returned. + frames []Frame + frameStore [2]Frame + } +*/ + +type runtimeFrames struct { + callers []uintptr + nextPC uintptr + frames []runtime.Frame + frameStore [2]runtime.Frame +} diff --git a/unop_x.go b/unop_x.go index 1214a296..ab2eed35 100644 --- a/unop_x.go +++ b/unop_x.go @@ -60,7 +60,7 @@ func makeUnOpMUL(pfn *function, instr *ssa.UnOp) func(fr *frame) { return func(fr *frame) { elem := v.Elem() if !elem.IsValid() { - panic(runtimeError("invalid memory address or nil pointer dereference")) + panic(fr.runtimeError(instr, "invalid memory address or nil pointer dereference")) } fr.setReg(ir, elem.Interface()) } @@ -68,7 +68,7 @@ func makeUnOpMUL(pfn *function, instr *ssa.UnOp) func(fr *frame) { return func(fr *frame) { elem := reflect.ValueOf(fr.reg(ix)).Elem() if !elem.IsValid() { - panic(runtimeError("invalid memory address or nil pointer dereference")) + panic(fr.runtimeError(instr, "invalid memory address or nil pointer dereference")) } fr.setReg(ir, elem.Interface()) } diff --git a/xtypes.go b/xtypes.go index e7b0e7b3..a7468cba 100644 --- a/xtypes.go +++ b/xtypes.go @@ -25,6 +25,7 @@ import ( "strconv" "unsafe" + "github.com/goplus/igop/internal/typesutil" "github.com/goplus/reflectx" "golang.org/x/tools/go/ssa" "golang.org/x/tools/go/types/typeutil" @@ -132,8 +133,10 @@ func toMockType(typ types.Type) reflect.Type { outs[i] = tyEmptyStruct } return reflect.FuncOf(ins, outs, variadic) + case *typesutil.Alias: + return toMockType(typesutil.Unalias(t)) default: - panic(fmt.Errorf("toEmptyType: unreachable %v", typ)) + panic(fmt.Errorf("toEmptyType: unreachable %T", typ)) } } @@ -279,8 +282,10 @@ func (r *TypesRecord) ToType(typ types.Type) (reflect.Type, bool) { case *types.Tuple: _, nested = r.ToTypeList(t) rt = reflect.TypeOf((*_tuple)(nil)).Elem() + case *typesutil.Alias: + return r.ToType(typesutil.Unalias(t)) default: - panic(fmt.Errorf("ToType: not handled %v", typ)) + panic(fmt.Errorf("ToType: not handled %T", typ)) } r.saveType(typ, rt, nested) return rt, nested